Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 17 | #define LOG_TAG "IncrementalService" |
| 18 | |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 19 | #include "ServiceWrappers.h" |
| 20 | |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 21 | #include <MountRegistry.h> |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 22 | #include <android-base/logging.h> |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 23 | #include <android/content/pm/IDataLoaderManager.h> |
| 24 | #include <android/os/IVold.h> |
| 25 | #include <binder/AppOpsManager.h> |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 26 | #include <utils/String16.h> |
| 27 | |
Songchun Fan | 374f765 | 2020-08-20 08:40:29 -0700 | [diff] [blame] | 28 | #include <filesystem> |
Alex Buynytskyy | 46d3ddb | 2020-05-29 12:05:05 -0700 | [diff] [blame] | 29 | #include <thread> |
| 30 | |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 31 | #include "IncrementalServiceValidation.h" |
| 32 | |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 33 | using namespace std::literals; |
| 34 | |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 35 | namespace android::incremental { |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 36 | |
| 37 | static constexpr auto kVoldServiceName = "vold"sv; |
Songchun Fan | 68645c4 | 2020-02-27 15:57:35 -0800 | [diff] [blame] | 38 | static constexpr auto kDataLoaderManagerName = "dataloader_manager"sv; |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 39 | |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 40 | class RealVoldService : public VoldServiceWrapper { |
| 41 | public: |
Yurii Zubrytskyi | 510037b | 2020-04-22 15:46:21 -0700 | [diff] [blame] | 42 | RealVoldService(sp<os::IVold> vold) : mInterface(std::move(vold)) {} |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 43 | ~RealVoldService() = default; |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 44 | binder::Status mountIncFs( |
| 45 | const std::string& backingPath, const std::string& targetDir, int32_t flags, |
| 46 | os::incremental::IncrementalFileSystemControlParcel* _aidl_return) const final { |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 47 | return mInterface->mountIncFs(backingPath, targetDir, flags, _aidl_return); |
| 48 | } |
| 49 | binder::Status unmountIncFs(const std::string& dir) const final { |
| 50 | return mInterface->unmountIncFs(dir); |
| 51 | } |
| 52 | binder::Status bindMount(const std::string& sourceDir, |
| 53 | const std::string& targetDir) const final { |
| 54 | return mInterface->bindMount(sourceDir, targetDir); |
| 55 | } |
| 56 | binder::Status setIncFsMountOptions( |
| 57 | const ::android::os::incremental::IncrementalFileSystemControlParcel& control, |
| 58 | bool enableReadLogs) const final { |
| 59 | return mInterface->setIncFsMountOptions(control, enableReadLogs); |
| 60 | } |
| 61 | |
| 62 | private: |
| 63 | sp<os::IVold> mInterface; |
| 64 | }; |
| 65 | |
| 66 | class RealDataLoaderManager : public DataLoaderManagerWrapper { |
| 67 | public: |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 68 | RealDataLoaderManager(sp<content::pm::IDataLoaderManager> manager) |
| 69 | : mInterface(std::move(manager)) {} |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 70 | ~RealDataLoaderManager() = default; |
Alex Buynytskyy | ea1390f | 2020-04-22 16:08:50 -0700 | [diff] [blame] | 71 | binder::Status bindToDataLoader(MountId mountId, |
| 72 | const content::pm::DataLoaderParamsParcel& params, |
Alex Buynytskyy | b19ee3e | 2021-02-06 20:31:43 -0800 | [diff] [blame] | 73 | int bindDelayMs, |
Alex Buynytskyy | ea1390f | 2020-04-22 16:08:50 -0700 | [diff] [blame] | 74 | const sp<content::pm::IDataLoaderStatusListener>& listener, |
| 75 | bool* _aidl_return) const final { |
Alex Buynytskyy | b19ee3e | 2021-02-06 20:31:43 -0800 | [diff] [blame] | 76 | return mInterface->bindToDataLoader(mountId, params, bindDelayMs, listener, _aidl_return); |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 77 | } |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 78 | binder::Status getDataLoader(MountId mountId, |
| 79 | sp<content::pm::IDataLoader>* _aidl_return) const final { |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 80 | return mInterface->getDataLoader(mountId, _aidl_return); |
| 81 | } |
Alex Buynytskyy | ea1390f | 2020-04-22 16:08:50 -0700 | [diff] [blame] | 82 | binder::Status unbindFromDataLoader(MountId mountId) const final { |
| 83 | return mInterface->unbindFromDataLoader(mountId); |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | private: |
| 87 | sp<content::pm::IDataLoaderManager> mInterface; |
| 88 | }; |
| 89 | |
| 90 | class RealAppOpsManager : public AppOpsManagerWrapper { |
| 91 | public: |
| 92 | ~RealAppOpsManager() = default; |
| 93 | binder::Status checkPermission(const char* permission, const char* operation, |
| 94 | const char* package) const final { |
| 95 | return android::incremental::CheckPermissionForDataDelivery(permission, operation, package); |
| 96 | } |
| 97 | void startWatchingMode(int32_t op, const String16& packageName, |
| 98 | const sp<IAppOpsCallback>& callback) final { |
| 99 | mAppOpsManager.startWatchingMode(op, packageName, callback); |
| 100 | } |
| 101 | void stopWatchingMode(const sp<IAppOpsCallback>& callback) final { |
| 102 | mAppOpsManager.stopWatchingMode(callback); |
| 103 | } |
| 104 | |
| 105 | private: |
| 106 | android::AppOpsManager mAppOpsManager; |
| 107 | }; |
| 108 | |
| 109 | class RealJniWrapper final : public JniWrapper { |
| 110 | public: |
| 111 | RealJniWrapper(JavaVM* jvm); |
| 112 | void initializeForCurrentThread() const final; |
| 113 | |
| 114 | static JavaVM* getJvm(JNIEnv* env); |
| 115 | |
| 116 | private: |
| 117 | JavaVM* const mJvm; |
| 118 | }; |
| 119 | |
Alex Buynytskyy | cca2c11 | 2020-05-05 12:48:41 -0700 | [diff] [blame] | 120 | class RealLooperWrapper final : public LooperWrapper { |
| 121 | public: |
| 122 | int addFd(int fd, int ident, int events, android::Looper_callbackFunc callback, |
| 123 | void* data) final { |
| 124 | return mLooper.addFd(fd, ident, events, callback, data); |
| 125 | } |
| 126 | int removeFd(int fd) final { return mLooper.removeFd(fd); } |
| 127 | void wake() final { return mLooper.wake(); } |
| 128 | int pollAll(int timeoutMillis) final { return mLooper.pollAll(timeoutMillis); } |
| 129 | |
| 130 | private: |
| 131 | struct Looper : public android::Looper { |
| 132 | Looper() : android::Looper(/*allowNonCallbacks=*/false) {} |
| 133 | ~Looper() {} |
| 134 | } mLooper; |
| 135 | }; |
| 136 | |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 137 | class RealIncFs : public IncFsWrapper { |
| 138 | public: |
| 139 | RealIncFs() = default; |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 140 | ~RealIncFs() final = default; |
| 141 | void listExistingMounts(const ExistingMountCallback& cb) const final { |
| 142 | for (auto mount : incfs::defaultMountRegistry().copyMounts()) { |
| 143 | auto binds = mount.binds(); // span() doesn't like rvalue containers, needs to save it. |
| 144 | cb(mount.root(), mount.backingDir(), binds); |
| 145 | } |
| 146 | } |
| 147 | Control openMount(std::string_view path) const final { return incfs::open(path); } |
Yurii Zubrytskyi | 5f69292 | 2020-12-08 07:35:24 -0800 | [diff] [blame] | 148 | Control createControl(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs, |
| 149 | IncFsFd blocksWritten) const final { |
| 150 | return incfs::createControl(cmd, pendingReads, logs, blocksWritten); |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 151 | } |
| 152 | ErrorCode makeFile(const Control& control, std::string_view path, int mode, FileId id, |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 153 | incfs::NewFileParams params) const final { |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 154 | return incfs::makeFile(control, path, mode, id, params); |
| 155 | } |
| 156 | ErrorCode makeDir(const Control& control, std::string_view path, int mode) const final { |
| 157 | return incfs::makeDir(control, path, mode); |
| 158 | } |
Yurii Zubrytskyi | efebb45 | 2020-04-22 13:59:06 -0700 | [diff] [blame] | 159 | ErrorCode makeDirs(const Control& control, std::string_view path, int mode) const final { |
| 160 | return incfs::makeDirs(control, path, mode); |
| 161 | } |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 162 | incfs::RawMetadata getMetadata(const Control& control, FileId fileid) const final { |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 163 | return incfs::getMetadata(control, fileid); |
| 164 | } |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 165 | incfs::RawMetadata getMetadata(const Control& control, std::string_view path) const final { |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 166 | return incfs::getMetadata(control, path); |
| 167 | } |
| 168 | FileId getFileId(const Control& control, std::string_view path) const final { |
| 169 | return incfs::getFileId(control, path); |
| 170 | } |
Songchun Fan | 6944f1e | 2020-11-06 15:24:24 -0800 | [diff] [blame] | 171 | std::string toString(FileId fileId) const final { return incfs::toString(fileId); } |
Songchun Fan | 374f765 | 2020-08-20 08:40:29 -0700 | [diff] [blame] | 172 | std::pair<IncFsBlockIndex, IncFsBlockIndex> countFilledBlocks( |
| 173 | const Control& control, std::string_view path) const final { |
| 174 | const auto fileId = incfs::getFileId(control, path); |
| 175 | const auto fd = incfs::openForSpecialOps(control, fileId); |
| 176 | int res = fd.get(); |
| 177 | if (!fd.ok()) { |
| 178 | return {res, res}; |
| 179 | } |
| 180 | const auto ranges = incfs::getFilledRanges(res); |
| 181 | res = ranges.first; |
| 182 | if (res) { |
| 183 | return {res, res}; |
| 184 | } |
| 185 | const auto totalBlocksCount = ranges.second.internalRawRanges().endIndex; |
| 186 | int filledBlockCount = 0; |
| 187 | for (const auto& dataRange : ranges.second.dataRanges()) { |
| 188 | filledBlockCount += dataRange.size(); |
| 189 | } |
| 190 | for (const auto& hashRange : ranges.second.hashRanges()) { |
| 191 | filledBlockCount += hashRange.size(); |
| 192 | } |
| 193 | return {filledBlockCount, totalBlocksCount}; |
| 194 | } |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 195 | ErrorCode link(const Control& control, std::string_view from, std::string_view to) const final { |
| 196 | return incfs::link(control, from, to); |
| 197 | } |
| 198 | ErrorCode unlink(const Control& control, std::string_view path) const final { |
| 199 | return incfs::unlink(control, path); |
| 200 | } |
Alex Buynytskyy | bc0a7e6 | 2020-08-25 12:45:22 -0700 | [diff] [blame] | 201 | incfs::UniqueFd openForSpecialOps(const Control& control, FileId id) const final { |
| 202 | return incfs::openForSpecialOps(control, id); |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 203 | } |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 204 | ErrorCode writeBlocks(std::span<const incfs::DataBlock> blocks) const final { |
| 205 | return incfs::writeBlocks({blocks.data(), size_t(blocks.size())}); |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 206 | } |
Alex Buynytskyy | 8ef61ae | 2020-05-08 16:18:52 -0700 | [diff] [blame] | 207 | WaitResult waitForPendingReads(const Control& control, std::chrono::milliseconds timeout, |
| 208 | std::vector<incfs::ReadInfo>* pendingReadsBuffer) const final { |
| 209 | return incfs::waitForPendingReads(control, timeout, pendingReadsBuffer); |
| 210 | } |
Alex Buynytskyy | aa8e95e | 2020-12-14 21:50:04 -0800 | [diff] [blame] | 211 | ErrorCode setUidReadTimeouts(const Control& control, |
| 212 | const std::vector<android::os::incremental::PerUidReadTimeouts>& |
| 213 | perUidReadTimeouts) const final { |
Alex Buynytskyy | fe6b4c0 | 2021-01-26 13:29:24 -0800 | [diff] [blame] | 214 | std::vector<incfs::UidReadTimeouts> timeouts; |
| 215 | timeouts.resize(perUidReadTimeouts.size()); |
| 216 | for (int i = 0, size = perUidReadTimeouts.size(); i < size; ++i) { |
| 217 | auto&& timeout = timeouts[i]; |
| 218 | const auto& perUidTimeout = perUidReadTimeouts[i]; |
| 219 | timeout.uid = perUidTimeout.uid; |
| 220 | timeout.minTimeUs = perUidTimeout.minTimeUs; |
| 221 | timeout.minPendingTimeUs = perUidTimeout.minPendingTimeUs; |
| 222 | timeout.maxPendingTimeUs = perUidTimeout.maxPendingTimeUs; |
| 223 | } |
Alex Buynytskyy | 07694ed | 2021-01-27 06:58:55 -0800 | [diff] [blame] | 224 | |
Alex Buynytskyy | fe6b4c0 | 2021-01-26 13:29:24 -0800 | [diff] [blame] | 225 | return incfs::setUidReadTimeouts(control, timeouts); |
Alex Buynytskyy | aa8e95e | 2020-12-14 21:50:04 -0800 | [diff] [blame] | 226 | } |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 227 | }; |
| 228 | |
Alex Buynytskyy | 46d3ddb | 2020-05-29 12:05:05 -0700 | [diff] [blame] | 229 | static JNIEnv* getOrAttachJniEnv(JavaVM* jvm); |
| 230 | |
| 231 | class RealTimedQueueWrapper : public TimedQueueWrapper { |
| 232 | public: |
| 233 | RealTimedQueueWrapper(JavaVM* jvm) { |
| 234 | mThread = std::thread([this, jvm]() { |
| 235 | (void)getOrAttachJniEnv(jvm); |
| 236 | runTimers(); |
| 237 | }); |
| 238 | } |
| 239 | ~RealTimedQueueWrapper() final { |
| 240 | CHECK(!mRunning) << "call stop first"; |
| 241 | CHECK(!mThread.joinable()) << "call stop first"; |
| 242 | } |
| 243 | |
| 244 | void addJob(MountId id, Milliseconds after, Job what) final { |
| 245 | const auto now = Clock::now(); |
| 246 | { |
| 247 | std::unique_lock lock(mMutex); |
| 248 | mJobs.insert(TimedJob{id, now + after, std::move(what)}); |
| 249 | } |
| 250 | mCondition.notify_all(); |
| 251 | } |
| 252 | void removeJobs(MountId id) final { |
| 253 | std::unique_lock lock(mMutex); |
| 254 | std::erase_if(mJobs, [id](auto&& item) { return item.id == id; }); |
| 255 | } |
| 256 | void stop() final { |
| 257 | { |
| 258 | std::unique_lock lock(mMutex); |
| 259 | mRunning = false; |
| 260 | } |
| 261 | mCondition.notify_all(); |
| 262 | mThread.join(); |
| 263 | mJobs.clear(); |
| 264 | } |
| 265 | |
| 266 | private: |
| 267 | void runTimers() { |
| 268 | static constexpr TimePoint kInfinityTs{Clock::duration::max()}; |
| 269 | TimePoint nextJobTs = kInfinityTs; |
| 270 | std::unique_lock lock(mMutex); |
| 271 | for (;;) { |
| 272 | mCondition.wait_until(lock, nextJobTs, [this, nextJobTs]() { |
| 273 | const auto now = Clock::now(); |
| 274 | const auto firstJobTs = !mJobs.empty() ? mJobs.begin()->when : kInfinityTs; |
| 275 | return !mRunning || firstJobTs <= now || firstJobTs < nextJobTs; |
| 276 | }); |
| 277 | if (!mRunning) { |
| 278 | return; |
| 279 | } |
| 280 | |
| 281 | const auto now = Clock::now(); |
| 282 | auto it = mJobs.begin(); |
| 283 | // Always acquire begin(). We can't use it after unlock as mTimedJobs can change. |
| 284 | for (; it != mJobs.end() && it->when <= now; it = mJobs.begin()) { |
| 285 | auto job = std::move(it->what); |
| 286 | mJobs.erase(it); |
| 287 | |
| 288 | lock.unlock(); |
| 289 | job(); |
| 290 | lock.lock(); |
| 291 | } |
| 292 | nextJobTs = it != mJobs.end() ? it->when : kInfinityTs; |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | struct TimedJob { |
| 297 | MountId id; |
| 298 | TimePoint when; |
| 299 | Job what; |
| 300 | friend bool operator<(const TimedJob& lhs, const TimedJob& rhs) { |
| 301 | return lhs.when < rhs.when; |
| 302 | } |
| 303 | }; |
| 304 | bool mRunning = true; |
| 305 | std::set<TimedJob> mJobs; |
| 306 | std::condition_variable mCondition; |
| 307 | std::mutex mMutex; |
| 308 | std::thread mThread; |
| 309 | }; |
| 310 | |
Songchun Fan | 374f765 | 2020-08-20 08:40:29 -0700 | [diff] [blame] | 311 | class RealFsWrapper : public FsWrapper { |
| 312 | public: |
| 313 | RealFsWrapper() = default; |
| 314 | ~RealFsWrapper() = default; |
| 315 | |
| 316 | std::vector<std::string> listFilesRecursive(std::string_view directoryPath) const final { |
| 317 | std::vector<std::string> files; |
| 318 | for (const auto& entry : std::filesystem::recursive_directory_iterator(directoryPath)) { |
| 319 | if (!entry.is_regular_file()) { |
| 320 | continue; |
| 321 | } |
| 322 | files.push_back(entry.path().c_str()); |
| 323 | } |
| 324 | return files; |
| 325 | } |
| 326 | }; |
| 327 | |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 328 | RealServiceManager::RealServiceManager(sp<IServiceManager> serviceManager, JNIEnv* env) |
| 329 | : mServiceManager(std::move(serviceManager)), mJvm(RealJniWrapper::getJvm(env)) {} |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 330 | |
| 331 | template <class INTERFACE> |
| 332 | sp<INTERFACE> RealServiceManager::getRealService(std::string_view serviceName) const { |
Yurii Zubrytskyi | 4a25dfb | 2020-01-10 11:53:24 -0800 | [diff] [blame] | 333 | sp<IBinder> binder = |
| 334 | mServiceManager->getService(String16(serviceName.data(), serviceName.size())); |
| 335 | if (!binder) { |
| 336 | return nullptr; |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 337 | } |
| 338 | return interface_cast<INTERFACE>(binder); |
| 339 | } |
| 340 | |
Yurii Zubrytskyi | 4a25dfb | 2020-01-10 11:53:24 -0800 | [diff] [blame] | 341 | std::unique_ptr<VoldServiceWrapper> RealServiceManager::getVoldService() { |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 342 | sp<os::IVold> vold = RealServiceManager::getRealService<os::IVold>(kVoldServiceName); |
| 343 | if (vold != 0) { |
Yurii Zubrytskyi | 4a25dfb | 2020-01-10 11:53:24 -0800 | [diff] [blame] | 344 | return std::make_unique<RealVoldService>(vold); |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 345 | } |
| 346 | return nullptr; |
| 347 | } |
| 348 | |
Songchun Fan | 68645c4 | 2020-02-27 15:57:35 -0800 | [diff] [blame] | 349 | std::unique_ptr<DataLoaderManagerWrapper> RealServiceManager::getDataLoaderManager() { |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 350 | sp<content::pm::IDataLoaderManager> manager = |
| 351 | RealServiceManager::getRealService<content::pm::IDataLoaderManager>( |
| 352 | kDataLoaderManagerName); |
Yurii Zubrytskyi | 4a25dfb | 2020-01-10 11:53:24 -0800 | [diff] [blame] | 353 | if (manager) { |
Songchun Fan | 68645c4 | 2020-02-27 15:57:35 -0800 | [diff] [blame] | 354 | return std::make_unique<RealDataLoaderManager>(manager); |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 355 | } |
| 356 | return nullptr; |
| 357 | } |
| 358 | |
Yurii Zubrytskyi | 4a25dfb | 2020-01-10 11:53:24 -0800 | [diff] [blame] | 359 | std::unique_ptr<IncFsWrapper> RealServiceManager::getIncFs() { |
| 360 | return std::make_unique<RealIncFs>(); |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 361 | } |
| 362 | |
Alex Buynytskyy | 96e350b | 2020-04-02 20:03:47 -0700 | [diff] [blame] | 363 | std::unique_ptr<AppOpsManagerWrapper> RealServiceManager::getAppOpsManager() { |
| 364 | return std::make_unique<RealAppOpsManager>(); |
| 365 | } |
| 366 | |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 367 | std::unique_ptr<JniWrapper> RealServiceManager::getJni() { |
| 368 | return std::make_unique<RealJniWrapper>(mJvm); |
| 369 | } |
| 370 | |
Alex Buynytskyy | cca2c11 | 2020-05-05 12:48:41 -0700 | [diff] [blame] | 371 | std::unique_ptr<LooperWrapper> RealServiceManager::getLooper() { |
| 372 | return std::make_unique<RealLooperWrapper>(); |
| 373 | } |
| 374 | |
Alex Buynytskyy | 46d3ddb | 2020-05-29 12:05:05 -0700 | [diff] [blame] | 375 | std::unique_ptr<TimedQueueWrapper> RealServiceManager::getTimedQueue() { |
| 376 | return std::make_unique<RealTimedQueueWrapper>(mJvm); |
| 377 | } |
| 378 | |
Songchun Fan | a709859 | 2020-09-03 11:45:53 -0700 | [diff] [blame] | 379 | std::unique_ptr<TimedQueueWrapper> RealServiceManager::getProgressUpdateJobQueue() { |
| 380 | return std::make_unique<RealTimedQueueWrapper>(mJvm); |
| 381 | } |
| 382 | |
Songchun Fan | 374f765 | 2020-08-20 08:40:29 -0700 | [diff] [blame] | 383 | std::unique_ptr<FsWrapper> RealServiceManager::getFs() { |
| 384 | return std::make_unique<RealFsWrapper>(); |
| 385 | } |
| 386 | |
Yurii Zubrytskyi | 8632140 | 2020-04-09 19:22:30 -0700 | [diff] [blame] | 387 | static JavaVM* getJavaVm(JNIEnv* env) { |
| 388 | CHECK(env); |
| 389 | JavaVM* jvm = nullptr; |
| 390 | env->GetJavaVM(&jvm); |
| 391 | CHECK(jvm); |
| 392 | return jvm; |
| 393 | } |
| 394 | |
| 395 | static JNIEnv* getJniEnv(JavaVM* vm) { |
| 396 | JNIEnv* env; |
| 397 | if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) { |
| 398 | return nullptr; |
| 399 | } |
| 400 | return env; |
| 401 | } |
| 402 | |
| 403 | static JNIEnv* getOrAttachJniEnv(JavaVM* jvm) { |
| 404 | if (!jvm) { |
| 405 | LOG(ERROR) << "No JVM instance"; |
| 406 | return nullptr; |
| 407 | } |
| 408 | |
| 409 | JNIEnv* env = getJniEnv(jvm); |
| 410 | if (!env) { |
| 411 | int result = jvm->AttachCurrentThread(&env, nullptr); |
| 412 | if (result != JNI_OK) { |
| 413 | LOG(ERROR) << "JVM thread attach failed: " << result; |
| 414 | return nullptr; |
| 415 | } |
| 416 | struct VmDetacher { |
| 417 | VmDetacher(JavaVM* vm) : mVm(vm) {} |
| 418 | ~VmDetacher() { mVm->DetachCurrentThread(); } |
| 419 | |
| 420 | private: |
| 421 | JavaVM* const mVm; |
| 422 | }; |
| 423 | static thread_local VmDetacher detacher(jvm); |
| 424 | } |
| 425 | |
| 426 | return env; |
| 427 | } |
| 428 | |
| 429 | RealJniWrapper::RealJniWrapper(JavaVM* jvm) : mJvm(jvm) { |
| 430 | CHECK(!!mJvm) << "JVM is unavailable"; |
| 431 | } |
| 432 | |
| 433 | void RealJniWrapper::initializeForCurrentThread() const { |
| 434 | (void)getOrAttachJniEnv(mJvm); |
| 435 | } |
| 436 | |
| 437 | JavaVM* RealJniWrapper::getJvm(JNIEnv* env) { |
| 438 | return getJavaVm(env); |
| 439 | } |
| 440 | |
Yurii Zubrytskyi | 629051fd | 2020-04-17 23:13:47 -0700 | [diff] [blame] | 441 | } // namespace android::incremental |