• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021 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 #ifndef UPDATER_KITS_H
16 #define UPDATER_KITS_H
17 #include <string>
18 
19 constexpr const char *UPGRADE_TYPE_OTA = "ota";
20 constexpr const char *UPGRADE_TYPE_SD = "sdcard";
21 constexpr const char *UPGRADE_TYPE_OTA_INTRAL = "ota_intral";
22 constexpr const char *UPGRADE_TYPE_SD_INTRAL = "sdcard_intral";
23 constexpr const char *UPGRADE_TYPE_SUBPKG_UPDATE = "subpkg_update";
24 
25 // Reboot system to updater mode and trigger installing update package.
26 // @param packageName update package file name.
27 // @return returns true if trigger update package installing success, else returns false.
28 extern int RebootAndInstallUpgradePackage(const std::string &miscFile, const std::vector<std::string> &packageName,
29     const std::string &upgradeType = UPGRADE_TYPE_OTA);
30 
31 // Reboot system to sdcard update mode and trigger installing update package.
32 // @return returns true if trigger update package installing success, else returns false.
33 extern bool RebootAndInstallSdcardPackage(const std::string &miscFile, const std::vector<std::string> &packageName);
34 
35 // Reboot system to updater mode and trigger userdata clean up.
36 // @return returns true if trigger userdata cleanup success, else returns false.
37 extern bool RebootAndCleanUserData(const std::string &miscFile, const std::string &cmd);
38 #endif /* UPDATER_KITS_H */
39