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
// Copyright 2018-2024 argmin developers
//
// 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.
//! This crate contains loggers based on the `slog` crate.
//!
//! These loggers write general information about the optimization and information about the
//! progress of the optimization for each iteration of the algorithm to screen or into a file in
//! JSON format.
//! See [`SlogLogger`] for details regarding usage.
//!
//! # Usage
//!
//! Add the following line to your dependencies list:
//!
//! ```toml
//! [dependencies]
#![doc = concat!("argmin-observer-slog = \"", env!("CARGO_PKG_VERSION"), "\"")]
//! ```
//!
//! # License
//!
//! Licensed under either of
//!
//! * Apache License, Version 2.0,
//! ([LICENSE-APACHE](https://github.com/argmin-rs/argmin/blob/main/LICENSE-APACHE) or
//! <http://www.apache.org/licenses/LICENSE-2.0>)
//! * MIT License ([LICENSE-MIT](https://github.com/argmin-rs/argmin/blob/main/LICENSE-MIT) or
//! <http://opensource.org/licenses/MIT>)
//!
//! at your option.
//!
//! ## Contribution
//!
//! Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion
//! in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above,
//! without any additional terms or conditions.
use argmin::core::observers::Observe;
use argmin::core::{Error, State, KV};
use slog::{info, o, Drain, Key, Record, Serializer};
use slog_async::OverflowStrategy;
/// A logger using the [`slog`](https://crates.io/crates/slog) crate as backend.
#[derive(Clone)]
pub struct SlogLogger {
/// the logger
logger: slog::Logger,
}
impl SlogLogger {
/// Log to the terminal.
///
/// Will block execution when buffer is full.
///
/// # Example
///
/// ```
/// use argmin_observer_slog::SlogLogger;
///
/// let terminal_logger = SlogLogger::term();
/// ```
pub fn term() -> Self {
SlogLogger::term_internal(OverflowStrategy::Block)
}
/// Log to the terminal without blocking execution.
///
/// Messages may be lost in case of buffer overflow.
///
/// # Example
///
/// ```
/// use argmin_observer_slog::SlogLogger;
///
/// let terminal_logger = SlogLogger::term_noblock();
/// ```
pub fn term_noblock() -> Self {
SlogLogger::term_internal(OverflowStrategy::Drop)
}
/// Create terminal logger with a given `OverflowStrategy`.
fn term_internal(overflow_strategy: OverflowStrategy) -> Self {
let decorator = slog_term::TermDecorator::new().build();
let drain = slog_term::FullFormat::new(decorator)
.use_original_order()
.build()
.fuse();
let drain = slog_async::Async::new(drain)
.overflow_strategy(overflow_strategy)
.build()
.fuse();
SlogLogger {
logger: slog::Logger::root(drain, o!()),
}
}
/// Log JSON to a file while blocking execution in case of full buffers.
///
/// If `truncate` is set to `true`, the content of existing log files will be cleared.
///
/// Only available if the `serde1` feature is enabled.
///
/// # Example
///
/// ```
/// use argmin_observer_slog::SlogLogger;
///
/// let file_logger = SlogLogger::file("logfile.log", true);
/// ```
#[cfg(feature = "serde1")]
pub fn file<N: AsRef<str>>(file: N, truncate: bool) -> Result<Self, Error> {
SlogLogger::file_internal(file, OverflowStrategy::Block, truncate)
}
/// Log JSON to a file without blocking execution.
///
/// Messages may be lost in case of buffer overflow.
///
/// If `truncate` is set to `true`, the content of existing log files will be cleared.
///
/// Only available if the `serde1` feature is enabled.
///
/// # Example
///
/// ```
/// use argmin_observer_slog::SlogLogger;
///
/// let file_logger = SlogLogger::file_noblock("logfile.log", true);
/// ```
#[cfg(feature = "serde1")]
pub fn file_noblock<N: AsRef<str>>(file: N, truncate: bool) -> Result<Self, Error> {
SlogLogger::file_internal(file, OverflowStrategy::Drop, truncate)
}
/// Create file logger with a given `OverflowStrategy`.
///
/// Only available if the `serde1` feature is enabled.
#[cfg(feature = "serde1")]
fn file_internal<N: AsRef<str>>(
file: N,
overflow_strategy: OverflowStrategy,
truncate: bool,
) -> Result<Self, Error> {
// Logging to file
let file = std::fs::OpenOptions::new()
.create(true)
.write(true)
.truncate(truncate)
.open(file.as_ref())?;
let drain = std::sync::Mutex::new(slog_json::Json::new(file).build()).map(slog::Fuse);
let drain = slog_async::Async::new(drain)
.overflow_strategy(overflow_strategy)
.build()
.fuse();
Ok(SlogLogger {
logger: slog::Logger::root(drain, o!()),
})
}
}
struct SlogKV<'a>(&'a KV);
impl slog::KV for SlogKV<'_> {
fn serialize(&self, _record: &Record, serializer: &mut dyn Serializer) -> slog::Result {
for idx in self.0.kv.iter() {
serializer.emit_str(Key::from(idx.0.to_string()), &idx.1.to_string())?;
}
Ok(())
}
}
struct LogState<I>(I);
impl<I> slog::KV for LogState<&'_ I>
where
I: State,
{
fn serialize(&self, _record: &Record, serializer: &mut dyn Serializer) -> slog::Result {
for (k, &v) in self.0.get_func_counts().iter() {
serializer.emit_u64(Key::from(k.clone()), v)?;
}
serializer.emit_str(Key::from("best_cost"), &self.0.get_best_cost().to_string())?;
serializer.emit_str(Key::from("cost"), &self.0.get_cost().to_string())?;
serializer.emit_u64(Key::from("iter"), self.0.get_iter())?;
Ok(())
}
}
impl<I> Observe<I> for SlogLogger
where
I: State,
{
/// Log basic information about the optimization after initialization.
fn observe_init(&mut self, msg: &str, _state: &I, kv: &KV) -> Result<(), Error> {
info!(self.logger, "{}", msg; SlogKV(kv));
Ok(())
}
/// Logs information about the progress of the optimization after every iteration.
fn observe_iter(&mut self, state: &I, kv: &KV) -> Result<(), Error> {
info!(self.logger, ""; LogState(state), SlogKV(kv));
Ok(())
}
}
#[cfg(test)]
mod tests {
// TODO
}