aboutsummaryrefslogtreecommitdiff
path: root/build/operation
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-03-20 13:21:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-03-20 13:21:18 +0200
commiteaaa82bd9c1e24a83dcea3857f5fd75d0dfb6de5 (patch)
tree9d849682e5c8fb971382843064ea0c286d753cba /build/operation
parentb6e72877a1a26a6ae16961728ee57e45f657f717 (diff)
New consolidated load/match/build loop
Diffstat (limited to 'build/operation')
-rw-r--r--build/operation58
1 files changed, 41 insertions, 17 deletions
diff --git a/build/operation b/build/operation
index 3d9c7e0..3469f21 100644
--- a/build/operation
+++ b/build/operation
@@ -6,8 +6,9 @@
#define BUILD_OPERATION
#include <string>
-#include <cstdint>
#include <iosfwd>
+#include <cstdint>
+#include <functional> // reference_wrapper
#include <build/string-table>
@@ -49,11 +50,13 @@ namespace build
// Id constants for build-in operations.
//
const meta_operation_id perform_id = 1;
- const meta_operation_id configure_id = 2;
- const meta_operation_id disfigure_id = 3;
- const operation_id update_id = 1;
- const operation_id clean_id = 2;
+ // The default operation is a special marker that can be used to
+ // indicate that no operation was explicitly specified by the user.
+ //
+ const operation_id default_id = 1;
+ const operation_id update_id = 2;
+ const operation_id clean_id = 3;
const action_id perform_update_id = (perform_id << 4) | update_id;
const action_id perform_clean_id = (perform_id << 4) | clean_id;
@@ -101,31 +104,52 @@ namespace build
//
enum class execution_mode {first, last};
- // Meta/operation tables.
+ // Meta/operation info.
//
struct meta_operation_info
{
const std::string name;
-
- const std::string&
- key () const {return name;} // string_table interface.
};
+ // Built-in meta-operations.
+ //
+ extern meta_operation_info perform;
+
struct operation_info
{
const std::string name;
const execution_mode mode;
-
- const std::string&
- key () const {return name;} // string_table interface.
};
- using meta_operation_table = string_table<meta_operation_id,
- meta_operation_info>;
- using operation_table = string_table<operation_id, operation_info>;
+ // Build-in operations.
+ //
+ extern operation_info default_;
+ extern operation_info update;
+ extern operation_info clean;
+
+ // Meta/operation tables.
+ //
+ using meta_operation_table = string_table<
+ meta_operation_id,
+ std::reference_wrapper<const meta_operation_info>>;
- extern meta_operation_table meta_operations;
- extern operation_table operations;
+ using operation_table = string_table<
+ operation_id,
+ std::reference_wrapper<const operation_info>>;
+
+ template <>
+ struct string_table_traits<std::reference_wrapper<const meta_operation_info>>
+ {
+ static const std::string&
+ key (const meta_operation_info& x) {return x.name;}
+ };
+
+ template <>
+ struct string_table_traits<std::reference_wrapper<const operation_info>>
+ {
+ static const std::string&
+ key (const operation_info& x) {return x.name;}
+ };
}
#endif // BUILD_OPERATION