blob: e4c22dcfe55f5de6d0e00557704b381725692c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// file : butl/diagnostics.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <butl/diagnostics>
#include <iostream> // cerr
using namespace std;
namespace butl
{
ostream* diag_stream = &cerr;
void diag_record::
flush () const
{
if (!empty_)
{
*diag_stream << os.str () << endl;
empty_ = true;
if (epilogue_ != nullptr)
epilogue_ (*this); // Can throw.
}
}
diag_record::
~diag_record () noexcept (false)
{
// Don't flush the record if this destructor was called as part of
// the stack unwinding. Right now this means we cannot use this
// mechanism in destructors, which is not a big deal, except for
// one place: exception_guard. So for now we are going to have
// this ugly special check which we will be able to get rid of
// once C++17 uncaught_exceptions() becomes available.
//
if (!std::uncaught_exception () || exception_unwinding_dtor)
flush ();
}
}
|