aboutsummaryrefslogtreecommitdiff
path: root/libbuild2
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2')
-rw-r--r--libbuild2/diagnostics.hxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/libbuild2/diagnostics.hxx b/libbuild2/diagnostics.hxx
index 1659a09..e619f86 100644
--- a/libbuild2/diagnostics.hxx
+++ b/libbuild2/diagnostics.hxx
@@ -71,6 +71,18 @@ namespace build2
bool force = false,
fdstream_mode mode = fdstream_mode::skip);
+ // Check whether the buffer has been opened with the open() call and
+ // hasn't yet been closed.
+ //
+ // Note that this function returning true does not mean that the pipe was
+ // opened (to check that, call is_open() on the `is` member below).
+ //
+ bool
+ is_open () const
+ {
+ return state_ != state::closed;
+ }
+
// Read the diagnostics from the parent end of the pipe if one was opened
// and buffer/stream it as necessary. Return true if there could be more
// diagnostics to read (only possible in the non-blocking mode).