Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 1 | /** |
| 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 | */ |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 16 | #include "argument.hpp" |
| 17 | |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 18 | #include <algorithm> |
| 19 | #include <cassert> |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 20 | #include <iostream> |
| 21 | #include <iterator> |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 22 | |
Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 23 | namespace phosphor |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 24 | { |
| 25 | namespace power |
| 26 | { |
| 27 | |
| 28 | ArgumentParser::ArgumentParser(int argc, char** argv) |
| 29 | { |
| 30 | auto 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 | |
| 52 | const 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 | |
| 65 | void ArgumentParser::usage(char** argv) |
| 66 | { |
| 67 | std::cerr << "Usage: " << argv[0] << " [options]\n"; |
| 68 | std::cerr << "Options:\n"; |
Matt Spinler | 15b5f40 | 2018-01-18 14:37:34 -0600 | [diff] [blame] | 69 | std::cerr << " --help Print this menu\n"; |
| 70 | std::cerr << " --path=<objpath> Path to location to" |
| 71 | " monitor\n"; |
| 72 | std::cerr << " --instance=<instance number> Instance number for" |
| 73 | " this power supply\n"; |
| 74 | std::cerr << " --inventory=<inventory path> Inventory path for" |
| 75 | " this power supply\n"; |
| 76 | std::cerr << " --num-history-records=<num records> Number of input" |
| 77 | " power history records to provide on D-Bus\n"; |
| 78 | std::cerr << " --sync-gpio-path=<path> GPIO chip device" |
| 79 | " for the GPIO that performs the sync function\n"; |
| 80 | std::cerr << " --sync-gpio-num=<path> GPIO number for the" |
| 81 | " GPIO that performs the sync function\n"; |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 82 | std::cerr << std::flush; |
| 83 | } |
| 84 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 85 | const option ArgumentParser::options[] = { |
| 86 | {"path", required_argument, NULL, 'p'}, |
| 87 | {"instance", required_argument, NULL, 'n'}, |
| 88 | {"inventory", required_argument, NULL, 'i'}, |
| 89 | {"num-history-records", required_argument, NULL, 'r'}, |
| 90 | {"sync-gpio-path", required_argument, NULL, 'a'}, |
| 91 | {"sync-gpio-num", required_argument, NULL, 'u'}, |
| 92 | {"help", no_argument, NULL, 'h'}, |
| 93 | {0, 0, 0, 0}, |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 94 | }; |
| 95 | |
Matt Spinler | 15b5f40 | 2018-01-18 14:37:34 -0600 | [diff] [blame] | 96 | const char* ArgumentParser::optionStr = "p:n:i:r:a:u:h"; |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 97 | |
| 98 | const std::string ArgumentParser::trueString = "true"; |
| 99 | const std::string ArgumentParser::emptyString = ""; |
| 100 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 101 | } // namespace power |
Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 102 | } // namespace phosphor |