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
19constexpr const char *UPGRADE_TYPE_OTA = "ota";
20constexpr const char *UPGRADE_TYPE_SD = "sdcard";
21constexpr const char *UPGRADE_TYPE_SD_INTRAL = "sdcard_intral";
22
23// Reboot system to updater mode and trigger installing update package.
24// @param packageName update package file name.
25// @return returns true if trigger update package installing success, else returns false.
26extern int RebootAndInstallUpgradePackage(const std::string &miscFile, const std::vector<std::string> &packageName,
27    const std::string &upgradeType = UPGRADE_TYPE_OTA);
28
29// Reboot system to sdcard update mode and trigger installing update package.
30// @return returns true if trigger update package installing success, else returns false.
31extern bool RebootAndInstallSdcardPackage(const std::string &miscFile, const std::vector<std::string> &packageName);
32
33// Reboot system to updater mode and trigger userdata clean up.
34// @return returns true if trigger userdata cleanup success, else returns false.
35extern bool RebootAndCleanUserData(const std::string &miscFile, const std::string &cmd);
36#endif /* UPDATER_KITS_H */
37