1[/
2              Copyright Andrey Semashev 2007 - 2016.
3     Distributed under the Boost Software License, Version 1.0.
4        (See accompanying file LICENSE_1_0.txt or copy at
5              http://www.boost.org/LICENSE_1_0.txt)
6
7    This document is a part of Boost.Log library documentation.
8/]
9
10[section:sink_backends Sink backends]
11
12[section:text_ostream Text stream backend]
13
14    #include <``[boost_log_sinks_text_ostream_backend_hpp]``>
15
16The text output stream sink backend is the most generic backend provided by the library out of the box. The backend is implemented in the [class_sinks_basic_text_ostream_backend] class template (`text_ostream_backend` and `wtext_ostream_backend` convenience typedefs provided for narrow and wide character support). It supports formatting log records into strings and putting into one or several streams. Each attached stream gets the same result of formatting, so if you need to format log records differently for different streams, you will need to create several sinks - each with its own formatter.
17
18The backend also provides a feature that may come useful when debugging your application. With the `auto_flush` method one can tell the sink to automatically flush the buffers of all attached streams after each log record is written. This will, of course, degrade logging performance, but in case of an application crash there is a good chance that last log records are not lost.
19
20[example_sinks_ostream]
21
22[endsect]
23
24[section:text_file Text file backend]
25
26    #include <``[boost_log_sinks_text_file_backend_hpp]``>
27
28Although it is possible to write logs into files with the [link log.detailed.sink_backends.text_ostream text stream backend] the library also offers a special sink backend with an extended set of features suitable for file-based logging. The features include:
29
30* Log file rotation based on file size and/or time
31* Flexible log file naming
32* Placing the rotated files into a special location in the file system
33* Deleting the oldest files in order to free more space on the file system
34* Similar to [link log.detailed.sink_backends.text_ostream text stream backend], the file sink backend also supports the auto-flush feature
35
36The backend is called [class_sinks_text_file_backend].
37
38[warning This sink uses __boost_filesystem__ internally, which may cause problems on process termination. See [link log.rationale.why_crash_on_term here] for more details.]
39
40[section:file_rotation File rotation]
41
42File rotation happens when the sink detects that one or more rotation conditions are met and a new file needs to be created. It is implemented by the sink backend and includes the following steps:
43
44# If the log file is currently open, invoke the [link log.detailed.sink_backends.text_file.open_close_handlers file close handler] and close the file.
45# If a target file name pattern is set, generate a new target file name and rename the log file to that generated name.
46# If a [link log.detailed.sink_backends.text_file.file_collection file collector] is configured, pass the log file to it for collection. At this point the file collector may remove older log files to free up some space and move the new file into the target storage.
47# When a new log record needs to be written, generate a new file name for the new file and create a file with that name. If [link log.detailed.sink_backends.text_file.appending file appending] is enabled and a file with that name exists, the file is opened in append mode instead of overwriting.
48
49It is important to note that there are three kinds of file names or paths involved in this process:
50
51* The file name that is used to create or open the log file to actively write to. This is called an /active/ file name and is specified by the `file_name` named parameter of the sink backend constructor or by calling the `set_file_name_pattern` method.
52* The file name that is generated when the log file is closed and about to be collected. This is called a /target/ file name, because it defines how the log files will be named in the target storage. Target file name is optional, it can be specified by the `target_file_name` named parameter or by calling the `set_target_file_name_pattern` method.
53* The target storage location, which is a directory with previously rotated log files, managed by a [link log.detailed.sink_backends.text_file.file_collection file collector]. Multiple sinks can share the same target storage.
54
55The file name patterns and rotation conditions can be specified when the [class_sinks_text_file_backend] backend is constructed.
56
57[example_sinks_file]
58
59[note The file size at rotation can be imprecise. The implementation counts the number of bytes written to the file, but the underlying API can introduce additional auxiliary data, which would increase the log file's actual size on disk. For instance, it is well known that Windows and DOS operating systems have a special treatment with regard to new-line characters. Each new-line character is written as a two byte sequence 0x0D 0x0A instead of a single 0x0A. Other platform-specific character translations are also known. The actual size on disk can also be less than the number of written characters on compressed filesystems.]
60
61The time-based rotation is not limited by only time points. There are following options available out of the box:
62
63# Time point rotations: [class_file_rotation_at_time_point] class. This kind of rotation takes place whenever the specified time point is reached. The following variants are available:
64
65    * Every day rotation, at the specified time. This is what was presented in the code snippet above:
66    ``
67        sinks::file::rotation_at_time_point(12, 0, 0)
68    ``
69
70    * Rotation on the specified day of every week, at the specified time. For instance, this will make file rotation to happen every Tuesday, at midnight:
71    ``
72        sinks::file::rotation_at_time_point(date_time::Tuesday, 0, 0, 0)
73    ``
74    in case of midnight, the time can be omitted:
75    ``
76        sinks::file::rotation_at_time_point(date_time::Tuesday)
77    ``
78
79    * Rotation on the specified day of each month, at the specified time. For example, this is how to rotate files on the 1-st of every month:
80    ``
81        sinks::file::rotation_at_time_point(gregorian::greg_day(1), 0, 0, 0)
82    ``
83    like with weekdays, midnight is implied:
84    ``
85        sinks::file::rotation_at_time_point(gregorian::greg_day(1))
86    ``
87
88# Time interval rotations: [class_file_rotation_at_time_interval] class. With this predicate the rotation is not bound to any time points and happens as soon as the specified time interval since the previous rotation elapses. This is how to make rotations every hour:
89``
90    sinks::file::rotation_at_time_interval(posix_time::hours(1))
91``
92
93If none of the above applies, one can specify his own predicate for time-based rotation. The predicate should take no arguments and return `bool` (the `true` value indicates that the rotation should take place). The predicate will be called for every log record being written to the file.
94
95    bool is_it_time_to_rotate();
96
97    void init_logging()
98    {
99        // ...
100
101        boost::shared_ptr< sinks::text_file_backend > backend =
102            boost::make_shared< sinks::text_file_backend >(
103                keywords::file_name = "file.log",
104                keywords::target_file_name = "file_%5N.log",
105                keywords::time_based_rotation = &is_it_time_to_rotate
106            );
107
108        // ...
109    }
110
111[note The log file rotation takes place on an attempt to write a new log record to the file. Thus the time-based rotation is not a strict threshold, either. The rotation will take place as soon as the library detects that the rotation should have happened.]
112
113In addition to time and size-based file rotation the backend also performs rotation on its destruction by default. This is done in order to maintain all log files collected in the target directory after program termination and ensure that temporary log files don't pile up in the directory the sink backend writes to. This behavior can be disabled with the `enable_final_rotation` parameter of the backend constructor or the similarly named method of the backend:
114
115    void init_logging()
116    {
117        // ...
118
119        boost::shared_ptr< sinks::text_file_backend > backend =
120            boost::make_shared< sinks::text_file_backend >(
121                keywords::file_name = "file.log",
122                keywords::target_file_name = "file_%5N.log",
123                keywords::enable_final_rotation = false
124            );
125
126        // ...
127    }
128
129Both active and target file name patterns may contain a number of wildcards, like the one you can see in the example above. Supported placeholders are:
130
131* Current date and time components. The placeholders conform to the ones specified by __boost_date_time__ library.
132* File counter (`%N`) with an optional width specification in the `printf`-like format. The file counter will always be decimal, zero filled to the specified width.
133* A percent sign (`%%`).
134
135A few quick examples:
136
137[table
138    [[Template]                            [Expands to]]
139    [[file\_%N.log]                        [file\_1.log, file\_2.log...]]
140    [[file\_%3N.log]                       [file\_001.log, file\_002.log...]]
141    [[file\_%Y%m%d.log]                    [file\_20080705.log, file\_20080706.log...]]
142    [[file\_%Y-%m-%d\_%H-%M-%S.%N.log]     [file\_2008-07-05\_13-44-23.1.log, file\_2008-07-06\_16-00-10.2.log...]]
143]
144
145[important Although all __boost_date_time__ format specifiers will work, there are restrictions on some of them, if you intend to scan for old log files. This functionality is discussed [link log.detailed.sink_backends.text_file.file_scanning here].]
146
147Note that, as described above, active and target file names are generated at different points in time. Specifically, the active file name is generated when the log file is originally created, and the target file name - when the file is closed. Timestamps used to construct these file names will reflect that difference.
148
149[tip When [link log.detailed.sink_backends.text_file.appending file appending] is needed, it is recommended to avoid any placeholders in the active file name pattern. Otherwise appending won't happen because of the different active log file names. You can use the target file name pattern to add a timestamp or counter to the log file after rotation.]
150
151[endsect]
152
153[section:open_close_handlers File open and close handlers]
154
155The sink backend allows hooking into the file rotation process in order to perform pre- and post-rotation actions. This can be useful to maintain log file validity by writing headers and footers. For example, this is how we could modify the `init_logging` function from our previous examples in order to write logs into XML files:
156
157[example_sinks_xml_file]
158
159[@boost:/libs/log/example/doc/sinks_xml_file.cpp See the complete code].
160
161[endsect]
162
163[section:file_collection Managing rotated files]
164
165After being closed, the rotated files can be collected. In order to do so one has to set up a file collector by specifying the target directory where to collect the rotated files and, optionally, size thresholds. For example, we can modify the `init_logging` function to place rotated files into a distinct directory and limit total size of the files. Let's assume the following function is called by `init_logging` with the constructed sink:
166
167[example_sinks_xml_file_collecting]
168
169The `max_size`, `min_free_space` and `max_files` parameters are optional, the corresponding threshold will not be taken into account if the parameter is not specified.
170
171One can create multiple file sink backends that collect files into the same target directory. In this case the most strict thresholds are combined for this target directory. The files from this directory will be erased without regard for which sink backend wrote it, i.e. in the strict chronological order.
172
173[warning The collector does not resolve log file name clashes between different sink backends, so if the clash occurs the behavior is undefined, in general. Depending on the circumstances, the files may overwrite each other or the operation may fail entirely.]
174
175[endsect]
176
177[section:file_scanning Scanning for rotated files]
178
179The file collector provides another useful feature. Suppose you ran your application 5 times and you have 5 log files in the "logs" directory. The file sink backend and file collector provide a `scan_for_files` method that searches the target directory for these files and takes them into account. So, if it comes to deleting files, these files are not forgotten. What's more, if a file name pattern in the backend involves a file counter, scanning for older files allows updating the counter to the most recent value. Here is the final version of our `init_logging` function:
180
181[example_sinks_xml_file_final]
182
183There are two methods of file scanning: the scan that involves file name matching with the target file name pattern (the default) and the scan that assumes that all files in the target directory are log files. The former applies certain restrictions on the placeholders that can be used within the file name pattern, in particular only file counter placeholder and these placeholders of __boost_date_time__ are supported: `%y`, `%Y`, `%m`, `%d`, `%H`, `%M`, `%S`, `%f`. The latter scanning method, in its turn, has its own drawback: it does not allow updating the file counter in the backend. It is also considered to be more dangerous as it may result in unintended file deletion, so be cautious. The all-files scanning method can be enabled by passing it as an additional parameter to the `scan_for_files` call:
184
185    // Look for all files in the target directory
186    backend->scan_for_files(sinks::file::scan_all);
187
188When scanning for matching file names, if the target file name is not set then the active file name pattern is used instead.
189
190[endsect]
191
192[section:appending Appending to the previously written files]
193
194The sink backend supports appending to the previously written files (e.g. left from a previous run of your application). In order to enable this mode, one has to add `std::ios_base::app` to the file open mode used by the backend. This can be done with the `open_mode` named parameter of the backend constructor or the `set_open_mode` method.
195
196    void init_logging()
197    {
198        // ...
199
200        boost::shared_ptr< sinks::text_file_backend > backend =
201            boost::make_shared< sinks::text_file_backend >(
202                keywords::file_name = "file.log",
203                keywords::target_file_name = "file_%5N.log",
204                keywords::open_mode = std::ios_base::out | std::ios_base::app,
205                keywords::enable_final_rotation = false
206            );
207
208        // ...
209    }
210
211When initializing from [link log.detailed.utilities.setup.settings settings], the "Append" parameter of the "TextFile" sink enables appending.
212
213In order for file appending to actually happen, it is important that the name of the newly opened log file matches the previously written file. Othewise, the sink will simply create a new file under the new name. There are several recommendations to follow when file appending is desirable:
214
215* Don't use placeholders in the active file name pattern. This will ensure that every time the sink opens a file for writing, that file has the same name.
216* Use a distinct target file name pattern, preferably with date, time or counter placeholders. This will ensure that when the file is rotated and collected, it doesn't clash with the previously written files, and that the newly opened file will have a different name from the previous one.
217* Disable file rotation on sink destruction. This will leave the last actively written log file in its original location and with the original name so that it can be picked up by a future run of your application.
218* Prefer a stable location and file name for the actively written log files. The library will not find the previously written file if its name or directory changes between application runs.
219
220[endsect]
221
222[endsect]
223
224[section:text_multifile Text multi-file backend]
225
226    #include <``[boost_log_sinks_text_multifile_backend_hpp]``>
227
228While the text stream and file backends are aimed to store all log records into a single file/stream, this backend serves a different purpose. Assume we have a banking request processing application and we want logs related to every single request to be placed into a separate file. If we can associate some attribute with the request identity then the [class_sinks_text_multifile_backend] backend is the way to go.
229
230[example_sinks_multifile]
231
232You can see we used a regular [link log.detailed.expressions.formatters formatter] in order to specify file naming pattern. Now, every log record with a distinct value of the "RequestID" attribute will be stored in a separate file, no matter how many different requests are being processed by the application concurrently. You can also find the [@boost:/libs/log/example/multiple_files/main.cpp `multiple_files`] example in the library distribution, which shows a similar technique to separate logs generated by different threads of the application.
233
234If using formatters is not appropriate for some reason, you can provide your own file name composer. The composer is a mere function object that accepts a log record as a single argument and returns a value of the `text_multifile_backend::path_type` type.
235
236[note The multi-file backend has no knowledge of whether a particular file is going to be used or not. That is, if a log record has been written into file A, the library cannot tell whether there will be more records that fit into the file A or not. This makes it impossible to implement file rotation and removing unused files to free space on the file system. The user will have to implement such functionality himself.]
237
238[endsect]
239
240[section:text_ipc_message_queue Text IPC message queue backend]
241
242    #include <``[boost_log_sinks_text_ipc_message_queue_backend_hpp]``>
243
244Sometimes, it is convenient to pass log records between different processes on a local machine. For example, one could collect logs from multiple processes into a common logger process. Or create a log viewer which is able to monitor running processes. To implement this idea, a sink backend that sends logs across processes is needed. The text interprocess sink backend puts formatted log messages to an [link log.detailed.utilities.ipc.reliable_message_queue interprocess message queue], which can then be retrieved and processed by another process. In particular, one may choose to encode a log record with various attribute values into a JSON or XML formatted text message, and then decode the message at the receiving side for processing such as filtering and displaying.
245
246The backend is implemented by the [class_sinks_text_ipc_message_queue_backend] class template which should be instantiated with an interprocess message queue such as [class_ipc_reliable_message_queue]. The following example program illustrates a logger process.
247
248[example_sinks_ipc_logger]
249
250[@boost:/libs/log/example/doc/sinks_ipc_logger.cpp See the complete code].
251
252The same interprocess queue can be used to implement the receiving side as well. The following code displays the received log messages on the console.
253
254[example_sinks_ipc_receiver]
255
256[@boost:/libs/log/example/doc/sinks_ipc_receiver.cpp See the complete code].
257
258[endsect]
259
260[section:syslog Syslog backend]
261
262    #include <``[boost_log_sinks_syslog_backend_hpp]``>
263
264The syslog backend, as comes from its name, provides support for the syslog API that is available on virtually any UNIX-like platform. On Windows there exists at least [@http://syslog-win32.sourceforge.net one] public implementation of the syslog client API. However, in order to provide maximum flexibility and better portability the library offers built-in support for the syslog protocol described in [@http://tools.ietf.org/html/rfc3164 RFC 3164]. Thus on Windows only the built-in implementation is supported, while on UNIX-like systems both built-in and system API based implementations are supported.
265
266The backend is implemented in the [class_sinks_syslog_backend] class. The backend supports formatting log records, and therefore requires thread synchronization in the frontend. The backend also supports severity level translation from the application-specific values to the syslog-defined values. This is achieved with an additional function object, level mapper, that receives a set of attribute values of each log record and returns the appropriate syslog level value. This value is used by the backend to construct the final priority value of the syslog record. The other component of the syslog priority value, the facility, is constant for each backend object and can be specified in the backend constructor arguments.
267
268Level mappers can be written by library users to translate the application log levels to the syslog levels in the best way. However, the library provides two mappers that would fit this need in obvious cases. The [class_syslog_direct_severity_mapping] class template provides a way to directly map values of some integral attribute to syslog levels, without any value conversion. The [class_syslog_custom_severity_mapping] class template adds some flexibility and allows to map arbitrary values of some attribute to syslog levels.
269
270Anyway, one example is better than a thousand words.
271
272[example_sinks_syslog]
273
274Please note that all syslog constants, as well as level extractors, are declared within a nested namespace `syslog`. The library will not accept (and does not declare in the backend interface) native syslog constants, which are macros, actually.
275
276Also note that the backend will default to the built-in implementation and `user` logging facility, if the corresponding constructor parameters are not specified.
277
278[tip The `set_target_address` method will also accept DNS names, which it will resolve to the actual IP address. This feature, however, is not available in single threaded builds.]
279
280[endsect]
281
282[section:debugger Windows debugger output backend]
283
284    #include <``[boost_log_sinks_debug_output_backend_hpp]``>
285
286Windows API has an interesting feature: a process, being run under a debugger, is able to emit messages that will be intercepted and displayed in the debugger window. For example, if an application is run under the Visual Studio IDE it is able to write debug messages to the IDE window. The [class_sinks_basic_debug_output_backend] backend provides a simple way of emitting such messages. Additionally, in order to optimize application performance, a [link log.detailed.expressions.predicates.is_debugger_present special filter] is available that checks whether the application is being run under a debugger. Like many other sink backends, this backend also supports setting a formatter in order to compose the message text.
287
288The usage is quite simple and straightforward:
289
290[example_sinks_debugger]
291
292Note that the sink backend is templated on the character type. This type defines the Windows API version that is used to emit messages. Also, `debug_output_backend` and `wdebug_output_backend` convenience typedefs are provided.
293
294[endsect]
295
296[section:event_log Windows event log backends]
297
298    #include <``[boost_log_sinks_event_log_backend_hpp]``>
299
300Windows operating system provides a special API for publishing events related to application execution. A wide range of applications, including Windows components, use this facility to provide the user with all essential information about computer health in a single place - an event log. There can be more than one event log. However, typically all user-space applications use the common Application log. Records from different applications or their parts can be selected from the log by a record source name. Event logs can be read with a standard utility, an Event Viewer, that comes with Windows.
301
302Although it looks very tempting, the API is quite complicated and intrusive, which makes it difficult to support. The application is required to provide a dynamic library with special resources that describe all events the application supports. This library must be registered in the Windows registry, which pins its location in the file system. The Event Viewer uses this registration to find the resources and compose and display messages. The positive feature of this approach is that since event resources can describe events differently for different languages, it allows the application to support event internationalization in a quite transparent manner: the application simply provides event identifiers and non-localizable event parameters to the API, and it does the rest of the work.
303
304In order to support both the simplistic approach "it just works" and the more elaborate event composition, including internationalization support, the library provides two sink backends that work with event log API.
305
306[heading Simple event log backend]
307
308The [class_sinks_basic_simple_event_log_backend] backend is intended to encapsulate as much of the event log API as possible, leaving interface and usage model very similar to other sink backends. It contains all resources that are needed for the Event Viewer to function properly, and registers the Boost.Log library in the Windows registry in order to populate itself as the container of these resources.
309
310[important The library must be built as a dynamic library in order to use this backend flawlessly. Otherwise event description resources are not linked into the executable, and the Event Viewer is not able to display events properly.]
311
312The only thing user has to do to add Windows event log support to his application is to provide event source and log names (which are optional and can be automatically suggested by the library), set up an appropriate filter, formatter and event severity mapping.
313
314[example_sinks_simple_event_log]
315
316Having done that, all logging records that pass to the sink will be formatted the same way they are in the other sinks. The formatted message will be displayed in the Event Viewer as the event description.
317
318[heading Advanced event log backend]
319
320The [class_sinks_basic_event_log_backend] allows more detailed control over the logging API, but requires considerably more scaffolding during initialization and usage.
321
322First, the user has to build his own library with the event resources (the process is described in [@http://msdn.microsoft.com/en-us/library/aa363681(VS.85).aspx MSDN]). As a part of this process one has to create a message file that describes all events. For the sake of example, let's assume the following contents were used as the message file:
323
324[teletype]
325
326    ; /* --------------------------------------------------------
327    ; HEADER SECTION
328    ; */
329    SeverityNames=(Debug=0x0:MY_SEVERITY_DEBUG
330                Info=0x1:MY_SEVERITY_INFO
331                Warning=0x2:MY_SEVERITY_WARNING
332                Error=0x3:MY_SEVERITY_ERROR
333                )
334
335    ; /* --------------------------------------------------------
336    ; MESSAGE DEFINITION SECTION
337    ; */
338
339    MessageIdTypedef=WORD
340
341    MessageId=0x1
342    SymbolicName=MY_CATEGORY_1
343    Language=English
344    Category 1
345    .
346
347    MessageId=0x2
348    SymbolicName=MY_CATEGORY_2
349    Language=English
350    Category 2
351    .
352
353    MessageId=0x3
354    SymbolicName=MY_CATEGORY_3
355    Language=English
356    Category 3
357    .
358
359    MessageIdTypedef=DWORD
360
361    MessageId=0x100
362    Severity=Warning
363    Facility=Application
364    SymbolicName=LOW_DISK_SPACE_MSG
365    Language=English
366    The drive %1 has low free disk space. At least %2 Mb of free space is recommended.
367    .
368
369    MessageId=0x101
370    Severity=Error
371    Facility=Application
372    SymbolicName=DEVICE_INACCESSIBLE_MSG
373    Language=English
374    The drive %1 is not accessible.
375    .
376
377    MessageId=0x102
378    Severity=Info
379    Facility=Application
380    SymbolicName=SUCCEEDED_MSG
381    Language=English
382    Operation finished successfully in %1 seconds.
383    .
384
385[c++]
386
387After compiling the resource library, the path to this library must be provided to the sink backend constructor, among other parameters used with the simple backend. The path may contain placeholders that will be expanded with the appropriate environment variables.
388
389[example_sinks_event_log_create_backend]
390
391Like the simple backend, [class_sinks_basic_event_log_backend] will register itself in the Windows registry, which will enable the Event Viewer to display the emitted events.
392
393Next, the user will have to provide the mapping between the application logging attributes and event identifiers. These identifiers were provided in the message compiler output as a result of compiling the message file. One can use [class_event_log_basic_event_composer] and one of the event ID mappings, like in the following example:
394
395[example_sinks_event_log_event_composer]
396
397As you can see, one can use regular [link log.detailed.expressions.formatters formatters] to specify which attributes will be inserted instead of placeholders in the final event message. Aside from that, one can specify mappings of attribute values to event types and categories. Suppose our application has the following severity levels:
398
399[example_sinks_event_log_severity]
400
401Then these levels can be mapped onto the values in the message description file:
402
403[example_sinks_event_log_mappings]
404
405[tip As of Windows NT 6 (Vista, Server 2008) it is not needed to specify event type mappings. This information is available in the message definition resources and need not be duplicated in the API call.]
406
407Now that initialization is done, the sink can be registered into the core.
408
409[example_sinks_event_log_register_sink]
410
411In order to emit events it is convenient to create a set of functions that will accept all needed parameters for the corresponding events and announce that the event has occurred.
412
413[example_sinks_event_log_facilities]
414
415Now you are able to call these helper functions to emit events. The complete code from this section is available in the [@boost:/libs/log/example/event_log/main.cpp `event_log`] example in the library distribution.
416
417[endsect]
418
419[endsect]
420