logforth 0.30.1

A versatile and extensible logging implementation.
Documentation
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
// Copyright 2024 FastLabs Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! Starter configurations for quickly setting up logforth with the `log` crate

use logforth_bridge_log::LogBridge;
use logforth_core::Logger;

use crate::Append;
use crate::Error;
use crate::Filter;
use crate::Layout;
use crate::append;
use crate::core::DispatchBuilder;
use crate::core::LoggerBuilder;
use crate::filter::rustlog::RustLogFilterBuilder;

/// A builder for setting up logforth with the `log` crate.
pub struct LogStarterBuilder {
    builder: LoggerBuilder,
}

/// Create a new empty [`LogStarterBuilder`] instance for configuring logforth setups.
///
/// # Examples
///
/// ```
/// use logforth::append;
///
/// let builder = logforth::starter_log::builder()
///     .dispatch(|d| d.append(append::Stderr::default()))
///     .apply();
/// ```
pub fn builder() -> LogStarterBuilder {
    use crate::core::builder;
    LogStarterBuilder { builder: builder() }
}

impl LogStarterBuilder {
    /// Register a new dispatch.
    ///
    /// # Examples
    ///
    /// ```
    /// use logforth::append;
    ///
    /// logforth::starter_log::builder()
    ///     .dispatch(|d| d.append(append::Stderr::default()))
    ///     .apply();
    /// ```
    pub fn dispatch<F>(mut self, f: F) -> Self
    where
        F: FnOnce(DispatchBuilder<false>) -> DispatchBuilder<true>,
    {
        self.builder = self.builder.dispatch(f);
        self
    }

    /// Set up the global logger with all the configured dispatches.
    ///
    /// This should be called early in the execution of a Rust program. Any log events that occur
    /// before initialization will be ignored.
    ///
    /// This function will set the global maximum log level to `Trace`. To override this, call
    /// `log::set_max_level` after this function.
    ///
    /// # Errors
    ///
    /// Return an error if a global logger has already been set.
    ///
    /// # Examples
    ///
    /// ```
    /// if let Err(err) = logforth::starter_log::builder().try_apply() {
    ///     eprintln!("failed to set logger: {err}");
    /// }
    /// ```
    pub fn try_apply(self) -> Result<(), Error> {
        let make_error = |_| Error::new("logging system has already been setup");

        let logger = Box::new(LogBridge::new(self.build()));
        log::set_boxed_logger(logger).map_err(make_error)?;
        log::set_max_level(log::LevelFilter::Trace);

        Ok(())
    }

    /// Set up the global logger with all the configured dispatches.
    ///
    /// This should be called early in the execution of a Rust program. Any log events that occur
    /// before initialization will be ignored.
    ///
    /// This function will panic if it is called more than once, or if another library has already
    /// initialized a global logger.
    ///
    /// This function will set the global maximum log level to `Trace`. To override this, call
    /// `log::set_max_level` after this function.
    ///
    /// # Panics
    ///
    /// Panic if the global logger has already been set.
    ///
    /// # Examples
    ///
    /// ```
    /// logforth::starter_log::builder().apply();
    /// ```
    pub fn apply(self) {
        self.try_apply()
            .expect("LogStarterBuilder::apply must be called before the global logger initialized");
    }

    /// Build the configured [`Logger`].
    ///
    /// This is useful for advanced use cases where you want to intercept extra configs before
    /// setting the logger as the global logger.
    ///
    /// # Examples
    ///
    /// ```
    /// use std::sync::Arc;
    ///
    /// use logforth::bridge::log::LogBridge;
    ///
    /// let logger = logforth::starter_log::builder().build();
    /// let logger = Arc::new(LogBridge::new(logger));
    /// log::set_boxed_logger(Box::new(logger.clone())).unwrap();
    /// log::set_max_level(log::LevelFilter::Trace);
    ///
    /// logger.flush();
    /// ```
    pub fn build(self) -> Logger {
        self.builder.build()
    }
}

/// A builder for setting up logforth with the `log` crate, using the [testing] appender.
///
/// [testing]: append::Testing
pub struct LogStarterTestingBuilder {
    filter: Box<dyn Filter>,
    layout: Box<dyn Layout>,
}

/// Create a starter builder with a default [`append::Testing`] appender and a [`RustLogFilter`]
/// respecting `RUST_LOG`.
///
/// [`RustLogFilter`]: crate::filter::RustLogFilter
///
/// # Examples
///
/// ```
/// logforth::starter_log::testing().apply();
/// log::error!("This error will be logged to stderr and respect output capture settings.");
/// ```
pub fn testing() -> LogStarterTestingBuilder {
    LogStarterTestingBuilder {
        filter: default_filter(),
        layout: default_layout(),
    }
}

impl LogStarterTestingBuilder {
    /// Set the layout for the testing appender.
    ///
    /// # Examples
    ///
    /// ```
    /// # use logforth::layout::PlainTextLayout;
    /// logforth::starter_log::testing()
    ///     .layout(PlainTextLayout::default())
    ///     .apply();
    /// log::error!("This error will be logged to stderr.");
    /// ```
    pub fn layout(mut self, layout: impl Into<Box<dyn Layout>>) -> Self {
        self.layout = layout.into();
        self
    }

    /// Set the layout for the testing appender.
    ///
    /// # Examples
    ///
    /// ```
    /// # use logforth::record::LevelFilter;
    /// # use logforth::record::Level;
    /// logforth::starter_log::testing().filter(LevelFilter::MoreSevereEqual(Level::Warn)).apply();
    /// log::info!("This info message will be ignored.");
    pub fn filter(mut self, filter: impl Into<Box<dyn Filter>>) -> Self {
        self.filter = filter.into();
        self
    }

    /// Set up the global logger with the testing dispatch.
    ///
    /// This should be called early in the execution of a Rust program. Any log events that occur
    /// before initialization will be ignored.
    ///
    /// This function will set the global maximum log level to `Trace`. To override this, call
    /// `log::set_max_level` after this function.
    ///
    /// # Errors
    ///
    /// Return an error if a global logger has already been set.
    ///
    /// # Examples
    ///
    /// ```
    /// if let Err(err) = logforth::starter_log::testing().try_apply() {
    ///     eprintln!("failed to set logger: {err}");
    /// }
    /// ```
    pub fn try_apply(self) -> Result<(), Error> {
        self.into_builder().try_apply()
    }

    /// Set up the global logger with the configured testing dispatch.
    ///
    /// This should be called early in the execution of a Rust program. Any log events that occur
    /// before initialization will be ignored.
    ///
    /// This function will panic if it is called more than once, or if another library has already
    /// initialized a global logger.
    ///
    /// This function will set the global maximum log level to `Trace`. To override this, call
    /// `log::set_max_level` after this function.
    ///
    /// # Panics
    ///
    /// Panic if the global logger has already been set.
    ///
    /// # Examples
    ///
    /// ```
    /// logforth::starter_log::testing().apply();
    /// ```
    pub fn apply(self) {
        self.try_apply().expect(
            "LogStarterTestingBuilder::apply must be called before the global logger initialized",
        );
    }

    /// Build the configured [`Logger`].
    ///
    /// This is useful for advanced use cases where you want to intercept extra configs before
    /// setting the logger as the global logger.
    ///
    /// # Examples
    ///
    /// ```
    /// use std::sync::Arc;
    ///
    /// use logforth::bridge::log::LogBridge;
    ///
    /// let logger = logforth::starter_log::testing().build();
    /// let logger = Arc::new(LogBridge::new(logger));
    /// log::set_boxed_logger(Box::new(logger.clone())).unwrap();
    /// log::set_max_level(log::LevelFilter::Trace);
    ///
    /// logger.flush();
    /// ```
    pub fn build(self) -> Logger {
        self.into_builder().build()
    }

    fn into_builder(self) -> LogStarterBuilder {
        let Self { filter, layout } = self;
        let append: Box<dyn Append> = Box::new(append::Testing::default().with_layout(layout));
        builder().dispatch(|d| d.filter(filter).append(append))
    }
}

enum StdStream {
    Stdout(append::Stdout),
    Stderr(append::Stderr),
}

/// A builder for setting up logforth with the `log` crate, using standard output/error streams.
pub struct LogStarterStdStreamBuilder {
    append: StdStream,
    filter: Box<dyn Filter>,
    layout: Box<dyn Layout>,
}

/// Create a starter builder with a default [`append::Stdout`] appender and a [`RustLogFilter`]
/// respecting `RUST_LOG`.
///
/// [`RustLogFilter`]: crate::filter::RustLogFilter
///
/// # Examples
///
/// ```
/// logforth::starter_log::stdout().apply();
/// log::error!("This error will be logged to stdout.");
/// ```
pub fn stdout() -> LogStarterStdStreamBuilder {
    LogStarterStdStreamBuilder {
        append: StdStream::Stdout(append::Stdout::default()),
        filter: default_filter(),
        layout: default_layout(),
    }
}

/// Create a starter builder with a default [`append::Stderr`] appender and a [`RustLogFilter`]
/// respecting `RUST_LOG`.
///
/// [`RustLogFilter`]: crate::filter::RustLogFilter
///
/// # Examples
///
/// ```
/// logforth::starter_log::stderr().apply();
/// log::error!("This error will be logged to stderr.");
/// ```
pub fn stderr() -> LogStarterStdStreamBuilder {
    LogStarterStdStreamBuilder {
        append: StdStream::Stderr(append::Stderr::default()),
        filter: default_filter(),
        layout: default_layout(),
    }
}

impl LogStarterStdStreamBuilder {
    /// Set the layout for the StdStream appender.
    ///
    /// # Examples
    ///
    /// ```
    /// # use logforth::layout::PlainTextLayout;
    /// logforth::starter_log::stderr()
    ///     .layout(PlainTextLayout::default())
    ///     .apply();
    /// log::error!("This error will be logged to stderr.");
    /// ```
    pub fn layout(mut self, layout: impl Into<Box<dyn Layout>>) -> Self {
        self.layout = layout.into();
        self
    }

    /// Set the layout for the StdStream appender.
    ///
    /// # Examples
    ///
    /// ```
    /// # use logforth::record::LevelFilter;
    /// # use logforth::record::Level;
    /// logforth::starter_log::stdout().filter(LevelFilter::MoreSevereEqual(Level::Warn)).apply();
    /// log::info!("This info message will be ignored.");
    pub fn filter(mut self, filter: impl Into<Box<dyn Filter>>) -> Self {
        self.filter = filter.into();
        self
    }

    /// Set up the global logger with the configured std stream dispatch.
    ///
    /// This should be called early in the execution of a Rust program. Any log events that occur
    /// before initialization will be ignored.
    ///
    /// This function will set the global maximum log level to `Trace`. To override this, call
    /// `log::set_max_level` after this function.
    ///
    /// # Errors
    ///
    /// Return an error if a global logger has already been set.
    ///
    /// # Examples
    ///
    /// ```
    /// if let Err(err) = logforth::starter_log::stdout().try_apply() {
    ///     eprintln!("failed to set logger: {err}");
    /// }
    /// ```
    pub fn try_apply(self) -> Result<(), Error> {
        self.into_builder().try_apply()
    }

    /// Set up the global logger with the configured std stream dispatch.
    ///
    /// This should be called early in the execution of a Rust program. Any log events that occur
    /// before initialization will be ignored.
    ///
    /// This function will panic if it is called more than once, or if another library has already
    /// initialized a global logger.
    ///
    /// This function will set the global maximum log level to `Trace`. To override this, call
    /// `log::set_max_level` after this function.
    ///
    /// # Panics
    ///
    /// Panic if the global logger has already been set.
    ///
    /// # Examples
    ///
    /// ```
    /// logforth::starter_log::stdout().apply();
    /// ```
    pub fn apply(self) {
        self.try_apply().expect(
            "LogStarterStdStreamBuilder::apply must be called before the global logger initialized",
        );
    }

    /// Build the configured [`Logger`].
    ///
    /// This is useful for advanced use cases where you want to intercept extra configs before
    /// setting the logger as the global logger.
    ///
    /// # Examples
    ///
    /// ```
    /// use std::sync::Arc;
    ///
    /// use logforth::bridge::log::LogBridge;
    ///
    /// let logger = logforth::starter_log::stdout().build();
    /// let logger = Arc::new(LogBridge::new(logger));
    /// log::set_boxed_logger(Box::new(logger.clone())).unwrap();
    /// log::set_max_level(log::LevelFilter::Trace);
    ///
    /// logger.flush();
    /// ```
    pub fn build(self) -> Logger {
        self.into_builder().build()
    }

    fn into_builder(self) -> LogStarterBuilder {
        let Self {
            append,
            filter,
            layout,
        } = self;

        let append: Box<dyn Append> = match append {
            StdStream::Stdout(a) => Box::new(a.with_layout(layout)),
            StdStream::Stderr(a) => Box::new(a.with_layout(layout)),
        };

        builder().dispatch(|d| d.filter(filter).append(append))
    }
}

fn default_filter() -> Box<dyn Filter> {
    Box::new(RustLogFilterBuilder::from_default_env().build())
}

fn default_layout() -> Box<dyn Layout> {
    #[cfg(feature = "layout-text")]
    {
        use crate::layout::TextLayout;
        Box::new(TextLayout::default())
    }

    #[cfg(not(feature = "layout-text"))]
    {
        use crate::layout::PlainTextLayout;
        Box::new(PlainTextLayout::default())
    }
}