1 /* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef SYS_INSTALLER_MODULE_UPDATE_H 17 #define SYS_INSTALLER_MODULE_UPDATE_H 18 19 #include <memory> 20 #include <list> 21 #include <unordered_set> 22 23 #include "module_file.h" 24 #include "module_ipc_helper.h" 25 26 namespace OHOS { 27 namespace SysInstaller { 28 class ModuleUpdate { 29 public: 30 ModuleUpdate() = default; 31 virtual ~ModuleUpdate() = default; 32 33 std::string CheckModuleUpdate(const std::string &path); 34 private: 35 bool ParseSaProfiles(const std::string &path); 36 void PrepareModuleFileList(); 37 bool ActivateModules(); 38 bool MountModulePackage(const ModuleFile &moduleFile, const bool mountOnVerity) const; 39 void ReportMountStatus(const ModuleUpdateStatus &status) const; 40 41 std::unordered_set<int32_t> saIdSet_; 42 std::list<ModuleFile> moduleFileList_; 43 ModuleUpdateStatus status_; 44 }; 45 } // SysInstaller 46 } // namespace OHOS 47 #endif // SYS_INSTALLER_MODULE_UPDATE_H