1 /*
2 * Copyright (C) 2020 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 <vintf/HostFileSystem.h>
18
19 #include <android-base/logging.h>
20 #include <android-base/strings.h>
21
22 namespace android::vintf::details {
23
HostFileSystem(const Dirmap & dirmap,status_t missingError)24 HostFileSystem::HostFileSystem(const Dirmap& dirmap, status_t missingError)
25 : HostFileSystem(dirmap, missingError, std::make_unique<FileSystemImpl>()) {}
26
HostFileSystem(const Dirmap & dirmap,status_t missingError,std::unique_ptr<FileSystem> && impl)27 HostFileSystem::HostFileSystem(const Dirmap& dirmap, status_t missingError,
28 std::unique_ptr<FileSystem>&& impl)
29 : HostFileSystem(dirmap, missingError, impl.get()) {
30 mImplUniq = std::move(impl);
31 }
32
HostFileSystem(const Dirmap & dirmap,status_t missingError,FileSystem * impl)33 HostFileSystem::HostFileSystem(const Dirmap& dirmap, status_t missingError, FileSystem* impl)
34 : mDirMap(dirmap), mMissingError(missingError), mImpl(impl) {}
35
fetch(const std::string & path,std::string * fetched,std::string * error) const36 status_t HostFileSystem::fetch(const std::string& path, std::string* fetched,
37 std::string* error) const {
38 auto resolved = resolve(path, error);
39 if (resolved.empty()) {
40 return mMissingError;
41 }
42 status_t status = mImpl->fetch(resolved, fetched, error);
43 LOG(INFO) << "Fetch '" << resolved << "': " << statusToString(status);
44 return status;
45 }
46
listFiles(const std::string & path,std::vector<std::string> * out,std::string * error) const47 status_t HostFileSystem::listFiles(const std::string& path, std::vector<std::string>* out,
48 std::string* error) const {
49 auto resolved = resolve(path, error);
50 if (resolved.empty()) {
51 return mMissingError;
52 }
53 status_t status = mImpl->listFiles(resolved, out, error);
54 LOG(INFO) << "List '" << resolved << "': " << statusToString(status);
55 return status;
56 }
57
modifiedTime(const std::string & path,int64_t * mtime,std::string * error) const58 status_t HostFileSystem::modifiedTime(const std::string& path, int64_t* mtime,
59 std::string* error) const {
60 auto resolved = resolve(path, error);
61 if (resolved.empty()) {
62 return mMissingError;
63 }
64 status_t status = mImpl->modifiedTime(resolved, mtime, error);
65 LOG(INFO) << "Get modified time '" << resolved << "': " << statusToString(status);
66 return status;
67 }
68
resolve(const std::string & path,std::string * error) const69 std::string HostFileSystem::resolve(const std::string& path, std::string* error) const {
70 for (auto [prefix, mappedPath] : mDirMap) {
71 if (path == prefix) {
72 return mappedPath;
73 }
74 if (android::base::StartsWith(path, prefix + "/")) {
75 return mappedPath + "/" + path.substr(prefix.size() + 1);
76 }
77 }
78 if (error) {
79 *error = "Cannot resolve path " + path;
80 } else {
81 LOG(mMissingError == NAME_NOT_FOUND ? INFO : ERROR) << "Cannot resolve path " << path;
82 }
83 return "";
84 }
85
86 } // namespace android::vintf::details
87