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>
17std::string normalize_path(
const std::string_view path) {
22 auto end = path.find(
'/');
24 while (start < path.size()) {
25 const auto component = path.substr(start, end - start);
27 if (component.size() > 0) {
31 if (!slashes && ret.empty()) {
32 ret.append(get_working_dir());
36 if (component ==
"..") {
39 ret.erase(ret.rfind(
'/'));
43 }
else if (component ==
".") {
48 ret.append(component);
54 start = end != path.npos ? end + 1 : end;
55 end = path.find(
'/', start);
58 if (slashes && ret.empty())
64std::string canonicalize_path(
const SysString path) {
68 ret.resize(max::PATH);
69 if (::realpath(path.raw(), ret.data()) ==
nullptr) {
70 cosmos_throw (FileError(path,
"realpath()"));
73 ret.resize(std::strlen(ret.data()));