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
// Copyright 2016 Victor Brekenfeld
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

//!
//! `simplelog` provides a series of logging facilities, that can be easily combined.
//!
//! - `SimpleLogger` (very basic logger that logs to stdout)
//! - `TermLogger` (advanced terminal logger, that splits to stdout/err and has color support) (can be excluded on unsupported platforms)
//! - `WriteLogger` (logs to a given struct implementing `Write`, e.g. a file)
//! - `CombinedLogger` (can be used to form combinations of the above loggers)
//!
//! Only one Logger should be initialized of the start of your program
//! through the `Logger::init(...)` method. For the actual calling syntax
//! take a look at the documentation of the specific implementation(s) you wanna use.
//!

#![deny(missing_docs)]

#[macro_use] extern crate log;
#[cfg(feature = "term")]
extern crate term;
extern crate time;

mod config;
mod loggers;

pub use self::config::Config;
pub use self::loggers::{SimpleLogger, WriteLogger, CombinedLogger};
#[cfg(feature = "term")]
pub use self::loggers::TermLogger;

pub use log::{LogLevel, LogLevelFilter};

use log::Log;

/// Trait to have a common interface to obtain the LogLevel of Loggers
///
/// Necessary for CombinedLogger to calculate
/// the lowest used LogLevel.
///
pub trait SharedLogger: Log {
    /// Returns the set LogLevel for this Logger
    ///
    /// # Examples
    ///
    /// ```
    /// # extern crate simplelog;
    /// # use simplelog::*;
    /// # fn main() {
    /// let logger = SimpleLogger::new(LogLevelFilter::Info, Config::default());
    /// println!("{}", logger.level());
    /// # }
    /// ```
    fn level(&self) -> LogLevelFilter;

    /// Inspect the config of a running Logger
    ///
    /// An Option is returned, because some Logger may not contain a Config
    ///
    /// # Examples
    ///
    /// ```
    /// # extern crate simplelog;
    /// # use simplelog::*;
    /// # fn main() {
    /// let logger = SimpleLogger::new(LogLevelFilter::Info, Config::default());
    /// println!("{:?}", logger.config());
    /// # }
    /// ```
    fn config(&self) -> Option<&Config>;

    /// Returns the logger as a Log trait object
    fn as_log(self: Box<Self>) -> Box<Log>;
}

#[cfg(test)]
mod tests {
    use std::io::Read;
    use std::fs::File;

    use super::*;

    #[test]
    fn test() {
        let mut i = 0;

        CombinedLogger::init(
            {
                let mut vec = Vec::new();
                let mut conf = Config {
                    time: None,
                    level: None,
                    target: None,
                    location: None,
                };

                for elem in vec![None, Some(LogLevel::Trace), Some(LogLevel::Debug), Some(LogLevel::Info), Some(LogLevel::Warn), Some(LogLevel::Error)]
                {
                    conf.location = elem;
                    conf.target = elem;
                    conf.level = elem;
                    conf.time = elem;
                    i += 1;

                    //error
                    vec.push(SimpleLogger::new(LogLevelFilter::Error, conf) as Box<SharedLogger>);
                    vec.push(TermLogger::new(LogLevelFilter::Error, conf).unwrap() as Box<SharedLogger>);
                    vec.push(WriteLogger::new(LogLevelFilter::Error, conf, File::create(&format!("error_{}.log", i)).unwrap()) as Box<SharedLogger>);

                    //warn
                    vec.push(SimpleLogger::new(LogLevelFilter::Warn, conf) as Box<SharedLogger>);
                    vec.push(TermLogger::new(LogLevelFilter::Warn, conf).unwrap() as Box<SharedLogger>);
                    vec.push(WriteLogger::new(LogLevelFilter::Warn, conf, File::create(&format!("warn_{}.log", i)).unwrap()) as Box<SharedLogger>);

                    //info
                    vec.push(SimpleLogger::new(LogLevelFilter::Info, conf) as Box<SharedLogger>);
                    vec.push(TermLogger::new(LogLevelFilter::Info, conf).unwrap() as Box<SharedLogger>);
                    vec.push(WriteLogger::new(LogLevelFilter::Info, conf, File::create(&format!("info_{}.log", i)).unwrap()) as Box<SharedLogger>);

                    //debug
                    vec.push(SimpleLogger::new(LogLevelFilter::Debug, conf) as Box<SharedLogger>);
                    vec.push(TermLogger::new(LogLevelFilter::Debug, conf).unwrap() as Box<SharedLogger>);
                    vec.push(WriteLogger::new(LogLevelFilter::Debug, conf, File::create(&format!("debug_{}.log", i)).unwrap()) as Box<SharedLogger>);

                    //trace
                    vec.push(SimpleLogger::new(LogLevelFilter::Trace, conf) as Box<SharedLogger>);
                    vec.push(TermLogger::new(LogLevelFilter::Trace, conf).unwrap() as Box<SharedLogger>);
                    vec.push(WriteLogger::new(LogLevelFilter::Trace, conf, File::create(&format!("trace_{}.log", i)).unwrap()) as Box<SharedLogger>);
                }

                vec
            }
        ).unwrap();

        println!("{}", i);

        error!("Test Error");
        warn!("Test Warning");
        info!("Test Information");
        debug!("Test Debug");
        trace!("Test Trace");

        for j in 1..i
        {
            let mut error = String::new();
            File::open(&format!("error_{}.log", j)).unwrap().read_to_string(&mut error).unwrap();
            let mut warn = String::new();
            File::open(&format!("warn_{}.log", j)).unwrap().read_to_string(&mut warn).unwrap();
            let mut info = String::new();
            File::open(&format!("info_{}.log", j)).unwrap().read_to_string(&mut info).unwrap();
            let mut debug = String::new();
            File::open(&format!("debug_{}.log", j)).unwrap().read_to_string(&mut debug).unwrap();
            let mut trace = String::new();
            File::open(&format!("trace_{}.log", j)).unwrap().read_to_string(&mut trace).unwrap();

            assert!(error.contains("Test Error"));
            assert!(!error.contains("Test Warning"));
            assert!(!error.contains("Test Information"));
            assert!(!error.contains("Test Debug"));
            assert!(!error.contains("Test Trace"));

            assert!(warn.contains("Test Error"));
            assert!(warn.contains("Test Warning"));
            assert!(!warn.contains("Test Information"));
            assert!(!warn.contains("Test Debug"));
            assert!(!warn.contains("Test Trace"));

            assert!(info.contains("Test Error"));
            assert!(info.contains("Test Warning"));
            assert!(info.contains("Test Information"));
            assert!(!info.contains("Test Debug"));
            assert!(!info.contains("Test Trace"));

            assert!(debug.contains("Test Error"));
            assert!(debug.contains("Test Warning"));
            assert!(debug.contains("Test Information"));
            assert!(debug.contains("Test Debug"));
            assert!(!debug.contains("Test Trace"));

            assert!(trace.contains("Test Error"));
            assert!(trace.contains("Test Warning"));
            assert!(trace.contains("Test Information"));
            assert!(trace.contains("Test Debug"));
            assert!(trace.contains("Test Trace"));
        }
    }
}