diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-27 15:11:40 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-27 15:11:40 +0200 |
commit | fd689eb883655dcb29e505b041cd02fac01f0bac (patch) | |
tree | 0d85ec32d95a1c96eaa7eff28734b900c44dd3ca /build/operation | |
parent | 7f2d06258d57e39940e8fa959336da0ea66fe37f (diff) |
Dist module/meta-operation initial implementation
Diffstat (limited to 'build/operation')
-rw-r--r-- | build/operation | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/build/operation b/build/operation index 286e003..8aeede6 100644 --- a/build/operation +++ b/build/operation @@ -109,10 +109,12 @@ namespace build const meta_operation_id configure_id = 2; const meta_operation_id disfigure_id = 3; + const meta_operation_id dist_id = 4; + // 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 default_id = 1; // Shall be first. const operation_id update_id = 2; const operation_id clean_id = 3; @@ -210,7 +212,7 @@ namespace build void (*match) (action, action_targets&); - void (*execute) (action, const action_targets&); + void (*execute) (action, const action_targets&, bool quiet); void (*operation_post) (operation_id); // End of operation batch. void (*meta_operation_post) (); // End of meta-operation batch. @@ -245,10 +247,10 @@ namespace build // Execute the action on the list of targets. This is the default // implementation that does just that while issuing appropriate - // diagnostics. + // diagnostics (unless quiet). // void - execute (action, const action_targets&); + execute (action, const action_targets&, bool quiet); extern meta_operation_info perform; @@ -342,6 +344,11 @@ namespace build bool empty () const {return v_.empty ();} + // Note that this is more of a "max index" rather than size. + // + size_type + size () const {return v_.size ();} + private: base_type v_; }; |