libwreport  3.29
notes.h
1 #ifndef WREPORT_NOTES_H
2 #define WREPORT_NOTES_H
3 
4 #include <iosfwd>
5 
6 #ifndef WREPORT_PRINTF_ATTRS
7 #define WREPORT_PRINTF_ATTRS(a, b) __attribute__ ((format(printf, a, b)))
8 #endif
9 
10 namespace wreport {
11 
18 namespace notes {
19 
21 void set_target(std::ostream& out);
22 
24 std::ostream* get_target();
25 
27 bool logs() throw ();
28 
30 std::ostream& log() throw ();
31 
33 void logf(const char* fmt, ...) WREPORT_PRINTF_ATTRS(1, 2);
34 
41 struct Collect
42 {
46  std::ostream* old;
47 
49  Collect(std::ostream& out)
50  {
51  old = get_target();
52  set_target(out);
53  }
54  ~Collect()
55  {
56  set_target(*old);
57  }
58 };
59 
60 }
61 }
62 
63 #endif
wreport::notes::get_target
std::ostream * get_target()
Get the current target stream for notes.
wreport::notes::logs
bool logs()
Return true if there is any target to which notes are sent.
wreport::notes::set_target
void set_target(std::ostream &out)
Set the target stream where the notes are sent.
wreport::notes::Collect
RAII way to temporarily set a notes target.
Definition: notes.h:42
wreport::notes::Collect::Collect
Collect(std::ostream &out)
Direct notes to out for the lifetime of the object.
Definition: notes.h:49
wreport::notes::logf
void logf(const char *fmt,...) WREPORT_PRINTF_ATTRS(1
printf-style logging
wreport
String functions.
Definition: benchmark.h:13
wreport::notes::Collect::old
std::ostream * old
Old target stream to be restored whemn the object goes out of scope.
Definition: notes.h:46
wreport::notes::log
std::ostream & log()
Output stream to send notes to.