summaryrefslogtreecommitdiffstats
path: root/argument.cpp
diff options
context:
space:
mode:
authorPatrick Venture <venture@google.com>2018-11-01 16:52:10 -0700
committerPatrick Venture <venture@google.com>2018-11-01 16:59:54 -0700
commitdace680fa404d7c02a68db105fd7b958b4681442 (patch)
tree6d447ced41a2d1ef9bbd8206d52099609cd973d1 /argument.cpp
parent3c4a23e7764c7785d18cb30340a6d185022a797a (diff)
downloadphosphor-gpio-monitor-dace680fa404d7c02a68db105fd7b958b4681442.tar.gz
phosphor-gpio-monitor-dace680fa404d7c02a68db105fd7b958b4681442.zip
Add clang-format to repo
Add clang-format to repo. Change-Id: I3f8704d80dd0bdde0706ab189c68cffe6d347995 Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'argument.cpp')
-rw-r--r--argument.cpp35
1 files changed, 18 insertions, 17 deletions
diff --git a/argument.cpp b/argument.cpp
index 3a59f68..74bdda2 100644
--- a/argument.cpp
+++ b/argument.cpp
@@ -14,11 +14,12 @@
* limitations under the License.
*/
-#include <iostream>
-#include <iterator>
+#include "argument.hpp"
+
#include <algorithm>
#include <cassert>
-#include "argument.hpp"
+#include <iostream>
+#include <iterator>
namespace phosphor
{
@@ -31,21 +32,21 @@ const std::string ArgumentParser::trueString = "true"s;
const std::string ArgumentParser::emptyString = ""s;
const char* ArgumentParser::optionStr = "p:k:r:t:?h";
-const option ArgumentParser::options[] =
-{
- { "path", required_argument, nullptr, 'p' },
- { "key", required_argument, nullptr, 'k' },
- { "polarity", required_argument, nullptr, 'r' },
- { "target", required_argument, nullptr, 't' },
- { "continue", no_argument, nullptr, 'c' },
- { "help", no_argument, nullptr, 'h' },
- { 0, 0, 0, 0},
+const option ArgumentParser::options[] = {
+ {"path", required_argument, nullptr, 'p'},
+ {"key", required_argument, nullptr, 'k'},
+ {"polarity", required_argument, nullptr, 'r'},
+ {"target", required_argument, nullptr, 't'},
+ {"continue", no_argument, nullptr, 'c'},
+ {"help", no_argument, nullptr, 'h'},
+ {0, 0, 0, 0},
};
ArgumentParser::ArgumentParser(int argc, char** argv)
{
int option = 0;
- while (-1 != (option = getopt_long(argc, argv, optionStr, options, nullptr)))
+ while (-1 !=
+ (option = getopt_long(argc, argv, optionStr, options, nullptr)))
{
if ((option == '?') || (option == 'h'))
{
@@ -88,14 +89,14 @@ void ArgumentParser::usage(char** argv)
std::cerr << "Options:\n";
std::cerr << " --help Print this menu\n";
std::cerr << " --path=<path> Path of input device."
- " Ex: /dev/input/event2\n";
+ " Ex: /dev/input/event2\n";
std::cerr << " --key=<key> Input GPIO key number\n";
std::cerr << " --polarity=<polarity> Asertion polarity to look for."
- " This is 0 / 1 \n";
+ " This is 0 / 1 \n";
std::cerr << " --target=<systemd unit> Systemd unit to be called on GPIO"
- " state change\n";
+ " state change\n";
std::cerr << " [--continue] Whether or not to continue"
- " after key pressed\n";
+ " after key pressed\n";
}
} // namespace gpio
} // namespace phosphor
OpenPOWER on IntegriCloud