blob: f93272c3c4bdc50d20c1d3262553df9e9891fe74 [file] [log] [blame]
Lei YU0bf1b782019-08-29 16:02:30 +08001/**
2 * Copyright © 2019 IBM Corporation
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 */
Lei YUd19df252019-10-25 17:31:52 +080016#include "updater.hpp"
Lei YU0bf1b782019-08-29 16:02:30 +080017#include "version.hpp"
18
Lei YU093b5912019-10-22 15:28:51 +080019#include <CLI/CLI.hpp>
Lei YU0bf1b782019-08-29 16:02:30 +080020#include <phosphor-logging/log.hpp>
21
Brandon Wymand1bc4ce2019-12-13 14:20:34 -060022#include <cassert>
23
Lei YU0bf1b782019-08-29 16:02:30 +080024using namespace phosphor::logging;
25
26int main(int argc, char** argv)
27{
Lei YU093b5912019-10-22 15:28:51 +080028
29 std::string psuPath;
30 std::vector<std::string> versions;
31 bool rawOutput = false;
Lei YUd19df252019-10-25 17:31:52 +080032 std::vector<std::string> updateArguments;
Lei YU093b5912019-10-22 15:28:51 +080033
34 CLI::App app{"PSU utils app for OpenBMC"};
35 auto action = app.add_option_group("Action");
36 action->add_option("-g,--get-version", psuPath,
37 "Get PSU version from inventory path");
38 action->add_option("-c,--compare", versions,
39 "Compare and get the latest version");
Lei YUd19df252019-10-25 17:31:52 +080040 action
41 ->add_option("-u,--update", updateArguments,
42 "Update PSU firmware, expecting two arguments: "
43 "<PSU inventory path> <image-dir>")
44 ->expected(2);
Lei YU093b5912019-10-22 15:28:51 +080045 action->require_option(1); // Only one option is supported
46 app.add_flag("--raw", rawOutput, "Output raw text without linefeed");
47 CLI11_PARSE(app, argc, argv);
48
49 std::string ret;
50
51 if (!psuPath.empty())
Lei YU0bf1b782019-08-29 16:02:30 +080052 {
Lei YU093b5912019-10-22 15:28:51 +080053 ret = version::getVersion(psuPath);
54 }
55 if (!versions.empty())
56 {
57 ret = version::getLatest(versions);
Lei YU0bf1b782019-08-29 16:02:30 +080058 }
Lei YUd19df252019-10-25 17:31:52 +080059 if (!updateArguments.empty())
60 {
61 assert(updateArguments.size() == 2);
62 if (updater::update(updateArguments[0], updateArguments[1]))
63 {
64 ret = "Update successful";
65 }
66 }
Lei YU0bf1b782019-08-29 16:02:30 +080067
Lei YU093b5912019-10-22 15:28:51 +080068 printf("%s", ret.c_str());
69 if (!rawOutput)
70 {
71 printf("\n");
72 }
73 return ret.empty() ? 1 : 0;
Lei YU0bf1b782019-08-29 16:02:30 +080074}