aboutsummaryrefslogtreecommitdiff
path: root/libbutl
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-11-08 10:57:29 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-11-08 10:57:29 +0200
commit970e678f8a2266088f8610a2057111d211b943c1 (patch)
treeb62f99b8b5c6c5210e5f1dab5477af27820b76e9 /libbutl
parent983bdf3dd434fd60dfdfa0fe1fda5761b57b4519 (diff)
Pass writer to diagnostics epilogue
Diffstat (limited to 'libbutl')
-rw-r--r--libbutl/diagnostics.cxx6
-rw-r--r--libbutl/diagnostics.hxx13
2 files changed, 9 insertions, 10 deletions
diff --git a/libbutl/diagnostics.cxx b/libbutl/diagnostics.cxx
index 3254e27..6ac8192 100644
--- a/libbutl/diagnostics.cxx
+++ b/libbutl/diagnostics.cxx
@@ -154,7 +154,7 @@ namespace butl
diag_stream->flush ();
}
- void (*diag_record::writer) (const diag_record&) = &default_writer;
+ diag_writer* diag_record::writer = &default_writer;
void diag_record::
flush (void (*w) (const diag_record&)) const
@@ -174,8 +174,8 @@ namespace butl
//
auto e (epilogue_);
epilogue_ = nullptr;
- e (*this); // Can throw. @@ TODO: pass writer.
- flush (w); // Call ourselves to write the data in case it returns.
+ e (*this, w); // Can throw.
+ flush (w); // Call ourselves to write the data in case it returns.
}
}
}
diff --git a/libbutl/diagnostics.hxx b/libbutl/diagnostics.hxx
index 574695c..d805c20 100644
--- a/libbutl/diagnostics.hxx
+++ b/libbutl/diagnostics.hxx
@@ -95,7 +95,8 @@ namespace butl
template <typename> struct diag_prologue;
template <typename> struct diag_mark;
- using diag_epilogue = void (const diag_record&);
+ using diag_writer = void (const diag_record&);
+ using diag_epilogue = void (const diag_record&, diag_writer*);
struct LIBBUTL_SYMEXPORT diag_record
{
@@ -131,10 +132,8 @@ namespace butl
bool
full () const {return !empty_;}
- // Note that currently the passed writer is not passed to the epilogue.
- //
void
- flush (void (*writer) (const diag_record&) = nullptr) const;
+ flush (diag_writer* = nullptr) const;
void
append (const char* indent, diag_epilogue* e) const
@@ -185,7 +184,7 @@ namespace butl
// Diagnostics writer. The default implementation writes the record text
// to diag_stream. If it is NULL, then the record text is ignored.
//
- static void (*writer) (const diag_record&);
+ static diag_writer* writer;
protected:
#ifdef __cpp_lib_uncaught_exceptions
@@ -320,10 +319,10 @@ namespace butl
stack (prev_);
}
- // Normally passed as an epilogue.
+ // Normally passed as an epilogue. Writer is not used.
//
static void
- apply (const diag_record& r)
+ apply (const diag_record& r, diag_writer* = nullptr)
{
for (const diag_frame* f (stack ()); f != nullptr; f = f->prev_)
f->func_ (*f, r);