blob: c2d99ce3959bcb0cceb2662f675af2ba974b0d7c [file] [log] [blame]
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +05301/**
2 * Copyright © 2016 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 */
16
17#include <iostream>
18#include <cassert>
19#include "argument.hpp"
20
21namespace phosphor
22{
23namespace watchdog
24{
25
26using namespace std::string_literals;
27
William A. Kennington III5d307182018-01-23 22:00:55 -080028const std::vector<std::string> emptyArg;
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053029const std::string ArgumentParser::trueString = "true"s;
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053030
William A. Kennington IIId1331082018-02-27 18:47:05 -080031const char* ArgumentParser::optionStr = "p:s:t:a:f:i:ch";
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053032const option ArgumentParser::options[] =
33{
William A. Kennington IIId1331082018-02-27 18:47:05 -080034 { "path", required_argument, nullptr, 'p' },
35 { "service", required_argument, nullptr, 's' },
36 { "target", required_argument, nullptr, 't' },
37 { "action_target", required_argument, nullptr, 'a' },
38 { "fallback_action", required_argument, nullptr, 'f' },
39 { "fallback_interval", required_argument, nullptr, 'i' },
40 { "continue", no_argument, nullptr, 'c' },
41 { "help", no_argument, nullptr, 'h' },
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053042 { 0, 0, 0, 0},
43};
44
William A. Kennington III6c094a22018-01-29 12:09:29 -080045ArgumentParser::ArgumentParser(int argc, char * const argv[])
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053046{
William A. Kennington III5d307182018-01-23 22:00:55 -080047 int option;
48 int opt_idx = 0;
William A. Kennington III87284912018-01-23 22:07:25 -080049
50 // We have to reset optind because getopt_long keeps global state
51 // and uses optind to track what argv index it needs to process next.
52 // Since this object may be instantiated more than once or test suites may
53 // already process instructions, optind may not be initialized to point to
54 // the beginning of our argv.
55 optind = 0;
William A. Kennington III5d307182018-01-23 22:00:55 -080056 while (-1 != (option = getopt_long(argc, argv, optionStr, options, &opt_idx)))
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053057 {
William A. Kennington III5d307182018-01-23 22:00:55 -080058 if (option == '?' || option == 'h')
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053059 {
60 usage(argv);
61 exit(-1);
62 }
63
William A. Kennington III5d307182018-01-23 22:00:55 -080064 auto i = &options[opt_idx];
65 while (i->val && i->val != option)
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053066 {
67 ++i;
68 }
69
70 if (i->val)
71 {
William A. Kennington III5d307182018-01-23 22:00:55 -080072 arguments[i->name].push_back(optarg ? optarg : trueString);
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053073 }
William A. Kennington III5d307182018-01-23 22:00:55 -080074
75 opt_idx = 0;
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053076 }
77}
78
William A. Kennington III5d307182018-01-23 22:00:55 -080079const std::vector<std::string>& ArgumentParser::operator[](const std::string& opt)
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053080{
81 auto i = arguments.find(opt);
82 if (i == arguments.end())
83 {
William A. Kennington III5d307182018-01-23 22:00:55 -080084 return emptyArg;
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053085 }
86 else
87 {
88 return i->second;
89 }
90}
91
William A. Kennington III6c094a22018-01-29 12:09:29 -080092void ArgumentParser::usage(char * const argv[])
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053093{
94 std::cerr << "Usage: " << argv[0] << " options\n";
95 std::cerr << "Options:\n";
William A. Kennington III12926432018-02-25 19:54:59 -080096 std::cerr << " --help Print this menu\n";
97 std::cerr << " --path=<Dbus Object path> Dbus Object path. "
William A. Kennington III180b6902018-02-22 14:29:57 -080098 "Ex: /xyz/openbmc_project/state/watchdog/host0\n";
William A. Kennington III12926432018-02-25 19:54:59 -080099 std::cerr << " --service=<Dbus Service name> Dbus Service "
100 "name. Ex: xyz.openbmc_project.State.Watchdog.Host\n";
101 std::cerr << " [--target=<systemd unit>] Systemd unit to "
102 "be called on timeout for all actions but NONE. "
103 "Deprecated, use --action_target instead.\n";
William A. Kennington III180b6902018-02-22 14:29:57 -0800104 std::cerr << " [--action_target=<action>=<systemd unit>] Map of action to "
105 "systemd unit to be called on timeout if that action is "
William A. Kennington III27df4b52018-02-02 16:02:05 -0800106 "set for ExpireAction when the timer expires.\n";
William A. Kennington IIId1331082018-02-27 18:47:05 -0800107 std::cerr << " [--fallback_action=<action>] Enables the "
108 "watchdog even when disabled via the dbus interface. "
109 "Perform this action when the fallback expires.\n";
110 std::cerr << " [--fallback_interval=<interval in ms>] Enables the "
111 "watchdog even when disabled via the dbus interface. "
112 "Waits for this interval before performing the fallback "
113 "action.\n";
William A. Kennington III12926432018-02-25 19:54:59 -0800114 std::cerr << " [--continue] Continue daemon "
115 "after watchdog timeout.\n";
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +0530116}
117} // namespace watchdog
118} // namespace phosphor