1 /** 2 * Copyright © 2018 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 "argument.hpp" 17 18 #include <algorithm> 19 #include <iostream> 20 #include <iterator> 21 22 namespace phosphor 23 { 24 namespace network 25 { 26 namespace ncsi 27 { 28 29 ArgumentParser::ArgumentParser(int argc, char** argv) 30 { 31 int option = 0; 32 while (-1 != (option = getopt_long(argc, argv, optionStr, options, NULL))) 33 { 34 if ((option == '?') || (option == 'h')) 35 { 36 usage(argv); 37 exit(-1); 38 } 39 40 auto i = &options[0]; 41 while ((i->val != option) && (i->val != 0)) 42 { 43 ++i; 44 } 45 46 if (i->val) 47 { 48 arguments[i->name] = (i->has_arg ? optarg : trueString); 49 } 50 } 51 } 52 53 const std::string& ArgumentParser::operator[](const std::string& opt) 54 { 55 auto i = arguments.find(opt); 56 if (i == arguments.end()) 57 { 58 return emptyString; 59 } 60 else 61 { 62 return i->second; 63 } 64 } 65 66 void ArgumentParser::usage(char** argv) 67 { 68 std::cerr << "Usage: " << argv[0] << " [options]\n"; 69 std::cerr << "Options:\n"; 70 std::cerr << " --help Print this menu.\n"; 71 std::cerr << " --info=<info> Retrieve info about NCSI topology.\n"; 72 std::cerr << " --set=<set> Set a specific package/channel.\n"; 73 std::cerr 74 << " --clear=<clear> Clear all the settings on the interface.\n"; 75 std::cerr 76 << " --oem-payload=<hex data> Send an OEM command with payload.\n"; 77 std::cerr << " --package=<package> Specify a package.\n"; 78 std::cerr << " --channel=<channel> Specify a channel.\n"; 79 std::cerr << " --index=<device index> Specify device ifindex.\n"; 80 std::cerr << std::flush; 81 } 82 83 const option ArgumentParser::options[] = { 84 {"info", no_argument, NULL, 'i'}, 85 {"set", no_argument, NULL, 's'}, 86 {"clear", no_argument, NULL, 'r'}, 87 {"oem-payload", required_argument, NULL, 'o'}, 88 {"package", required_argument, NULL, 'p'}, 89 {"channel", required_argument, NULL, 'c'}, 90 {"index", required_argument, NULL, 'x'}, 91 {"help", no_argument, NULL, 'h'}, 92 {0, 0, 0, 0}, 93 }; 94 95 const char* ArgumentParser::optionStr = "i:s:r:o:p:c:x:h?"; 96 97 const std::string ArgumentParser::trueString = "true"; 98 const std::string ArgumentParser::emptyString = ""; 99 100 } // namespace ncsi 101 } // namespace network 102 } // namespace phosphor 103