1#[cfg(feature = "termcolor")]
2use log::Level;
3use log::LevelFilter;
4
5pub use chrono::offset::{FixedOffset, Local, Offset, TimeZone, Utc};
6use std::borrow::Cow;
7#[cfg(feature = "termcolor")]
8use termcolor::Color;
9
10#[derive(Debug, Clone, Copy)]
11pub enum LevelPadding {
13 Left,
15 Right,
17 Off,
19}
20
21#[derive(Debug, Clone, Copy)]
22pub enum ThreadPadding {
24 Left(usize),
26 Right(usize),
28 Off,
30}
31
32#[derive(Debug, Clone, Copy, PartialEq)]
33pub enum ThreadLogMode {
35 IDs,
37 Names,
39 Both,
41}
42
43#[derive(Debug, Clone)]
54pub struct Config {
55 pub(crate) time: LevelFilter,
56 pub(crate) level: LevelFilter,
57 pub(crate) level_padding: LevelPadding,
58 pub(crate) thread: LevelFilter,
59 pub(crate) thread_log_mode: ThreadLogMode,
60 pub(crate) thread_padding: ThreadPadding,
61 pub(crate) target: LevelFilter,
62 pub(crate) location: LevelFilter,
63 pub(crate) time_format: Cow<'static, str>,
64 pub(crate) time_offset: FixedOffset,
65 pub(crate) time_local: bool,
66 pub(crate) filter_allow: Cow<'static, [Cow<'static, str>]>,
67 pub(crate) filter_ignore: Cow<'static, [Cow<'static, str>]>,
68 #[cfg(feature = "termcolor")]
69 pub(crate) level_color: [Option<Color>; 6],
70}
71
72#[derive(Debug, Clone)]
86#[non_exhaustive]
87pub struct ConfigBuilder(Config);
88
89impl ConfigBuilder {
90 pub fn new() -> ConfigBuilder {
92 ConfigBuilder(Config::default())
93 }
94
95 pub fn set_max_level(&mut self, level: LevelFilter) -> &mut ConfigBuilder {
97 self.0.level = level;
98 self
99 }
100
101 pub fn set_time_level(&mut self, time: LevelFilter) -> &mut ConfigBuilder {
103 self.0.time = time;
104 self
105 }
106
107 pub fn set_thread_level(&mut self, thread: LevelFilter) -> &mut ConfigBuilder {
109 self.0.thread = thread;
110 self
111 }
112
113 pub fn set_target_level(&mut self, target: LevelFilter) -> &mut ConfigBuilder {
115 self.0.target = target;
116 self
117 }
118
119 pub fn set_location_level(&mut self, location: LevelFilter) -> &mut ConfigBuilder {
121 self.0.location = location;
122 self
123 }
124
125 pub fn set_level_padding(&mut self, padding: LevelPadding) -> &mut ConfigBuilder {
127 self.0.level_padding = padding;
128 self
129 }
130
131 pub fn set_thread_padding(&mut self, padding: ThreadPadding) -> &mut ConfigBuilder {
133 self.0.thread_padding = padding;
134 self
135 }
136
137 pub fn set_thread_mode(&mut self, mode: ThreadLogMode) -> &mut ConfigBuilder {
139 self.0.thread_log_mode = mode;
140 self
141 }
142
143 #[cfg(feature = "termcolor")]
146 pub fn set_level_color(&mut self, level: Level, color: Option<Color>) -> &mut ConfigBuilder {
147 self.0.level_color[level as usize] = color;
148 self
149 }
150
151 pub fn set_time_format_str(&mut self, time_format: &'static str) -> &mut ConfigBuilder {
155 self.0.time_format = Cow::Borrowed(time_format);
156 self
157 }
158
159 pub fn set_time_format(&mut self, time_format: String) -> &mut ConfigBuilder {
163 self.0.time_format = Cow::Owned(time_format);
164 self
165 }
166
167 pub fn set_time_offset(&mut self, time_offset: FixedOffset) -> &mut ConfigBuilder {
169 self.0.time_offset = time_offset;
170 self
171 }
172
173 pub fn set_time_to_local(&mut self, local: bool) -> &mut ConfigBuilder {
175 self.0.time_local = local;
176 self
177 }
178
179 pub fn add_filter_allow_str(&mut self, filter_allow: &'static str) -> &mut ConfigBuilder {
184 let mut list = Vec::from(&*self.0.filter_allow);
185 list.push(Cow::Borrowed(filter_allow));
186 self.0.filter_allow = Cow::Owned(list);
187 self
188 }
189
190 pub fn add_filter_allow(&mut self, filter_allow: String) -> &mut ConfigBuilder {
195 let mut list = Vec::from(&*self.0.filter_allow);
196 list.push(Cow::Owned(filter_allow));
197 self.0.filter_allow = Cow::Owned(list);
198 self
199 }
200
201 pub fn clear_filter_allow(&mut self) -> &mut ConfigBuilder {
204 self.0.filter_allow = Cow::Borrowed(&[]);
205 self
206 }
207
208 pub fn add_filter_ignore_str(&mut self, filter_ignore: &'static str) -> &mut ConfigBuilder {
213 let mut list = Vec::from(&*self.0.filter_ignore);
214 list.push(Cow::Borrowed(filter_ignore));
215 self.0.filter_ignore = Cow::Owned(list);
216 self
217 }
218
219 pub fn add_filter_ignore(&mut self, filter_ignore: String) -> &mut ConfigBuilder {
224 let mut list = Vec::from(&*self.0.filter_ignore);
225 list.push(Cow::Owned(filter_ignore));
226 self.0.filter_ignore = Cow::Owned(list);
227 self
228 }
229
230 pub fn clear_filter_ignore(&mut self) -> &mut ConfigBuilder {
233 self.0.filter_ignore = Cow::Borrowed(&[]);
234 self
235 }
236
237 pub fn build(&mut self) -> Config {
239 self.0.clone()
240 }
241}
242
243impl Default for ConfigBuilder {
244 fn default() -> Self {
245 ConfigBuilder::new()
246 }
247}
248
249impl Default for Config {
250 fn default() -> Config {
251 Config {
252 time: LevelFilter::Error,
253 level: LevelFilter::Error,
254 level_padding: LevelPadding::Off,
255 thread: LevelFilter::Debug,
256 thread_log_mode: ThreadLogMode::IDs,
257 thread_padding: ThreadPadding::Off,
258 target: LevelFilter::Debug,
259 location: LevelFilter::Trace,
260 time_format: Cow::Borrowed("%H:%M:%S"),
261 time_offset: FixedOffset::east(0),
262 time_local: false,
263 filter_allow: Cow::Borrowed(&[]),
264 filter_ignore: Cow::Borrowed(&[]),
265
266 #[cfg(feature = "termcolor")]
267 level_color: [
268 None, Some(Color::Red), Some(Color::Yellow), Some(Color::Blue), Some(Color::Cyan), Some(Color::White), ],
275 }
276 }
277}