libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
path.cxx
1// C
2#include <stdlib.h>
3#include <limits.h>
4
5// C++
6#include <filesystem>
7
8// cosmos
9#include <cosmos/error/FileError.hxx>
10#include <cosmos/fs/filesystem.hxx>
11#include <cosmos/limits.hxx>
12#include <cosmos/fs/path.hxx>
13#include <cosmos/string.hxx>
14
15namespace cosmos::fs {
16
17std::string normalize_path(const std::string_view path) {
18 std::string ret;
19
20 size_t slashes = 0;
21 size_t start = 0;
22 auto end = path.find('/');
23
24 while (start < path.size()) {
25 const auto component = path.substr(start, end - start);
26
27 if (component.size() > 0) {
28
29 // path starts without a leading /, so it's a relative
30 // path, add the CWD
31 if (!slashes && ret.empty()) {
32 ret.append(get_working_dir());
33 }
34
35 // remove the last component
36 if (component == "..") {
37 // don't remove the root directory
38 if (ret.size() > 1) {
39 ret.erase(ret.rfind('/'));
40 }
41 slashes++;
42 // references to the CWD are simply ignored
43 } else if (component == ".") {
44 slashes++;
45 } else {
46 // add exactly this component
47 ret.push_back('/');
48 ret.append(component);
49 }
50 } else {
51 slashes++;
52 }
53
54 start = end != path.npos ? end + 1 : end;
55 end = path.find('/', start);
56 }
57
58 if (slashes && ret.empty())
59 ret.push_back('/');
60
61 return ret;
62}
63
64std::string canonicalize_path(const SysString path) {
65 // implementing this on foot is non-trivial so rely on realpath() for
66 // the time being.
67 std::string ret;
68 ret.resize(max::PATH);
69 if (::realpath(path.raw(), ret.data()) == nullptr) {
70 cosmos_throw (FileError(path, "realpath()"));
71 }
72
73 ret.resize(std::strlen(ret.data()));
74 return ret;
75}
76
77} // end ns