From 630dc4ccf3207f7cdd5b410582e1e572081b80e8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 16 Dec 2017 09:43:38 +0200 Subject: Add support for structured result output (--structured-result) --- build2/b.cxx | 115 ++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 94 insertions(+), 21 deletions(-) (limited to 'build2/b.cxx') diff --git a/build2/b.cxx b/build2/b.cxx index a88d1c0..0d88f5f 100644 --- a/build2/b.cxx +++ b/build2/b.cxx @@ -57,12 +57,67 @@ namespace build2 { int main (int argc, char* argv[]); -} -int -main (int argc, char* argv[]) -{ - return build2::main (argc, argv); + // Structured result printer (--structured-result mode). + // + class result_printer + { + public: + result_printer (const action_targets& tgs): tgs_ (tgs) {} + ~result_printer (); + + private: + const action_targets& tgs_; + }; + + result_printer:: + ~result_printer () + { + // Let's do some sanity checking even when we are not in the structred + // output mode. + // + for (const action_target& at: tgs_) + { + switch (at.state) + { + case target_state::unknown: continue; // Not a target/no result. + case target_state::unchanged: + case target_state::changed: + case target_state::failed: break; // Valid states. + default: assert (false); + } + + if (ops.structured_result ()) + { + cout << at.state + << ' ' << current_mif->name + << ' ' << current_inner_oif->name; + + if (current_outer_oif != nullptr) + cout << '(' << current_outer_oif->name << ')'; + + // There are two ways one may wish to identify the target of the + // operation: as something specific but inherently non-portable (say, + // a filesystem path, for example c:\tmp\foo.exe) or as something + // regular that can be used to refer to a target in a portable way + // (for example, c:\tmp\exe{foo}; note that the directory part is + // still not portable). Which one should we use is a good question. + // Let's go with the portable one for now and see how it goes (we + // can always add a format version, e.g., --structured-result=2). + + // Set the stream verbosity to 0 to suppress extension printing by + // default (this can still be overriden by the target type's print + // function as is the case for file{}, for example). + // + uint16_t v (stream_verb (cout)); + stream_verb (cout, 0); + + cout << ' ' << at.as_target () << endl; + + stream_verb (cout, v); + } + } + } } int build2:: @@ -1143,33 +1198,43 @@ main (int argc, char* argv[]) action a (mid, pre_oid, oid); - // Run quiet. - // - if (mif->match != nullptr) - mif->match (mparams, a, tgs); + { + result_printer p (tgs); - if (mif->execute != nullptr && !ops.match_only ()) - mif->execute (mparams, a, tgs, true); + if (mif->match != nullptr) + mif->match (mparams, a, tgs); + + if (mif->execute != nullptr && !ops.match_only ()) + mif->execute (mparams, a, tgs, true /* quiet */); + } if (mif->operation_post != nullptr) mif->operation_post (mparams, pre_oid); l5 ([&]{trace << "end pre-operation batch " << pre_oif->name << ", id " << static_cast (pre_oid);}); + + tgs.reset (); } set_current_oif (*oif); action a (mid, oid, 0); - if (mif->match != nullptr) - mif->match (mparams, a, tgs); + { + result_printer p (tgs); - if (mif->execute != nullptr && !ops.match_only ()) - mif->execute (mparams, a, tgs, verb == 0); + if (mif->match != nullptr) + mif->match (mparams, a, tgs); + + if (mif->execute != nullptr && !ops.match_only ()) + mif->execute (mparams, a, tgs, ops.structured_result () /*quiet*/); + } if (post_oid != 0) { + tgs.reset (); + l5 ([&]{trace << "start post-operation batch " << post_oif->name << ", id " << static_cast (post_oid);}); @@ -1180,13 +1245,15 @@ main (int argc, char* argv[]) action a (mid, post_oid, oid); - // Run quiet. - // - if (mif->match != nullptr) - mif->match (mparams, a, tgs); + { + result_printer p (tgs); - if (mif->execute != nullptr && !ops.match_only ()) - mif->execute (mparams, a, tgs, true); + if (mif->match != nullptr) + mif->match (mparams, a, tgs); + + if (mif->execute != nullptr && !ops.match_only ()) + mif->execute (mparams, a, tgs, true /* quiet */); + } if (mif->operation_post != nullptr) mif->operation_post (mparams, post_oid); @@ -1248,3 +1315,9 @@ main (int argc, char* argv[]) return r; } + +int +main (int argc, char* argv[]) +{ + return build2::main (argc, argv); +} -- cgit v1.1