This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Path.cpp
144 lines (116 loc) · 3.83 KB
/
Path.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
This file is part of duckOS.
duckOS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
duckOS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with duckOS. If not, see <https://www.gnu.org/licenses/>.
Copyright (c) Byteduck 2016-2021. All rights reserved.
*/
#include "Path.h"
#include "DirectoryEntry.h"
#include "Log.h"
using namespace Duck;
Path::Path(std::string string) : m_is_absolute(string[0] == '/') {
//If the string is empty, then use "." as the path.
if(string.empty())
string = ".";
//Split the string into parts
std::vector<std::string> temp_parts;
std::size_t end;
do {
end = string.find('/');
auto part = string.substr(0, end);
if(end != std::string::npos)
string.erase(0, end + 1);
if(part.empty() || part == ".") {
//If the part is . or empty, (AKA current directory), don't add it
continue;
} else if(part == "..") {
if(!temp_parts.empty() && temp_parts.back() != "..") {
//If the part is .. (AKA previous directory) and we have a previous part, remove the last part
temp_parts.pop_back();
continue;
} else if(temp_parts.empty() && m_is_absolute) {
//Or, if we're at the root directory, do nothing
continue;
}
}
temp_parts.push_back(part);
} while(end != std::string::npos);
//If we have no parts, then we should just use "."
if(temp_parts.empty() && !m_is_absolute)
temp_parts.push_back(".");
//Then, build a path out of the parts
if(m_is_absolute)
m_path = "/";
for(auto& part: temp_parts)
m_path += part + (&part != &temp_parts.back() ? "/" : "");
rebuild_parts();
}
Path::operator std::string() const {
return m_path;
}
ResultRet<std::vector<DirectoryEntry>> Path::get_directory_entries() const {
auto* dir = opendir(m_path.c_str());
if(!dir)
return Result(errno);
std::vector<DirectoryEntry> entries;
struct dirent* entry;
while((entry = readdir(dir)) != NULL) {
if(std::string(entry->d_name) != "." && std::string(entry->d_name) != "..")
entries.emplace_back(*this, entry);
}
closedir(dir);
return std::move(entries);
}
void Path::rebuild_parts() {
m_parts.clear();
//Then, create parts out of that path
std::string_view path_view(m_path);
std::size_t end;
do {
end = path_view.find('/');
auto part = path_view.substr(0, end);
if(end != std::string_view::npos)
path_view = path_view.substr(end + 1);
if(part.empty())
continue;
m_parts.push_back(std::string(part));
} while(end != std::string_view::npos);
if(m_parts.empty())
m_parts.push_back(m_path);
//Then, figure out the extension and filename of the path
auto base = basename();
auto extension_idx = base.find_last_of(".");
if(extension_idx != 0 && extension_idx != base.size() - 1 && extension_idx != std::string_view::npos) {
//If the last dot is at the beginning of the filename, that just means it's an extension-less dotfile
//If the last dot is at the end of the filename, it has no extension.
m_extension = base.substr(extension_idx + 1);
m_filename = base.substr(0, extension_idx);
} else {
m_filename = base;
}
}
ResultRet<struct stat> Path::stat() {
struct stat ret;
if(!::stat(m_path.c_str(), &ret))
return ret;
return Result(errno);
}
bool Path::exists() {
return !stat().is_error();
}
bool Path::is_regular_file() {
auto stat_res = stat();
return !stat_res.is_error() && S_ISREG(stat_res.value().st_mode);
}
bool Path::is_dir() {
auto stat_res = stat();
return !stat_res.is_error() && S_ISDIR(stat_res.value().st_mode);
}