From 977d07a3ae47ef204665d1eda2d642e5064724f3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 24 Jun 2019 12:01:19 +0200 Subject: Split build system into library and driver --- libbuild2/target-state.hxx | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 libbuild2/target-state.hxx (limited to 'libbuild2/target-state.hxx') diff --git a/libbuild2/target-state.hxx b/libbuild2/target-state.hxx new file mode 100644 index 0000000..5bc6895 --- /dev/null +++ b/libbuild2/target-state.hxx @@ -0,0 +1,46 @@ +// file : libbuild2/target-state.hxx -*- C++ -*- +// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef LIBBUILD2_TARGET_STATE_HXX +#define LIBBUILD2_TARGET_STATE_HXX + +#include +#include + +#include + +namespace build2 +{ + // The order of the enumerators is arranged so that their integral values + // indicate whether one "overrides" the other in the "merge" operator| + // (see below). + // + // Note that postponed is "greater" than unchanged since it may result in + // the changed state. + // + enum class target_state: uint8_t + { + unknown, + unchanged, + postponed, + busy, + changed, + failed, + group // Target's state is the group's state. + }; + + inline target_state& + operator |= (target_state& l, target_state r) + { + if (static_cast (r) > static_cast (l)) + l = r; + + return l; + } + + LIBBUILD2_SYMEXPORT ostream& + operator<< (ostream&, target_state); // target.cxx +} + +#endif // LIBBUILD2_TARGET_STATE_HXX -- cgit v1.1