Mercurial > minori
annotate src/core/filesystem.cpp @ 63:3d2decf093bb
*: fix many clang warnings
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Sun, 01 Oct 2023 06:39:47 -0400 |
| parents | 4c6dd5999b39 |
| children | fe719c109dbc |
| rev | line source |
|---|---|
| 9 | 1 #ifdef WIN32 |
| 15 | 2 # include <shlobj.h> |
| 5 | 3 #elif defined(MACOSX) |
| 15 | 4 # include "sys/osx/filesystem.h" |
| 7 | 5 #elif defined(__linux__) |
| 15 | 6 # include <pwd.h> |
| 7 # include <sys/types.h> | |
| 2 | 8 #endif |
| 11 | 9 |
| 10 #ifdef WIN32 | |
| 15 | 11 # define DELIM "\\" |
| 11 | 12 #else |
| 15 | 13 # define DELIM "/" |
| 14 # include <errno.h> | |
| 15 # include <unistd.h> | |
|
18
28d8f4c0ae12
*nix: add missing header file for stat
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
16 # include <sys/stat.h> |
| 11 | 17 #endif |
| 18 | |
| 36 | 19 #include "core/filesystem.h" |
| 15 | 20 #include "core/config.h" |
| 62 | 21 #include "core/strings.h" |
| 2 | 22 #include <limits.h> |
| 23 | |
| 11 | 24 namespace Filesystem { |
| 25 | |
| 63 | 26 Path::Path() { |
| 27 _path = ""; | |
| 28 } | |
| 29 Path::Path(const std::string& path) { | |
| 30 _path = path; | |
| 31 } | |
| 32 Path::Path(const Path& path) { | |
| 33 _path = path.GetPath(); | |
| 34 } | |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
35 |
|
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
36 bool Path::CreateDirectories() const { |
| 11 | 37 std::string temp = ""; |
| 38 size_t start; | |
| 39 size_t end = 0; | |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
40 temp.append(_path.substr(0, _path.find_first_not_of(DELIM, end))); |
| 11 | 41 |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
42 while ((start = _path.find_first_not_of(DELIM, end)) != std::string::npos) { |
|
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
43 end = _path.find(DELIM, start); |
|
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
44 temp.append(_path.substr(start, end - start)); |
| 11 | 45 #ifdef WIN32 |
| 62 | 46 if (!CreateDirectoryW(Strings::ToWstring(temp).c_str(), NULL) && GetLastError() == ERROR_PATH_NOT_FOUND) |
| 11 | 47 /* ERROR_PATH_NOT_FOUND should NOT happen here */ |
| 48 return false; | |
| 49 #else | |
|
44
619cbd6e69f9
filesystem: fix CreateDirectories function
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
50 struct stat st; |
|
619cbd6e69f9
filesystem: fix CreateDirectories function
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
51 if (stat(temp.c_str(), &st) == -1) |
|
619cbd6e69f9
filesystem: fix CreateDirectories function
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
52 mkdir(temp.c_str(), 0755); |
| 11 | 53 #endif |
| 54 temp.append(DELIM); | |
| 55 } | |
| 56 return true; | |
| 57 } | |
| 58 | |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
59 bool Path::Exists() const { |
| 11 | 60 #if WIN32 |
| 62 | 61 std::wstring buf = Strings::ToWstring(_path); |
| 62 return GetFileAttributesW(buf.c_str()) != INVALID_FILE_ATTRIBUTES; | |
| 11 | 63 #else |
| 64 struct stat st; | |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
65 return stat(_path.c_str(), &st) == 0; |
| 11 | 66 #endif |
| 67 } | |
| 68 | |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
69 std::string Path::Basename() const { |
|
61
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
70 return _path.substr(0, _path.find_last_of(DELIM)); |
|
59
327e9a5c72f1
filesystem: add basename and stem functions
Paper <mrpapersonic@gmail.com>
parents:
45
diff
changeset
|
71 } |
|
327e9a5c72f1
filesystem: add basename and stem functions
Paper <mrpapersonic@gmail.com>
parents:
45
diff
changeset
|
72 |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
73 std::string Path::Stem() const { |
|
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
74 std::string basename = Basename(); |
|
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
75 return basename.substr(0, basename.find_last_of(".")); |
|
59
327e9a5c72f1
filesystem: add basename and stem functions
Paper <mrpapersonic@gmail.com>
parents:
45
diff
changeset
|
76 } |
|
327e9a5c72f1
filesystem: add basename and stem functions
Paper <mrpapersonic@gmail.com>
parents:
45
diff
changeset
|
77 |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
78 std::string Path::Extension() const { |
|
61
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
79 std::string basename = Basename(); |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
80 return basename.substr(basename.find_last_of("."), basename.length()); |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
81 } |
|
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
82 |
|
61
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
83 Path Path::GetParent() const { |
|
60
d417e9381ca5
filesystem: WIP class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
59
diff
changeset
|
84 return _path.substr(0, _path.find_last_of(DELIM)); |
| 11 | 85 } |
| 86 | |
|
61
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
87 void Path::SetPath(const std::string& path) { |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
88 _path = path; |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
89 } |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
90 |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
91 std::string Path::GetPath() const { |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
92 return _path; |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
93 } |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
94 |
|
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
95 Path GetDotPath(void) { |
| 11 | 96 std::string ret = ""; |
| 9 | 97 #ifdef WIN32 |
| 62 | 98 std::wstring buf(MAX_PATH, '\0'); |
| 63 | 99 if (SHGetFolderPathAndSubDirW(NULL, CSIDL_APPDATA | CSIDL_FLAG_CREATE, NULL, 0, CONFIG_WDIR, &buf.front()) == |
| 100 S_OK) { | |
| 62 | 101 buf.resize(buf.find('\0')); |
| 102 ret += Strings::ToUtf8String(buf); | |
| 11 | 103 } |
| 2 | 104 #elif defined(MACOSX) |
| 11 | 105 ret += osx::GetApplicationSupportDirectory(); |
|
45
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
106 ret += DELIM CONFIG_DIR; |
| 2 | 107 #else // just assume POSIX |
| 7 | 108 if (getenv("HOME") != NULL) |
| 11 | 109 ret += getenv("HOME"); |
| 15 | 110 # ifdef __linux__ |
| 7 | 111 else |
| 11 | 112 ret += getpwuid(getuid())->pw_dir; |
| 15 | 113 # endif // __linux__ |
| 11 | 114 if (!ret.empty()) |
|
45
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
115 ret += DELIM ".config" DELIM CONFIG_DIR; |
| 15 | 116 #endif // !WIN32 && !MACOSX |
| 11 | 117 return ret; |
| 2 | 118 } |
| 11 | 119 |
|
61
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
120 Path GetConfigPath(void) { |
|
45
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
121 std::string ret = ""; |
|
61
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
122 ret += GetDotPath().GetPath(); |
|
45
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
123 if (!ret.empty()) |
|
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
124 ret += DELIM CONFIG_NAME; |
|
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
125 return ret; |
|
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
126 } |
|
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
127 |
|
61
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
128 Path GetAnimeDBPath(void) { |
|
45
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
129 std::string ret = ""; |
|
61
327568ad9be9
core/fs: finish class-ification of paths
Paper <mrpapersonic@gmail.com>
parents:
60
diff
changeset
|
130 ret += GetDotPath().GetPath(); |
|
45
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
131 if (!ret.empty()) |
|
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
132 ret += DELIM "anime" DELIM "db.json"; |
|
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
133 return ret; |
|
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
134 } |
|
4b05bc7668eb
filesystem: split config path into dotpath and config, add anime db path
Paper <mrpapersonic@gmail.com>
parents:
44
diff
changeset
|
135 |
| 15 | 136 } // namespace Filesystem |
