aboutsummaryrefslogtreecommitdiff
path: root/bbot/types-parsers.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-04-01 16:46:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-04-01 16:46:03 +0200
commita133e7b03bd67c992cfb240bd300967ffab31ba2 (patch)
tree02c54f4c9b7f48aeb5230e230a4bb00bb1609c2c /bbot/types-parsers.cxx
parent2ae123ce8e8a874ada7e8c776abfc0742d862277 (diff)
Setup build infra
Diffstat (limited to 'bbot/types-parsers.cxx')
-rw-r--r--bbot/types-parsers.cxx51
1 files changed, 51 insertions, 0 deletions
diff --git a/bbot/types-parsers.cxx b/bbot/types-parsers.cxx
new file mode 100644
index 0000000..6a0e899
--- /dev/null
+++ b/bbot/types-parsers.cxx
@@ -0,0 +1,51 @@
+// file : bbot/types-parsers.cxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#include <bbot/types-parsers>
+
+#include <bbot/common-options> // bbot::cli namespace
+
+namespace bbot
+{
+ namespace cli
+ {
+ template <typename T>
+ static void
+ parse_path (T& x, scanner& s)
+ {
+ const char* o (s.next ());
+
+ if (!s.more ())
+ throw missing_value (o);
+
+ const char* v (s.next ());
+
+ try
+ {
+ x = T (v);
+
+ if (x.empty ())
+ throw invalid_value (o, v);
+ }
+ catch (const invalid_path&)
+ {
+ throw invalid_value (o, v);
+ }
+ }
+
+ void parser<path>::
+ parse (path& x, bool& xs, scanner& s)
+ {
+ xs = true;
+ parse_path (x, s);
+ }
+
+ void parser<dir_path>::
+ parse (dir_path& x, bool& xs, scanner& s)
+ {
+ xs = true;
+ parse_path (x, s);
+ }
+ }
+}