blob: 73e00aed061a07b7a81a3422adb076f74e2afde2 [file] [log] [blame]
Songchun Fan3c82a302019-11-29 14:23:45 -08001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "path.h"
18
19#include <android-base/strings.h>
20#include <android-base/logging.h>
21
22#include <algorithm>
23#include <iterator>
24#include <limits>
25#include <memory>
26
27#include <dirent.h>
28#include <stdlib.h>
29#include <sys/types.h>
30#include <unistd.h>
31
32using namespace std::literals;
33
34namespace android::incremental::path {
35
36bool PathCharsLess::operator()(char l, char r) const {
37 int ll = l == '/' ? std::numeric_limits<char>::min() - 1 : l;
38 int rr = r == '/' ? std::numeric_limits<char>::min() - 1 : r;
39 return ll < rr;
40}
41
42bool PathLess::operator()(std::string_view l, std::string_view r) const {
43 return std::lexicographical_compare(std::begin(l), std::end(l), std::begin(r), std::end(r),
44 PathCharsLess());
45}
46
Yurii Zubrytskyife807fd2021-03-23 12:11:11 -070047static void preparePathComponent(std::string_view& path, bool trimAll) {
48 // need to check for double front slash as a single one has a separate meaning in front
49 while (!path.empty() && path.front() == '/' &&
50 (trimAll || (path.size() > 1 && path[1] == '/'))) {
51 path.remove_prefix(1);
Yurii Zubrytskyi4a25dfb2020-01-10 11:53:24 -080052 }
Yurii Zubrytskyife807fd2021-03-23 12:11:11 -070053 // for the back we don't care about double-vs-single slash difference
54 while (path.size() > !trimAll && path.back() == '/') {
Yurii Zubrytskyi4a25dfb2020-01-10 11:53:24 -080055 path.remove_suffix(1);
56 }
57}
58
Songchun Fan3c82a302019-11-29 14:23:45 -080059void details::append_next_path(std::string& target, std::string_view path) {
Yurii Zubrytskyife807fd2021-03-23 12:11:11 -070060 preparePathComponent(path, !target.empty());
Songchun Fan3c82a302019-11-29 14:23:45 -080061 if (path.empty()) {
62 return;
63 }
Yurii Zubrytskyi4a25dfb2020-01-10 11:53:24 -080064 if (!target.empty() && !target.ends_with('/')) {
Songchun Fan3c82a302019-11-29 14:23:45 -080065 target.push_back('/');
66 }
67 target += path;
68}
69
Yurii Zubrytskyi4a25dfb2020-01-10 11:53:24 -080070std::string_view relativize(std::string_view parent, std::string_view nested) {
71 if (!nested.starts_with(parent)) {
72 return nested;
73 }
74 if (nested.size() == parent.size()) {
75 return {};
76 }
77 if (nested[parent.size()] != '/') {
78 return nested;
79 }
80 auto relative = nested.substr(parent.size());
81 while (relative.front() == '/') {
82 relative.remove_prefix(1);
83 }
84 return relative;
85}
86
Songchun Fan3c82a302019-11-29 14:23:45 -080087bool isAbsolute(std::string_view path) {
88 return !path.empty() && path[0] == '/';
89}
90
91std::string normalize(std::string_view path) {
92 if (path.empty()) {
93 return {};
94 }
95 if (path.starts_with("../"sv)) {
96 return {};
97 }
98
99 std::string result;
100 if (isAbsolute(path)) {
101 path.remove_prefix(1);
102 } else {
103 char buffer[PATH_MAX];
104 if (!::getcwd(buffer, sizeof(buffer))) {
105 return {};
106 }
107 result += buffer;
108 }
109
110 size_t start = 0;
111 size_t end = 0;
112 for (; end != path.npos; start = end + 1) {
113 end = path.find('/', start);
114 // Next component, excluding the separator
115 auto part = path.substr(start, end - start);
116 if (part.empty() || part == "."sv) {
117 continue;
118 }
119 if (part == ".."sv) {
120 if (result.empty()) {
121 return {};
122 }
123 auto lastPos = result.rfind('/');
124 if (lastPos == result.npos) {
125 result.clear();
126 } else {
127 result.resize(lastPos);
128 }
129 continue;
130 }
131 result += '/';
132 result += part;
133 }
134
135 return result;
136}
137
138std::string_view basename(std::string_view path) {
139 if (path.empty()) {
140 return {};
141 }
142 if (path == "/"sv) {
143 return "/"sv;
144 }
145 auto pos = path.rfind('/');
146 while (!path.empty() && pos == path.size() - 1) {
147 path.remove_suffix(1);
148 pos = path.rfind('/');
149 }
150 if (pos == path.npos) {
151 return path.empty() ? "/"sv : path;
152 }
153 return path.substr(pos + 1);
154}
155
156std::string_view dirname(std::string_view path) {
157 if (path.empty()) {
158 return {};
159 }
160 if (path == "/"sv) {
161 return "/"sv;
162 }
163 const auto pos = path.rfind('/');
164 if (pos == 0) {
165 return "/"sv;
166 }
167 if (pos == path.npos) {
168 return "."sv;
169 }
170 return path.substr(0, pos);
171}
172
173details::CStrWrapper::CStrWrapper(std::string_view sv) {
Alex Buynytskyy98a3c8f2021-05-12 13:25:38 -0700174 if (!sv.data()) {
175 mCstr = "";
176 } else if (sv[sv.size()] == '\0') {
Songchun Fan3c82a302019-11-29 14:23:45 -0800177 mCstr = sv.data();
178 } else {
179 mCopy.emplace(sv);
180 mCstr = mCopy->c_str();
181 }
182}
183
184std::optional<bool> isEmptyDir(std::string_view dir) {
185 const auto d = std::unique_ptr<DIR, decltype(&::closedir)>{::opendir(c_str(dir)), ::closedir};
186 if (!d) {
187 if (errno == EPERM || errno == EACCES) {
188 return std::nullopt;
189 }
190 return false;
191 }
192 while (auto entry = ::readdir(d.get())) {
193 if (entry->d_type != DT_DIR) {
194 return false;
195 }
196 if (entry->d_name != "."sv && entry->d_name != ".."sv) {
197 return false;
198 }
199 }
200 return true;
201}
202
203bool startsWith(std::string_view path, std::string_view prefix) {
204 if (!base::StartsWith(path, prefix)) {
205 return false;
206 }
207 return path.size() == prefix.size() || path[prefix.size()] == '/';
208}
209
210} // namespace android::incremental::path