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
//! A tiny, simple, thread-safe logging library.
//! No configuration options, take it or leave it.
//!
//! Writes log messages to `stdout`/`stderr`. The writes are thread-safe.
//! 
//! If any of the mutexes protecting the state data (prefixes values, and verbose
//! and debug values) becomes poisoned it will panic.
//!
//! Provided logging macros:
//!
//! [`err!()`]  
//! [`warn!()`]  
//! [`info!()`]  
//! [`verbose!()`]  
//! [`debug!()`]  
//!
//! Usage
//! -----
//!
//! ```rust
//! # extern crate mhlog;
//! # use mhlog::{info, warn, err};
//! info!("An info message.");
//! warn!("A warning message.");
//! err!("An error message.");
//! ```
//! 
//! ### Custom log prefix
//! 
//! The prefix of the log messages may be changed by the user:
//! 
//! ```rust
//! # extern crate mhlog
//! # use mhlog::info;
//! mhlog::info_prefix_str("Info:".to_string());
//! info!("Hello custom world!");
//! ```
//! 
//! ### Dynamic log prefix
//! 
//! Dynamic log prefixes are also supported:
//! 
//! ```rust
//! # extern crate mhlog
//! # use mhlog::info;
//! mhlog::info_prefix_fn(|| format!("[{}]", "INFO"));
//! info!("Hello dynamic world!");
//! ```
//!
//! Features
//! --------
//!
//! ### Writing to stdout and stderr
//!
//! By default [`err!()`] and [`warn!()`] writes to stderr. The rest writes to stdout.
//! 
//! To force all logging to stderr enable the `only_stderr` feature:
//!
//! ```toml
//! [dependencies]
//! mhlog = { version = "*", features = ["only_stderr"] }
//! ```
//! 
//! Or, to force all logging to stdout enable the `only_stdout` feature:
//!
//! ```toml
//! [dependencies]
//! mhlog = { version = "*", features = ["only_stdout"] }
//! ```
//!
//! ### Coloured log messages
//!
//! Coloured log messages can be enabled with the `colours` feature.
//!
//! ```toml
//! [dependencies]
//! mhlog = { version = "*", features = ["colours"] }
//! ```
//!
//! [`debug!()`]: macro.debug.html
//! [`verbose!()`]: macro.verbose.html
//! [`info!()`]: macro.info.html
//! [`warn!()`]: macro.warn.html
//! [`err!()`]: macro.err.html

#[macro_use]
extern crate lazy_static;
#[cfg(feature = "colours")]
extern crate console;

use std::sync::RwLock;

lazy_static! {
    static ref PREFIXES: RwLock<LogPrefixes> = RwLock::new(LogPrefixes::new());
    static ref VERBOSE: RwLock<bool> = RwLock::new(false);
    static ref DEBUG: RwLock<bool> = RwLock::new(false);
}

/// Print a message with the error prefix.
/// 
/// By default `err` will write to stderr. This can be changed with the `only_stdout` feature.
/// 
/// To change the error prefix use [`error_prefix_str`] or [`error_prefix_fn`].
/// 
/// [`error_prefix_fn`]: fn.error_prefix_fn.html
/// [`error_prefix_str`]: fn.error_prefix_str.html
#[macro_export]
macro_rules! err {
    ($($arg:tt)+) => (
        $crate::_log($crate::Severity::Err, format!($($arg)+));
    )
}

/// Print a message with the warning prefix.
/// 
/// By default `warn` will write to stderr. This can be changed with the `only_stdout` feature.
/// 
/// To change the warning prefix use [`warning_prefix_str`] or [`warning_prefix_fn`].
/// 
/// [`warning_prefix_fn`]: fn.warning_prefix_fn.html
/// [`warning_prefix_str`]: fn.warning_prefix_str.html
#[macro_export]
macro_rules! warn {
    ($($arg:tt)+) => (
        $crate::_log($crate::Severity::Warn, format!($($arg)+));
    )
}

/// Print a message with the info prefix.
/// 
/// By default `info` will write to stdout. This can be changed with the `only_stderr` feature.
/// 
/// To change the info prefix use [`info_prefix_str`] or [`info_prefix_fn`].
/// 
/// [`info_prefix_fn`]: fn.info_prefix_fn.html
/// [`info_prefix_str`]: fn.info_prefix_str.html
#[macro_export]
macro_rules! info {
    ($($arg:tt)+) => ({
        $crate::_log($crate::Severity::Info, format!($($arg)+));
    })
}

/// Print a message with the info prefix if verbose printing is enabled.
/// 
/// To enable verbose messages use [`set_verbose`].
/// 
/// By default `verbose` will write to stdout. This can be changed with the `only_stderr` feature.
/// 
/// To change the verbose prefix use [`info_prefix_str`] or [`info_prefix_fn`].
/// 
/// [`set_verbose`]: fn.set_verbose.html
/// [`info_prefix_fn`]: fn.info_prefix_fn.html
/// [`info_prefix_str`]: fn.info_prefix_str.html
#[macro_export]
macro_rules! verbose {
    ($($arg:tt)+) => ({
        $crate::_log($crate::Severity::Verbose, format!($($arg)+));
    })
}

/// Print a message with the debug prefix if debug printing is enabled.
/// 
/// To enable debug messages use [`set_debug`].
/// 
/// By default `debug` will write to stdout. This can be changed with the `only_stderr` feature.
/// 
/// To change the debug prefix use [`debug_prefix_str`] or [`debug_prefix_fn`].
/// 
/// [`set_debug`]: fn.set_debug.html
/// [`debug_prefix_fn`]: fn.debug_prefix_fn.html
/// [`debug_prefix_str`]: fn.debug_prefix_str.html
#[macro_export]
macro_rules! debug {
    ($($arg:tt)+) => ({
        $crate::_log($crate::Severity::Debug, format!($($arg)+));
    })
}

/// Print a message with the error prefix and exit with error code 1.
/// See [`err!()`]
/// 
/// [`err!()`]: macro.err.html
#[macro_export]
macro_rules! bail {
    ($($arg:tt)+) => ({
        $crate::err!($($arg)+);
        std::process::exit(1);
    });
}

#[doc(hidden)]
pub fn _log(severity: Severity, msg: String) {
    use std::io::{stderr, stdout, Write};

    if severity.suppressed() {
        return
    }

    let txt = format!("{} {}\n", severity.prefix(), msg);
    #[cfg(feature = "colours")]
    let txt = severity.style(txt).to_string();

    if severity.to_stderr() {
        let _ = stderr().lock().write_all(txt.as_bytes());
    } else {
        let _ = stdout().lock().write_all(txt.as_bytes());
    }
}

// -----------------------------------------------------------------------------
// Config

/// Enable/disable debug messages.
/// 
/// By default debug messages are suppressed.
/// 
pub fn set_debug(val: bool) {
    let mut dbg = DEBUG.write().unwrap();
    *dbg = val;
}

/// Enable/disable verbose messages.
/// 
/// By default verbose messages are suppressed.
/// 
pub fn set_verbose(val: bool) {
    let mut v = VERBOSE.write().unwrap();
    *v = val;
}

/// Change the error prefix to a new static value.
pub fn error_prefix_str(s: String) {
    let mut pre = PREFIXES.write().unwrap();
    pre.err_str = s;
}

/// Change the warning prefix to a new static value.
pub fn warning_prefix_str(s: String) {
    let mut pre = PREFIXES.write().unwrap();
    pre.warn_str = s;
}

/// Change the info prefix to a new static value.
pub fn info_prefix_str(s: String) {
    let mut pre = PREFIXES.write().unwrap();
    pre.info_str = s;
}

/// Change the debug prefix to a new static value.
pub fn debug_prefix_str(s: String) {
    let mut pre = PREFIXES.write().unwrap();
    pre.debug_str = s;
}

/// Change the error prefix to a dynamic value.
pub fn error_prefix_fn(f: PrefixFn) {
    let mut pre = PREFIXES.write().unwrap();
    pre.err_fn = Some(f);
}

/// Change the warning prefix to a dynamic value.
pub fn warning_prefix_fn(f: PrefixFn) {
    let mut pre = PREFIXES.write().unwrap();
    pre.warn_fn = Some(f);
}

/// Change the info prefix to a dynamic value.
pub fn info_prefix_fn(f: PrefixFn) {
    let mut pre = PREFIXES.write().unwrap();
    pre.info_fn = Some(f);
}

/// Change the debug prefix to a dynamic value.
pub fn debug_prefix_fn(f: PrefixFn) {
    let mut pre = PREFIXES.write().unwrap();
    pre.debug_fn = Some(f);
}

// -----------------------------------------------------------------------------
// Severity

/// Log severity provides a common interface to all functionality which
/// depends on the severity of a log message. Such as colouring, prefix,
/// and stdout/stderr.
/// 
#[doc(hidden)]
pub enum Severity {
    Err,
    Warn,
    Info,
    Verbose,
    Debug,
}

impl Severity {
    #[cfg(feature = "colours")]
    pub fn style(&self, txt: String) -> console::StyledObject<String> {
        use console::style;
        use Severity::*;

        let obj = match self {
            Err => style(txt).red(),
            Warn => style(txt).yellow(),
            Info|Verbose => style(txt),
            Debug => style(txt).dim(),
        };

        if self.to_stderr() {
            obj.for_stderr()
        } else {
            obj.for_stdout()
        }
    }

    pub fn to_stderr(&self) -> bool {
        use Severity::*;
        if cfg!(feature = "only_stderr") {
            return true
        }
        if cfg!(feature = "only_stdout") {
            return false
        }
        match self {
            Err|Warn => true,
            _ => false,
        }
    }

    pub fn prefix(&self) -> String {
        use Severity::*;
        let pre = PREFIXES.read().unwrap();
        match self {
            Err => pre.err(),
            Warn => pre.warn(),
            Info|Verbose => pre.info(),
            Debug => pre.debug(),
        }
    }

    pub fn suppressed(&self) -> bool {
        use Severity::*;
        match self {
            Debug => !*DEBUG.read().unwrap(),
            Verbose => !*VERBOSE.read().unwrap(),
            _ => false,
        }
    }
}


// -----------------------------------------------------------------------------
// Prefixes

/// Function signature for prefix generators.
pub type PrefixFn = fn() -> String;

/// LogPrefixes maintains the state of prefix values, either
/// constant or generated for each message.
/// 
#[derive(Debug, Default)]
struct LogPrefixes {
    err_fn: Option<PrefixFn>,
    warn_fn: Option<PrefixFn>,
    info_fn: Option<PrefixFn>,
    debug_fn: Option<PrefixFn>,
    err_str: String,
    warn_str: String,
    info_str: String,
    debug_str: String,
}

impl LogPrefixes {
    pub fn new() -> Self {
        LogPrefixes {
            err_str: "[!!]".to_string(),
            warn_str: "[!]".to_string(),
            info_str: "[*]".to_string(),
            debug_str: "[~]".to_string(),
            ..Default::default()
        }
    }

    pub fn err(&self) -> String {
        match self.err_fn {
            Some(f) => f(),
            None => self.err_str.clone(),
        }
    }

    pub fn warn(&self) -> String {
        match self.warn_fn {
            Some(f) => f(),
            None => self.warn_str.clone(),
        }
    }

    pub fn info(&self) -> String {
        match self.info_fn {
            Some(f) => f(),
            None => self.info_str.clone(),
        }
    }

    pub fn debug(&self) -> String {
        match self.debug_fn {
            Some(f) => f(),
            None => self.debug_str.clone(),
        }
    }
}