* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <cstdio>
#include <string>
#include <unistd.h>
#include <vector>
#include "fs_manager/mount.h"
#include "log.h"
#include "updater/updater_const.h"
#include "update_processor.h"
#include "update_processor_stream.h"
#include "utils.h"
using namespace Updater;
#ifndef UPDATER_UT
int main(int argc, char **argv)
{
InitLogger("UPDATER_BINARY", false);
if (argc < MINIMAL_ARGC_LIMIT || argc > MAXIMAL_ARGC_LIMIT) {
LOG(ERROR) << "Invalid arguments:" << argc;
return EXIT_INVALID_ARGS;
}
bool retry = false;
int pipeFd;
std::string packagePath;
if (argc == 2) {
packagePath = argv[0];
pipeFd = static_cast<int>(std::strtol(argv[1], nullptr, DECIMAL));
} else if (argc == 3) {
if (strcmp(argv[2], "retry") == 0) {
retry = true;
}
packagePath = argv[0];
pipeFd = static_cast<int>(std::strtol(argv[1], nullptr, DECIMAL));
} else {
packagePath = argv[1];
pipeFd = static_cast<int>(std::strtol(argv[2], nullptr, DECIMAL));
retry = strcmp(argv[3], "retry=0") == 0 ? false : true;
}
LoadFstab();
std::string fileExtension;
size_t dotPosition = packagePath.find_last_of(".");
if (dotPosition == std::string::npos) {
LOG(ERROR) << "Invalid packagePath: No extension found in " << packagePath;
return EXIT_INVALID_ARGS;
}
fileExtension = packagePath.substr(dotPosition + 1);
std::transform(fileExtension.begin(), fileExtension.end(), fileExtension.begin(), ::tolower);
if (fileExtension == "zip") {
return ProcessUpdater(retry, pipeFd, packagePath, Utils::GetCertName());
} else if (fileExtension == "bin") {
return ProcessUpdaterStream(retry, pipeFd, packagePath, Utils::GetCertName());
} else {
LOG(ERROR) << "Invalid packagePath:" << packagePath;
return EXIT_INVALID_ARGS;
}
}
#endif