-
Notifications
You must be signed in to change notification settings - Fork 0
/
File.cpp
97 lines (84 loc) · 2.45 KB
/
File.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#include <algorithm>
#include <filesystem>
#include <iostream>
#include "File.h"
namespace fs
{
File::File(const User* user, const std::string& name, const std::string& parentPath)
{
setParentPath(parentPath);
setType(SystemObjectType::file);
setName(name);
setOwner(user->getUsername());
}
File::File(std::istringstream& ifs)
{
ifs >> *this;
}
const std::string& File::getContent() const
{
return m_content;
}
void File::setContent(const std::string& content)
{
m_content = content;
}
void File::writeToFile(const std::string& content) const
{
std::string parentPath = getParentPath().empty() ? "" : getParentPath() + '/';
adaptParentPath(parentPath);
const std::filesystem::path path{
"./fs/home/" + getOwner() + '/' + parentPath + getName()
};
std::fstream(path, std::ios::out | std::ios::trunc) << content << '\n';
}
void File::appendToFile(const std::string& content) const
{
std::string parentPath = getParentPath().empty() ? "" : getParentPath() + '/';
adaptParentPath(parentPath);
const std::filesystem::path path{
"./fs/home/" + getOwner() + '/' + parentPath + getName()
};
std::fstream(path, std::ios::out | std::ios::app) << content << '\n';
}
void File::printFile() const
{
std::string parentPath = getParentPath().empty() ? "" : getParentPath() + '/';
adaptParentPath(parentPath);
const std::filesystem::path path{
"./fs/home/" + getOwner() + '/' + parentPath + getName()
};
std::ifstream file{ path };
std::string line;
while (getline(file, line))
{
std::cout << line << '\n';
}
}
void File::cascadeDelete()
{
std::string parentPath = getParentPath().empty() ? "" : getParentPath() + '/';
adaptParentPath(parentPath);
const std::filesystem::path path{
"./fs/home/" + getOwner() + '/' + parentPath + getName()
};
std::filesystem::remove(path);
}
size_t File::getSize() const
{
std::string parentPath = getParentPath().empty() ? "" : getParentPath() + '/';
adaptParentPath(parentPath);
const std::filesystem::path path{
"./fs/home/" + getOwner() + '/' + parentPath + getName()
};
return std::filesystem::file_size(path);
}
std::string& File::adaptParentPath(std::string& parentPath)
{
replace_if(parentPath.begin(), parentPath.end(), [](const char c)
{
return c == '/';
}, '_');
return parentPath;
}
} // namespace fs