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 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
// Copyright 2016-2018 Doug Goldstein
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.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.
#![allow(clippy::needless_doctest_main)]
#![doc(html_root_url = "https://docs.rs/stderrlog/0.6.0")]
//! A simple logger to provide semantics similar to what is expected
//! of most UNIX utilities by logging to stderr and the higher the
//! verbosity the higher the log level. It supports the
//! ability to provide timestamps at different granularities. As
//! well as colorizing the different log levels.
//!
//! ## Simple Use Case
//!
//! ```rust
//! use log::*;
//!
//! fn main() {
//! stderrlog::new().module(module_path!()).init().unwrap();
//!
//! error!("some failure");
//!
//! // ...
//! }
//! ```
//!
//! # StructOpt Example
//!
//! ```
//! use log::*;
//! use structopt::StructOpt;
//!
//! /// A StructOpt example
//! #[derive(StructOpt, Debug)]
//! #[structopt()]
//! struct Opt {
//! /// Silence all output
//! #[structopt(short = "q", long = "quiet")]
//! quiet: bool,
//! /// Verbose mode (-v, -vv, -vvv, etc)
//! #[structopt(short = "v", long = "verbose", parse(from_occurrences))]
//! verbose: usize,
//! /// Timestamp (sec, ms, ns, none)
//! #[structopt(short = "t", long = "timestamp")]
//! ts: Option<stderrlog::Timestamp>,
//! }
//!
//! fn main() {
//! let opt = Opt::from_args();
//!
//! stderrlog::new()
//! .module(module_path!())
//! .quiet(opt.quiet)
//! .verbosity(opt.verbose)
//! .timestamp(opt.ts.unwrap_or(stderrlog::Timestamp::Off))
//! .init()
//! .unwrap();
//! trace!("trace message");
//! debug!("debug message");
//! info!("info message");
//! warn!("warn message");
//! error!("error message");
//! }
//! ```
//!
//! ## docopt Example
//!
//! ```rust
//! use log::*;
//! use docopt::Docopt;
//! use serde::Deserialize;
//!
//! const USAGE: &'static str = "
//! Usage: program [-q] [-v...]
//! ";
//!
//! #[derive(Debug, Deserialize)]
//! struct Args {
//! flag_q: bool,
//! flag_v: usize,
//! }
//!
//! fn main() {
//! let args: Args = Docopt::new(USAGE)
//! .and_then(|d| d.deserialize())
//! .unwrap_or_else(|e| e.exit());
//!
//! stderrlog::new()
//! .module(module_path!())
//! .quiet(args.flag_q)
//! .timestamp(stderrlog::Timestamp::Second)
//! .verbosity(args.flag_v)
//! .init()
//! .unwrap();
//! trace!("trace message");
//! debug!("debug message");
//! info!("info message");
//! warn!("warn message");
//! error!("error message");
//!
//! // ...
//! }
//! ```
//!
//! # clap Example
//!
//! ```
//! use clap::{Arg, App, crate_version};
//! use log::*;
//! use std::str::FromStr;
//!
//! fn main() {
//! let m = App::new("stderrlog example")
//! .version(crate_version!())
//! .arg(Arg::with_name("verbosity")
//! .short('v')
//! .takes_value(true)
//! .multiple(true)
//! .help("Increase message verbosity"))
//! .arg(Arg::with_name("quiet")
//! .short('q')
//! .help("Silence all output"))
//! .arg(Arg::with_name("timestamp")
//! .short('t')
//! .help("prepend log lines with a timestamp")
//! .takes_value(true)
//! .possible_values(&["none", "sec", "ms", "ns"]))
//! .get_matches();
//!
//! let verbose = m.occurrences_of("verbosity") as usize;
//! let quiet = m.is_present("quiet");
//! let ts = m.value_of("timestamp").map(|v| {
//! stderrlog::Timestamp::from_str(v).unwrap_or_else(|_| {
//! clap::Error::raw(clap::ErrorKind::InvalidValue, "invalid value for 'timestamp'").exit()
//! })
//! }).unwrap_or(stderrlog::Timestamp::Off);
//!
//! stderrlog::new()
//! .module(module_path!())
//! .quiet(quiet)
//! .verbosity(verbose)
//! .timestamp(ts)
//! .init()
//! .unwrap();
//! trace!("trace message");
//! debug!("debug message");
//! info!("info message");
//! warn!("warn message");
//! error!("error message");
//! }
//! ```
//!
//! ### `log` Compatibility
//!
//! The 0.5.x versions of `stderrlog` aim to provide compatibility with
//! applications using `log` >= 0.4.11.
//!
//! ### Rust Compatibility
//!
//! `stderrlog` is serious about backwards compat. `stderrlog`
//! pins the minimum required version of Rust in the CI build.
//! Bumping the minimum version of Rust is a minor breaking
//! change and requires a minor version to be bumped.
//!
//! The minimum supported Rust version for this release is 1.48.0.
//!
//! ### Module Level Logging
//!
//! `stderrlog` has the ability to limit the components which can log.
//! Many crates use [log](https://docs.rs/log/*/log/) but you may not
//! want their output in your application. For example
//! [hyper](https://docs.rs/hyper/*/hyper/) makes heavy use of log but
//! when your application receives `-vvvvv` to enable the `trace!()`
//! messages you don't want the output of `hyper`'s `trace!()` level.
//!
//! To support this `stderrlog` includes a `module()` method allowing
//! you to specify the modules that are allowed to log. The examples
//! above use the `module_path!()` macro to enable logging only for
//! the binary itself but none of its dependencies. To enable logging
//! from extra crates just add another call to `module()` with the
//! name of the crate. To enable logging for only a module within
//! that crate specify `crate::module` to `module()`. crates and
//! modules will be named the same way would would include them in
//! source code with `use` (e.g. `some-crate` would be `some_crate`).
//!
//! For a good example of how the module level logging works see the
//! [large-example
//! crate](https://github.com/cardoe/stderrlog-rs/tree/master/examples/large-example)
//! under examples, you'll want to run the
//! following binaries to see all the examples:
//!
//! - `cargo run --bin large-example --`
//! - `cargo run --bin another --`
//! - `cargo run --bin yet --`
//!
//! ### Features
//!
//! `stderrlog` has the following default crate features, which can be disabled
//! to reduce the number of dependencies:
//!
//! - `timestamps`: Provides support for log timestamp prefixes (uses the `chrono` crate).
#[cfg(feature = "timestamps")]
use chrono::Local;
use is_terminal::IsTerminal;
use log::{Level, LevelFilter, Log, Metadata, Record};
use std::cell::RefCell;
use std::fmt;
use std::io::{self, Write};
#[cfg(feature = "timestamps")]
use std::str::FromStr;
use termcolor::{Color, ColorSpec, StandardStream, WriteColor};
pub use termcolor::ColorChoice;
use thread_local::ThreadLocal;
/// State of the timestamping in the logger.
#[cfg(feature = "timestamps")]
#[derive(Clone, Copy, Debug)]
pub enum Timestamp {
/// Disable timestamping of log messages
Off,
/// Timestamp with second granularity
Second,
/// Timestamp with millisecond granularity
Millisecond,
/// Timestamp with microsecond granularity
Microsecond,
/// Timestamp with nanosecond granularity
Nanosecond,
}
/// Provides a quick conversion of the following:
///
/// - "sec" -> `Timestamp::Second`
/// - "ms" -> `Timestamp::Millisecond`
/// - "us" -> `Timestamp::Microsecond`
/// - "ns" -> `Timestamp::Nanosecond`
/// - "none" | "off" -> `Timestamp::Off`
///
/// This is provided as a helper for argument parsers
#[cfg(feature = "timestamps")]
impl FromStr for Timestamp {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"ns" => Ok(Timestamp::Nanosecond),
"ms" => Ok(Timestamp::Millisecond),
"us" => Ok(Timestamp::Microsecond),
"sec" => Ok(Timestamp::Second),
"none" | "off" => Ok(Timestamp::Off),
_ => Err("invalid value".into()),
}
}
}
/// Data specific to this logger
pub struct StdErrLog {
verbosity: LevelFilter,
quiet: bool,
show_level: bool,
#[cfg(feature = "timestamps")]
timestamp: Timestamp,
modules: Vec<String>,
writer: ThreadLocal<RefCell<StandardStream>>,
color_choice: ColorChoice,
show_module_names: bool,
}
impl fmt::Debug for StdErrLog {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let mut builder = f.debug_struct("StdErrLog");
builder
.field("verbosity", &self.verbosity)
.field("quiet", &self.quiet)
.field("show_level", &self.show_level);
#[cfg(feature = "timestamps")]
builder.field("timestamp", &self.timestamp);
builder
.field("modules", &self.modules)
.field("writer", &"stderr")
.field("color_choice", &self.color_choice)
.field("show_module_names", &self.show_module_names)
.finish()
}
}
impl Clone for StdErrLog {
fn clone(&self) -> StdErrLog {
StdErrLog {
modules: self.modules.clone(),
writer: ThreadLocal::new(),
..*self
}
}
}
impl Log for StdErrLog {
fn enabled(&self, metadata: &Metadata) -> bool {
metadata.level() <= self.log_level_filter() && self.includes_module(metadata.target())
}
fn log(&self, record: &Record) {
// if logging isn't enabled for this level do a quick out
if !self.enabled(record.metadata()) {
return;
}
let writer = self
.writer
.get_or(|| RefCell::new(StandardStream::stderr(self.color_choice)));
let writer = writer.borrow_mut();
let mut writer = io::LineWriter::new(writer.lock());
let color = match record.metadata().level() {
Level::Error => Color::Red,
Level::Warn => Color::Yellow,
Level::Info => Color::Blue,
Level::Debug => Color::Cyan,
Level::Trace => Color::Magenta,
};
{
// A failure here indicates the stream closed. Do not panic.
writer
.get_mut()
.set_color(ColorSpec::new().set_fg(Some(color)))
.ok();
}
if self.show_module_names {
let _ = write!(writer, "{}: ", record.metadata().target());
}
#[cfg(feature = "timestamps")]
match self.timestamp {
Timestamp::Second => {
let fmt = "%Y-%m-%dT%H:%M:%S%:z";
let _ = write!(writer, "{} - ", Local::now().format(fmt));
}
Timestamp::Millisecond => {
let fmt = "%Y-%m-%dT%H:%M:%S%.3f%:z";
let _ = write!(writer, "{} - ", Local::now().format(fmt));
}
Timestamp::Microsecond => {
let fmt = "%Y-%m-%dT%H:%M:%S%.6f%:z";
let _ = write!(writer, "{} - ", Local::now().format(fmt));
}
Timestamp::Nanosecond => {
let fmt = "%Y-%m-%dT%H:%M:%S%.9f%:z";
let _ = write!(writer, "{} - ", Local::now().format(fmt));
}
Timestamp::Off => {}
}
if self.show_level {
let _ = write!(writer, "{} ", record.level());
}
writer.flush().ok();
{
// A failure here indicates the stream closed. Do not panic.
writer.get_mut().reset().ok();
}
let _ = writeln!(writer, "{}", record.args());
}
fn flush(&self) {
let writer = self
.writer
.get_or(|| RefCell::new(StandardStream::stderr(self.color_choice)));
let mut writer = writer.borrow_mut();
writer.flush().ok();
}
}
pub enum LogLevelNum {
Off,
Error,
Warn,
Info,
Debug,
Trace,
}
impl From<usize> for LogLevelNum {
fn from(verbosity: usize) -> Self {
match verbosity {
0 => LogLevelNum::Error,
1 => LogLevelNum::Warn,
2 => LogLevelNum::Info,
3 => LogLevelNum::Debug,
_ => LogLevelNum::Trace,
}
}
}
impl From<Level> for LogLevelNum {
fn from(l: Level) -> Self {
match l {
Level::Error => LogLevelNum::Error,
Level::Warn => LogLevelNum::Warn,
Level::Info => LogLevelNum::Info,
Level::Debug => LogLevelNum::Debug,
Level::Trace => LogLevelNum::Trace,
}
}
}
impl From<LevelFilter> for LogLevelNum {
fn from(l: LevelFilter) -> Self {
match l {
LevelFilter::Off => LogLevelNum::Off,
LevelFilter::Error => LogLevelNum::Error,
LevelFilter::Warn => LogLevelNum::Warn,
LevelFilter::Info => LogLevelNum::Info,
LevelFilter::Debug => LogLevelNum::Debug,
LevelFilter::Trace => LogLevelNum::Trace,
}
}
}
impl StdErrLog {
/// creates a new stderr logger
pub fn new() -> StdErrLog {
StdErrLog {
verbosity: LevelFilter::Error,
quiet: false,
show_level: true,
#[cfg(feature = "timestamps")]
timestamp: Timestamp::Off,
modules: Vec::new(),
writer: ThreadLocal::new(),
color_choice: ColorChoice::Auto,
show_module_names: false,
}
}
/// Sets the verbosity level of messages that will be displayed
///
/// Values can be supplied as:
/// - usize
/// - log::Level
/// - log::LevelFilter
/// - LogLevelNum
///
/// Values map as follows:
/// 0 -> Error
/// 1 -> Warn
/// 2 -> Info
/// 3 -> Debug
/// 4 or higher -> Trace
pub fn verbosity<V: Into<LogLevelNum>>(&mut self, verbosity: V) -> &mut StdErrLog {
self.verbosity = match verbosity.into() {
LogLevelNum::Off => LevelFilter::Off,
LogLevelNum::Error => LevelFilter::Error,
LogLevelNum::Warn => LevelFilter::Warn,
LogLevelNum::Info => LevelFilter::Info,
LogLevelNum::Debug => LevelFilter::Debug,
LogLevelNum::Trace => LevelFilter::Trace,
};
self
}
/// silence all output, no matter the value of verbosity
pub fn quiet(&mut self, quiet: bool) -> &mut StdErrLog {
self.quiet = quiet;
self
}
/// Enables or disables the use of levels in log messages (default is true)
pub fn show_level(&mut self, levels: bool) -> &mut StdErrLog {
self.show_level = levels;
self
}
/// Enables or disables the use of timestamps in log messages
#[cfg(feature = "timestamps")]
pub fn timestamp(&mut self, timestamp: Timestamp) -> &mut StdErrLog {
self.timestamp = timestamp;
self
}
/// Enables or disables the use of color in log messages
pub fn color(&mut self, choice: ColorChoice) -> &mut StdErrLog {
self.color_choice = choice;
self
}
/// specify a module to allow to log to stderr
pub fn module<T: Into<String>>(&mut self, module: T) -> &mut StdErrLog {
self._module(module.into())
}
/// Enables or disables the use of module names in log messages
pub fn show_module_names(&mut self, show_module_names: bool) -> &mut StdErrLog {
self.show_module_names = show_module_names;
self
}
fn _module(&mut self, module: String) -> &mut StdErrLog {
// If Ok, the module was already found
if let Err(i) = self.modules.binary_search(&module) {
// If a super-module of the current module already exists, don't insert this module
if i == 0 || !is_submodule(&self.modules[i - 1], &module) {
// Remove any submodules of the module we're inserting
let submodule_count = self.modules[i..]
.iter()
.take_while(|possible_submodule| is_submodule(&module, possible_submodule))
.count();
self.modules.drain(i..i + submodule_count);
self.modules.insert(i, module);
}
}
self
}
/// specify modules to allow to log to stderr
pub fn modules<T: Into<String>, I: IntoIterator<Item = T>>(
&mut self,
modules: I,
) -> &mut StdErrLog {
for module in modules {
self.module(module);
}
self
}
fn log_level_filter(&self) -> LevelFilter {
if self.quiet {
LevelFilter::Off
} else {
self.verbosity
}
}
fn includes_module(&self, module_path: &str) -> bool {
// If modules is empty, include all module paths
if self.modules.is_empty() {
return true;
}
// if a prefix of module_path is in `self.modules`, it must
// be located at the first location before
// where module_path would be.
match self
.modules
.binary_search_by(|module| module.as_str().cmp(module_path))
{
Ok(_) => {
// Found exact module: return true
true
}
Err(0) => {
// if there's no item which would be located before module_path, no prefix is there
false
}
Err(i) => is_submodule(&self.modules[i - 1], module_path),
}
}
/// sets the the logger as active
pub fn init(&mut self) -> Result<(), log::SetLoggerError> {
/* if the user is using auto color choices then
* detect if stderr is a tty, if it is continue
* otherwise turn off colors by default
*/
self.color_choice = match self.color_choice {
ColorChoice::Auto => {
if io::stderr().is_terminal() {
ColorChoice::Auto
} else {
ColorChoice::Never
}
}
other => other,
};
log::set_max_level(self.log_level_filter());
log::set_boxed_logger(Box::new(self.clone()))
}
}
impl Default for StdErrLog {
fn default() -> Self {
StdErrLog::new()
}
}
/// creates a new stderr logger
pub fn new() -> StdErrLog {
StdErrLog::new()
}
fn is_submodule(parent: &str, possible_child: &str) -> bool {
// Treat as bytes, because we'll be doing slicing, and we only care about ':' chars
let parent = parent.as_bytes();
let possible_child = possible_child.as_bytes();
// a longer module path cannot be a parent of a shorter module path
if parent.len() > possible_child.len() {
return false;
}
// If the path up to the parent isn't the same as the child,
if parent != &possible_child[..parent.len()] {
return false;
}
// Either the path is exactly the same, or the sub module should have a "::" after
// the length of the parent path. This prevents things like 'a::bad' being considered
// a submodule of 'a::b'
parent.len() == possible_child.len()
|| possible_child.get(parent.len()..parent.len() + 2) == Some(b"::")
}
#[cfg(test)]
mod tests {
use super::{is_submodule, StdErrLog};
#[test]
fn submodule() {
assert!(is_submodule("a", "a::b::c::d"));
assert!(is_submodule("a::b::c", "a::b::c::d"));
assert!(is_submodule("a::b::c", "a::b::c"));
assert!(!is_submodule("a::b::c", "a::bad::c"));
assert!(!is_submodule("a::b::c", "a::b::cab"));
assert!(!is_submodule("a::b::c", "a::b::cab::d"));
assert!(!is_submodule("a::b::c", "a::b"));
assert!(!is_submodule("a::b::c", "a::bad"));
}
#[test]
fn test_default_level() {
super::new().module(module_path!()).init().unwrap();
assert_eq!(log::Level::Error, log::max_level())
}
#[test]
fn modules_display_all() {
let logger = StdErrLog::new();
assert!(logger.includes_module("good"));
}
#[test]
fn modules_display_exact_match() {
let mut logger = StdErrLog::new();
logger.module("good");
assert!(logger.includes_module("good"));
assert!(!logger.includes_module("bad"));
}
#[test]
fn modules_display_module() {
let mut logger = StdErrLog::new();
logger.module("good");
assert!(logger.includes_module("good::foo"));
assert!(logger.includes_module("good::bar"));
assert!(logger.includes_module("good"));
assert!(!logger.includes_module("bad"));
}
#[test]
fn modules_display_submodule() {
let mut logger = StdErrLog::new();
logger.module("good::foo");
assert!(logger.includes_module("good::foo"));
assert!(!logger.includes_module("good::bar"));
assert!(!logger.includes_module("good"));
assert!(!logger.includes_module("bad"));
}
}