aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/script/token.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-05-07 22:30:17 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-05-17 17:48:32 +0300
commite5827facbfbfe90eae1b71c355a08bf61e2f6e1a (patch)
treebae45ffd2dedcf8dcf2f67fda91878d17d9233a4 /libbuild2/script/token.hxx
parentdb47f3b176421d4325c3439ae54a3cabf953ae7b (diff)
Factor out generic script parsing/executing functionality from build2::test::script namespace
Diffstat (limited to 'libbuild2/script/token.hxx')
-rw-r--r--libbuild2/script/token.hxx56
1 files changed, 56 insertions, 0 deletions
diff --git a/libbuild2/script/token.hxx b/libbuild2/script/token.hxx
new file mode 100644
index 0000000..0630e46
--- /dev/null
+++ b/libbuild2/script/token.hxx
@@ -0,0 +1,56 @@
+// file : libbuild2/script/token.hxx -*- C++ -*-
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBBUILD2_SCRIPT_TOKEN_HXX
+#define LIBBUILD2_SCRIPT_TOKEN_HXX
+
+#include <libbuild2/types.hxx>
+#include <libbuild2/utility.hxx>
+
+#include <libbuild2/token.hxx>
+
+namespace build2
+{
+ namespace script
+ {
+ struct token_type: build2::token_type
+ {
+ using base_type = build2::token_type;
+
+ enum
+ {
+ // NOTE: remember to update token_printer()!
+
+ pipe = base_type::value_next, // |
+ clean, // &{?!} (modifiers in value)
+
+ in_pass, // <|
+ in_null, // <-
+ in_str, // <{:/} (modifiers in value)
+ in_doc, // <<{:/} (modifiers in value)
+ in_file, // <<<
+
+ out_pass, // >|
+ out_null, // >-
+ out_trace, // >!
+ out_merge, // >&
+ out_str, // >{:/~} (modifiers in value)
+ out_doc, // >>{:/~} (modifiers in value)
+ out_file_cmp, // >>>
+ out_file_ovr, // >=
+ out_file_app, // >+
+
+ value_next
+ };
+
+ token_type () = default;
+ token_type (value_type v): base_type (v) {}
+ token_type (base_type v): base_type (v) {}
+ };
+
+ void
+ token_printer (ostream&, const token&, bool);
+ }
+}
+
+#endif // LIBBUILD2_SCRIPT_TOKEN_HXX