blob: d212261ce79d63ea3d84e8f51d5be2ff2238e944 [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 III7df4b5d2018-02-22 14:36:43 -080031const char* ArgumentParser::optionStr = "p:s:t:a:ch";
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053032const option ArgumentParser::options[] =
33{
William A. Kennington III7df4b5d2018-02-22 14:36:43 -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 { "continue", no_argument, nullptr, 'c' },
39 { "help", no_argument, nullptr, 'h' },
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053040 { 0, 0, 0, 0},
41};
42
William A. Kennington III6c094a22018-01-29 12:09:29 -080043ArgumentParser::ArgumentParser(int argc, char * const argv[])
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053044{
William A. Kennington III5d307182018-01-23 22:00:55 -080045 int option;
46 int opt_idx = 0;
William A. Kennington III87284912018-01-23 22:07:25 -080047
48 // We have to reset optind because getopt_long keeps global state
49 // and uses optind to track what argv index it needs to process next.
50 // Since this object may be instantiated more than once or test suites may
51 // already process instructions, optind may not be initialized to point to
52 // the beginning of our argv.
53 optind = 0;
William A. Kennington III5d307182018-01-23 22:00:55 -080054 while (-1 != (option = getopt_long(argc, argv, optionStr, options, &opt_idx)))
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053055 {
William A. Kennington III5d307182018-01-23 22:00:55 -080056 if (option == '?' || option == 'h')
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053057 {
58 usage(argv);
59 exit(-1);
60 }
61
William A. Kennington III5d307182018-01-23 22:00:55 -080062 auto i = &options[opt_idx];
63 while (i->val && i->val != option)
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053064 {
65 ++i;
66 }
67
68 if (i->val)
69 {
William A. Kennington III5d307182018-01-23 22:00:55 -080070 arguments[i->name].push_back(optarg ? optarg : trueString);
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053071 }
William A. Kennington III5d307182018-01-23 22:00:55 -080072
73 opt_idx = 0;
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053074 }
75}
76
William A. Kennington III5d307182018-01-23 22:00:55 -080077const std::vector<std::string>& ArgumentParser::operator[](const std::string& opt)
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053078{
79 auto i = arguments.find(opt);
80 if (i == arguments.end())
81 {
William A. Kennington III5d307182018-01-23 22:00:55 -080082 return emptyArg;
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053083 }
84 else
85 {
86 return i->second;
87 }
88}
89
William A. Kennington III6c094a22018-01-29 12:09:29 -080090void ArgumentParser::usage(char * const argv[])
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +053091{
92 std::cerr << "Usage: " << argv[0] << " options\n";
93 std::cerr << "Options:\n";
William A. Kennington III12926432018-02-25 19:54:59 -080094 std::cerr << " --help Print this menu\n";
95 std::cerr << " --path=<Dbus Object path> Dbus Object path. "
William A. Kennington III180b6902018-02-22 14:29:57 -080096 "Ex: /xyz/openbmc_project/state/watchdog/host0\n";
William A. Kennington III12926432018-02-25 19:54:59 -080097 std::cerr << " --service=<Dbus Service name> Dbus Service "
98 "name. Ex: xyz.openbmc_project.State.Watchdog.Host\n";
99 std::cerr << " [--target=<systemd unit>] Systemd unit to "
100 "be called on timeout for all actions but NONE. "
101 "Deprecated, use --action_target instead.\n";
William A. Kennington III180b6902018-02-22 14:29:57 -0800102 std::cerr << " [--action_target=<action>=<systemd unit>] Map of action to "
103 "systemd unit to be called on timeout if that action is "
William A. Kennington III27df4b52018-02-02 16:02:05 -0800104 "set for ExpireAction when the timer expires.\n";
William A. Kennington III12926432018-02-25 19:54:59 -0800105 std::cerr << " [--continue] Continue daemon "
106 "after watchdog timeout.\n";
Vishwanatha Subbanna15b1dc12017-05-23 15:16:13 +0530107}
108} // namespace watchdog
109} // namespace phosphor