forked from XRPLF/rippled
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJournal.h
438 lines (351 loc) · 11.8 KB
/
Journal.h
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
//------------------------------------------------------------------------------
/*
This file is part of Beast: https://github.com/vinniefalco/Beast
Copyright 2013, Vinnie Falco <[email protected]>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================
#ifndef BEAST_UTILITY_JOURNAL_H_INCLUDED
#define BEAST_UTILITY_JOURNAL_H_INCLUDED
#include <cassert>
#include <sstream>
namespace beast {
/** A namespace for easy access to logging severity values. */
namespace severities
{
/** Severity level / threshold of a Journal message. */
enum Severity
{
kAll = 0,
kTrace = kAll,
kDebug,
kInfo,
kWarning,
kError,
kFatal,
kDisabled,
kNone = kDisabled
};
}
/** A generic endpoint for log messages.
The Journal has a few simple goals:
* To be light-weight and copied by value.
* To allow logging statements to be left in source code.
* The logging is controlled at run-time based on a logging threshold.
It is advisable to check Journal::active(level) prior to formatting log
text. Doing so sidesteps expensive text formatting when the results
will not be sent to the log.
*/
class Journal
{
public:
class Sink;
private:
// Severity level / threshold of a Journal message.
using Severity = severities::Severity;
Sink* m_sink;
public:
//--------------------------------------------------------------------------
/** Abstraction for the underlying message destination. */
class Sink
{
protected:
Sink () = delete;
explicit Sink(Sink const& sink) = default;
Sink (Severity thresh, bool console);
Sink& operator= (Sink const& lhs) = delete;
public:
virtual ~Sink () = 0;
/** Returns `true` if text at the passed severity produces output. */
virtual bool active (Severity level) const;
/** Returns `true` if a message is also written to the Output Window (MSVC). */
virtual bool console () const;
/** Set whether messages are also written to the Output Window (MSVC). */
virtual void console (bool output);
/** Returns the minimum severity level this sink will report. */
virtual Severity threshold() const;
/** Set the minimum severity this sink will report. */
virtual void threshold (Severity thresh);
/** Write text to the sink at the specified severity.
A conforming implementation will not write the text if the passed
level is below the current threshold().
*/
virtual void write (Severity level, std::string const& text) = 0;
private:
Severity thresh_;
bool m_console;
};
#ifndef __INTELLISENSE__
static_assert(std::is_default_constructible<Sink>::value == false, "");
static_assert(std::is_copy_constructible<Sink>::value == false, "");
static_assert(std::is_move_constructible<Sink>::value == false, "");
static_assert(std::is_copy_assignable<Sink>::value == false, "");
static_assert(std::is_move_assignable<Sink>::value == false, "");
static_assert(std::is_nothrow_destructible<Sink>::value == true, "");
#endif
/** Returns a Sink which does nothing. */
static Sink& getNullSink ();
//--------------------------------------------------------------------------
class Stream;
private:
/* Scoped ostream-based container for writing messages to a Journal. */
class ScopedStream
{
public:
ScopedStream (ScopedStream const& other)
: ScopedStream (other.m_sink, other.m_level)
{ }
ScopedStream (Sink& sink, Severity level);
template <typename T>
ScopedStream (Stream const& stream, T const& t);
ScopedStream (
Stream const& stream, std::ostream& manip (std::ostream&));
ScopedStream& operator= (ScopedStream const&) = delete;
~ScopedStream ();
std::ostringstream& ostream () const
{
return m_ostream;
}
std::ostream& operator<< (
std::ostream& manip (std::ostream&)) const;
template <typename T>
std::ostream& operator<< (T const& t) const;
private:
Sink& m_sink;
Severity const m_level;
std::ostringstream mutable m_ostream;
};
#ifndef __INTELLISENSE__
static_assert(std::is_default_constructible<ScopedStream>::value == false, "");
static_assert(std::is_copy_constructible<ScopedStream>::value == true, "");
static_assert(std::is_move_constructible<ScopedStream>::value == true, "");
static_assert(std::is_copy_assignable<ScopedStream>::value == false, "");
static_assert(std::is_move_assignable<ScopedStream>::value == false, "");
static_assert(std::is_nothrow_destructible<ScopedStream>::value == true, "");
#endif
//--------------------------------------------------------------------------
public:
/** Provide a light-weight way to check active() before string formatting */
class Stream
{
public:
/** Create a stream which produces no output. */
explicit Stream ()
: m_sink (getNullSink())
, m_level (severities::kDisabled)
{ }
/** Create a stream that writes at the given level.
Constructor is inlined so checking active() very inexpensive.
*/
Stream (Sink& sink, Severity level)
: m_sink (sink)
, m_level (level)
{
assert (m_level < severities::kDisabled);
}
/** Construct or copy another Stream. */
Stream (Stream const& other)
: Stream (other.m_sink, other.m_level)
{ }
Stream& operator= (Stream const& other) = delete;
/** Returns the Sink that this Stream writes to. */
Sink& sink() const
{
return m_sink;
}
/** Returns the Severity level of messages this Stream reports. */
Severity level() const
{
return m_level;
}
/** Returns `true` if sink logs anything at this stream's level. */
/** @{ */
bool active() const
{
return m_sink.active (m_level);
}
explicit
operator bool() const
{
return active();
}
/** @} */
/** Output stream support. */
/** @{ */
ScopedStream operator<< (std::ostream& manip (std::ostream&)) const;
template <typename T>
ScopedStream operator<< (T const& t) const;
/** @} */
private:
Sink& m_sink;
Severity m_level;
};
#ifndef __INTELLISENSE__
static_assert(std::is_default_constructible<Stream>::value == true, "");
static_assert(std::is_copy_constructible<Stream>::value == true, "");
static_assert(std::is_move_constructible<Stream>::value == true, "");
static_assert(std::is_copy_assignable<Stream>::value == false, "");
static_assert(std::is_move_assignable<Stream>::value == false, "");
static_assert(std::is_nothrow_destructible<Stream>::value == true, "");
#endif
//--------------------------------------------------------------------------
/** Create a journal that writes to the null sink. */
Journal ()
: Journal (getNullSink())
{ }
/** Create a journal that writes to the specified sink. */
explicit Journal (Sink& sink)
: m_sink (&sink)
{ }
/** Create a journal from another journal. */
Journal (Journal const& other)
: Journal (other.sink())
{ }
/** Destroy the journal. */
~Journal () = default;
/** Returns the Sink associated with this Journal. */
Sink& sink() const
{
return *m_sink;
}
/** Returns a stream for this sink, with the specified severity level. */
Stream stream (Severity level) const
{
return Stream (*m_sink, level);
}
/** Returns `true` if any message would be logged at this severity level.
For a message to be logged, the severity must be at or above the
sink's severity threshold.
*/
bool active (Severity level) const
{
return m_sink->active (level);
}
/** Severity stream access functions. */
/** @{ */
Stream trace() const
{
return { *m_sink, severities::kTrace };
}
Stream debug() const
{
return { *m_sink, severities::kDebug };
}
Stream info() const
{
return { *m_sink, severities::kInfo };
}
Stream warn() const
{
return { *m_sink, severities::kWarning };
}
Stream error() const
{
return { *m_sink, severities::kError };
}
Stream fatal() const
{
return { *m_sink, severities::kFatal };
}
/** @} */
};
#ifndef __INTELLISENSE__
static_assert(std::is_default_constructible<Journal>::value == true, "");
static_assert(std::is_copy_constructible<Journal>::value == true, "");
static_assert(std::is_move_constructible<Journal>::value == true, "");
static_assert(std::is_copy_assignable<Journal>::value == true, "");
static_assert(std::is_move_assignable<Journal>::value == true, "");
static_assert(std::is_nothrow_destructible<Journal>::value == true, "");
#endif
//------------------------------------------------------------------------------
template <typename T>
Journal::ScopedStream::ScopedStream (Journal::Stream const& stream, T const& t)
: ScopedStream (stream.sink(), stream.level())
{
m_ostream << t;
}
template <typename T>
std::ostream&
Journal::ScopedStream::operator<< (T const& t) const
{
m_ostream << t;
return m_ostream;
}
//------------------------------------------------------------------------------
template <typename T>
Journal::ScopedStream
Journal::Stream::operator<< (T const& t) const
{
return ScopedStream (*this, t);
}
namespace detail {
template<class CharT, class Traits = std::char_traits<CharT>>
class logstream_buf
: public std::basic_stringbuf<CharT, Traits>
{
beast::Journal::Stream strm_;
template<class T>
void write(T const*) = delete;
void write(char const* s)
{
if(strm_)
strm_ << s;
}
void write(wchar_t const* s)
{
if(strm_)
strm_ << s;
}
public:
explicit
logstream_buf(beast::Journal::Stream const& strm)
: strm_(strm)
{
}
~logstream_buf()
{
sync();
}
int
sync() override
{
write(this->str().c_str());
this->str("");
return 0;
}
};
} // detail
template<
class CharT,
class Traits = std::char_traits<CharT>
>
class basic_logstream
: public std::basic_ostream<CharT, Traits>
{
typedef CharT char_type;
typedef Traits traits_type;
typedef typename traits_type::int_type int_type;
typedef typename traits_type::pos_type pos_type;
typedef typename traits_type::off_type off_type;
detail::logstream_buf<CharT, Traits> buf_;
public:
explicit
basic_logstream(beast::Journal::Stream const& strm)
: std::basic_ostream<CharT, Traits>(&buf_)
, buf_(strm)
{
}
};
using logstream = basic_logstream<char>;
using logwstream = basic_logstream<wchar_t>;
} // beast
#endif