blob: daf01773a7528bd4620bbc05ec8cb963bce986ad [file] [log] [blame]
Matt Spinler8b633b72017-06-02 12:35:59 -05001/**
2 * Copyright © 2017 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#include <iostream>
17#include <iterator>
18#include <algorithm>
19#include "argument.hpp"
20
21namespace phosphor
22{
23namespace unit
24{
25namespace failure
26{
27
28ArgumentParser::ArgumentParser(int argc, char** argv)
29{
30 int option = 0;
31 while (-1 != (option = getopt_long(argc, argv, optionStr, options, NULL)))
32 {
33 if ((option == '?') || (option == 'h'))
34 {
35 usage(argv);
36 exit(-1);
37 }
38
39 auto i = &options[0];
40 while ((i->val != option) && (i->val != 0))
41 {
42 ++i;
43 }
44
45 if (i->val)
46 {
47 arguments[i->name] = (i->has_arg ? optarg : trueString);
48 }
49 }
50}
51
52const std::string& ArgumentParser::operator[](const std::string& opt)
53{
54 auto i = arguments.find(opt);
55 if (i == arguments.end())
56 {
57 return emptyString;
58 }
59 else
60 {
61 return i->second;
62 }
63}
64
65void ArgumentParser::usage(char** argv)
66{
67 std::cerr << "Usage: " << argv[0] << " [options]\n";
68 std::cerr << "Options:\n";
69 std::cerr << " --help Print this menu\n";
70 std::cerr << " --source=<source> The source unit to monitor\n";
71 std::cerr << " --target=<target> The target unit to start or stop\n";
72 std::cerr << " --action=<action> Target unit action - start or stop\n";
73 std::cerr << std::flush;
74}
75
Ed Tanous167e2372018-05-07 11:59:10 -070076const option ArgumentParser::options[] = {
77 {"source", required_argument, NULL, 's'},
78 {"action", required_argument, NULL, 'a'},
79 {"target", required_argument, NULL, 't'},
80 {"help", no_argument, NULL, 'h'},
81 {0, 0, 0, 0},
Matt Spinler8b633b72017-06-02 12:35:59 -050082};
83
84const char* ArgumentParser::optionStr = "s:a:t:h?";
85
86const std::string ArgumentParser::trueString = "true";
87const std::string ArgumentParser::emptyString = "";
Matt Spinler8b633b72017-06-02 12:35:59 -050088}
89}
90}