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 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871
// {{{ Crate docs
//! # Async drain for slog-rs
//!
//! `slog-rs` is an ecosystem of reusable components for structured, extensible,
//! composable logging for Rust.
//!
//! `slog-async` allows building `Drain`s that offload processing to another
//! thread. Typically, serialization and IO operations are slow enough that
//! they make logging hinder the performance of the main code. Sending log
//! records to another thread is much faster (ballpark of 100ns).
//!
//! Note: Unlike other logging solutions, `slog-rs` does not have a hardcoded
//! async logging implementation. This crate is just a reasonable reference
//! implementation. It should have good performance and work well in most use
//! cases. See the documentation and implementation for more details.
//!
//! It's relatively easy to implement your own `slog-rs` async logging. Feel
//! free to use this one as a starting point.
//!
//! ## Beware of `std::process::exit`
//!
//! When using `std::process::exit` to terminate a process with an exit code,
//! it is important to notice that destructors will not be called. This matters
//! for `slog_async` as it **prevents flushing** of the async drain and
//! **discards messages** that are not yet written.
//!
//! A way around this issue is encapsulate the construction of the logger into
//! its own function that returns before `std::process::exit` is called.
//!
//! ```
//! // ...
//! fn main() {
//! let exit_code = run(); // logger gets flushed as `run()` returns.
//! # if false {
//! # // this must not run or it'll end the doctest
//! std::process::exit(exit_code)
//! # }
//! }
//!
//! fn run() -> i32 {
//! // initialize the logger
//!
//! // ... do your thing ...
//!
//! 1 // exit code to return
//! }
//! ```
// }}}
// {{{ Imports & meta
#![warn(missing_docs)]
#[macro_use]
extern crate slog;
extern crate crossbeam_channel;
extern crate take_mut;
extern crate thread_local;
use crossbeam_channel::Sender;
use slog::{BorrowedKV, Level, Record, RecordStatic, SingleKV, KV};
use slog::{Key, OwnedKVList, Serializer};
use slog::Drain;
use std::fmt;
use std::sync;
use std::{io, thread};
use std::sync::atomic::AtomicUsize;
use std::sync::atomic::Ordering;
use std::sync::Mutex;
use take_mut::take;
use std::panic::{catch_unwind, AssertUnwindSafe};
// }}}
// {{{ Serializer
struct ToSendSerializer {
kv: Box<dyn KV + Send>,
}
impl ToSendSerializer {
fn new() -> Self {
ToSendSerializer { kv: Box::new(()) }
}
fn finish(self) -> Box<dyn KV + Send> {
self.kv
}
}
impl Serializer for ToSendSerializer {
fn emit_bool(&mut self, key: Key, val: bool) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_unit(&mut self, key: Key) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, ()))));
Ok(())
}
fn emit_none(&mut self, key: Key) -> slog::Result {
let val: Option<()> = None;
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_char(&mut self, key: Key, val: char) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_u8(&mut self, key: Key, val: u8) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_i8(&mut self, key: Key, val: i8) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_u16(&mut self, key: Key, val: u16) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_i16(&mut self, key: Key, val: i16) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_u32(&mut self, key: Key, val: u32) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_i32(&mut self, key: Key, val: i32) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_f32(&mut self, key: Key, val: f32) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_u64(&mut self, key: Key, val: u64) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_i64(&mut self, key: Key, val: i64) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_f64(&mut self, key: Key, val: f64) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
#[cfg(integer128)]
fn emit_u128(&mut self, key: Key, val: u128) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
#[cfg(integer128)]
fn emit_i128(&mut self, key: Key, val: i128) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_usize(&mut self, key: Key, val: usize) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_isize(&mut self, key: Key, val: isize) -> slog::Result {
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_str(&mut self, key: Key, val: &str) -> slog::Result {
let val = val.to_owned();
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
fn emit_arguments(
&mut self,
key: Key,
val: &fmt::Arguments,
) -> slog::Result {
let val = fmt::format(*val);
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
#[cfg(feature = "nested-values")]
fn emit_serde(
&mut self,
key: Key,
value: &slog::SerdeValue,
) -> slog::Result {
let val = value.to_sendable();
take(&mut self.kv, |kv| Box::new((kv, SingleKV(key, val))));
Ok(())
}
}
// }}}
// {{{ Async
// {{{ AsyncError
/// Errors reported by `Async`
#[derive(Debug)]
pub enum AsyncError {
/// Could not send record to worker thread due to full queue
Full,
/// Fatal problem - mutex or channel poisoning issue
Fatal(Box<dyn std::error::Error>),
}
impl<T> From<crossbeam_channel::TrySendError<T>> for AsyncError {
fn from(_: crossbeam_channel::TrySendError<T>) -> AsyncError {
AsyncError::Full
}
}
impl<T> From<crossbeam_channel::SendError<T>> for AsyncError {
fn from(_: crossbeam_channel::SendError<T>) -> AsyncError {
AsyncError::Fatal(Box::new(io::Error::new(
io::ErrorKind::BrokenPipe,
"The logger thread terminated",
)))
}
}
impl<T> From<std::sync::PoisonError<T>> for AsyncError {
fn from(err: std::sync::PoisonError<T>) -> AsyncError {
AsyncError::Fatal(Box::new(io::Error::new(
io::ErrorKind::BrokenPipe,
err.to_string(),
)))
}
}
/// `AsyncResult` alias
pub type AsyncResult<T> = std::result::Result<T, AsyncError>;
// }}}
// {{{ AsyncCore
/// `AsyncCore` builder
pub struct AsyncCoreBuilder<D>
where
D: slog::Drain<Err = slog::Never, Ok = ()> + Send + 'static,
{
chan_size: usize,
blocking: bool,
drain: D,
thread_name: Option<String>,
}
impl<D> AsyncCoreBuilder<D>
where
D: slog::Drain<Err = slog::Never, Ok = ()> + Send + 'static,
{
fn new(drain: D) -> Self {
AsyncCoreBuilder {
chan_size: 128,
blocking: false,
drain,
thread_name: None,
}
}
/// Configure a name to be used for the background thread.
///
/// The name must not contain '\0'.
///
/// # Panics
///
/// If a name with '\0' is passed.
pub fn thread_name(mut self, name: String) -> Self {
assert!(name.find('\0').is_none(), "Name with \\'0\\' in it passed");
self.thread_name = Some(name);
self
}
/// Set channel size used to send logging records to worker thread. When
/// buffer is full `AsyncCore` will start returning `AsyncError::Full` or block, depending on
/// the `blocking` configuration.
pub fn chan_size(mut self, s: usize) -> Self {
self.chan_size = s;
self
}
/// Should the logging call be blocking if the channel is full?
///
/// Default is false, in which case it'll return `AsyncError::Full`.
pub fn blocking(mut self, blocking: bool) -> Self {
self.blocking = blocking;
self
}
fn spawn_thread(self) -> (thread::JoinHandle<()>, Sender<AsyncMsg>) {
let (tx, rx) = crossbeam_channel::bounded(self.chan_size);
let mut builder = thread::Builder::new();
if let Some(thread_name) = self.thread_name {
builder = builder.name(thread_name);
}
let drain = self.drain;
let join = builder
.spawn(move || {
let drain = AssertUnwindSafe(&drain);
// catching possible unwinding panics which can occur in used inner Drain implementation
if let Err(panic_cause) = catch_unwind(move || loop {
match rx.recv() {
Ok(AsyncMsg::Record(r)) => {
if r.log_to(&*drain).is_err() {
eprintln!("slog-async failed while writing");
return;
}
}
Ok(AsyncMsg::Finish) => return,
Err(recv_error) => {
eprintln!("slog-async failed while receiving: {recv_error}");
return;
}
}
}) {
eprintln!("slog-async failed with panic: {panic_cause:?}")
}
})
.unwrap();
(join, tx)
}
/// Build `AsyncCore`
pub fn build(self) -> AsyncCore {
self.build_no_guard()
}
/// Build `AsyncCore`
pub fn build_no_guard(self) -> AsyncCore {
let blocking = self.blocking;
let (join, tx) = self.spawn_thread();
AsyncCore {
ref_sender: tx,
tl_sender: thread_local::ThreadLocal::new(),
join: Mutex::new(Some(join)),
blocking,
}
}
/// Build `AsyncCore` with `AsyncGuard`
///
/// See `AsyncGuard` for more information.
pub fn build_with_guard(self) -> (AsyncCore, AsyncGuard) {
let blocking = self.blocking;
let (join, tx) = self.spawn_thread();
(
AsyncCore {
ref_sender: tx.clone(),
tl_sender: thread_local::ThreadLocal::new(),
join: Mutex::new(None),
blocking,
},
AsyncGuard {
join: Some(join),
tx,
},
)
}
}
/// Async guard
///
/// All `Drain`s are reference-counted by every `Logger` that uses them.
/// `Async` drain runs a worker thread and sends a termination (and flushing)
/// message only when being `drop`ed. Because of that it's actually
/// quite easy to have a left-over reference to a `Async` drain, when
/// terminating: especially on `panic`s or similar unwinding event. Typically
/// it's caused be a leftover reference like `Logger` in thread-local variable,
/// global variable, or a thread that is not being joined on. It might be a
/// program bug, but logging should work reliably especially in case of bugs.
///
/// `AsyncGuard` is a remedy: it will send a flush and termination message to
/// a `Async` worker thread, and wait for it to finish on it's own `drop`. Using it
/// is a simplest way to guarantee log flushing when using `slog_async`.
pub struct AsyncGuard {
// Should always be `Some`. `None` only
// after `drop`
join: Option<thread::JoinHandle<()>>,
tx: Sender<AsyncMsg>,
}
impl Drop for AsyncGuard {
fn drop(&mut self) {
let _err: Result<(), Box<dyn std::error::Error>> = {
|| {
let _ = self.tx.send(AsyncMsg::Finish);
let join = self.join.take().unwrap();
if join.thread().id() != thread::current().id() {
// See AsyncCore::drop for rationale of this branch.
join.join().map_err(|_| {
io::Error::new(
io::ErrorKind::BrokenPipe,
"Logging thread worker join error",
)
})?;
}
Ok(())
}
}();
}
}
/// Core of `Async` drain
///
/// See `Async` for documentation.
///
/// Wrapping `AsyncCore` allows implementing custom overflow (and other errors)
/// handling strategy.
///
/// Note: On drop `AsyncCore` waits for it's worker-thread to finish (after
/// handling all previous `Record`s sent to it). If you can't tolerate the
/// delay, make sure you drop it eg. in another thread.
pub struct AsyncCore {
ref_sender: Sender<AsyncMsg>,
tl_sender: thread_local::ThreadLocal<Sender<AsyncMsg>>,
join: Mutex<Option<thread::JoinHandle<()>>>,
blocking: bool,
}
impl AsyncCore {
/// New `AsyncCore` with default parameters
pub fn new<D>(drain: D) -> Self
where
D: slog::Drain<Err = slog::Never, Ok = ()> + Send + 'static,
D: std::panic::RefUnwindSafe,
{
AsyncCoreBuilder::new(drain).build()
}
/// Build `AsyncCore` drain with custom parameters
pub fn custom<
D: slog::Drain<Err = slog::Never, Ok = ()> + Send + 'static,
>(
drain: D,
) -> AsyncCoreBuilder<D> {
AsyncCoreBuilder::new(drain)
}
fn get_sender(
&self,
) -> Result<
&crossbeam_channel::Sender<AsyncMsg>,
std::sync::PoisonError<
sync::MutexGuard<crossbeam_channel::Sender<AsyncMsg>>,
>,
> {
self.tl_sender.get_or_try(|| Ok(self.ref_sender.clone()))
}
/// Send `AsyncRecord` to a worker thread.
fn send(&self, r: AsyncRecord) -> AsyncResult<()> {
let sender = self.get_sender()?;
if self.blocking {
sender.send(AsyncMsg::Record(r))?;
} else {
sender.try_send(AsyncMsg::Record(r))?;
}
Ok(())
}
}
impl Drain for AsyncCore {
type Ok = ();
type Err = AsyncError;
fn log(
&self,
record: &Record,
logger_values: &OwnedKVList,
) -> AsyncResult<()> {
self.send(AsyncRecord::from(record, logger_values))
}
}
/// Serialized record.
pub struct AsyncRecord {
msg: String,
level: Level,
location: Box<slog::RecordLocation>,
tag: String,
logger_values: OwnedKVList,
kv: Box<dyn KV + Send>,
}
impl AsyncRecord {
/// Serializes a `Record` and an `OwnedKVList`.
pub fn from(record: &Record, logger_values: &OwnedKVList) -> Self {
let mut ser = ToSendSerializer::new();
record
.kv()
.serialize(record, &mut ser)
.expect("`ToSendSerializer` can't fail");
AsyncRecord {
msg: fmt::format(*record.msg()),
level: record.level(),
location: Box::new(*record.location()),
tag: String::from(record.tag()),
logger_values: logger_values.clone(),
kv: ser.finish(),
}
}
/// Writes the record to a `Drain`.
pub fn log_to<D: Drain>(self, drain: &D) -> Result<D::Ok, D::Err> {
let rs = RecordStatic {
location: &*self.location,
level: self.level,
tag: &self.tag,
};
drain.log(
&Record::new(
&rs,
&format_args!("{}", self.msg),
BorrowedKV(&self.kv),
),
&self.logger_values,
)
}
/// Deconstruct this `AsyncRecord` into a record and `OwnedKVList`.
pub fn as_record_values(&self, mut f: impl FnMut(&Record, &OwnedKVList)) {
let rs = RecordStatic {
location: &*self.location,
level: self.level,
tag: &self.tag,
};
f(
&Record::new(
&rs,
&format_args!("{}", self.msg),
BorrowedKV(&self.kv),
),
&self.logger_values,
)
}
}
enum AsyncMsg {
Record(AsyncRecord),
Finish,
}
impl Drop for AsyncCore {
fn drop(&mut self) {
let _err: Result<(), Box<dyn std::error::Error>> = {
|| {
if let Some(join) = self.join.lock()?.take() {
let _ = self.get_sender()?.send(AsyncMsg::Finish);
if join.thread().id() != thread::current().id() {
// A custom Drain::log implementation could dynamically
// swap out the logger which eventually invokes
// AsyncCore::drop in the worker thread.
// If we drop the AsyncCore inside the logger thread,
// this join() either panic or dead-lock.
// TODO: Figure out whether skipping join() instead of
// panicking is desirable.
join.join().map_err(|_| {
io::Error::new(
io::ErrorKind::BrokenPipe,
"Logging thread worker join error",
)
})?;
}
}
Ok(())
}
}();
}
}
// }}}
/// Behavior used when the channel is full.
///
/// # Note
///
/// More variants may be added in the future, without considering it a breaking change.
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub enum OverflowStrategy {
/// The message gets dropped and a message with number of dropped is produced once there's
/// space.
///
/// This is the default.
///
/// Note that the message with number of dropped messages takes one slot in the channel as
/// well.
DropAndReport,
/// The message gets dropped silently.
Drop,
/// The caller is blocked until there's enough space.
Block,
#[doc(hidden)]
DoNotMatchAgainstThisAndReadTheDocs,
}
/// `Async` builder
pub struct AsyncBuilder<D>
where
D: slog::Drain<Err = slog::Never, Ok = ()> + Send + 'static,
{
core: AsyncCoreBuilder<D>,
// Increment a counter whenever a message is dropped due to not fitting inside the channel.
inc_dropped: bool,
}
impl<D> AsyncBuilder<D>
where
D: slog::Drain<Err = slog::Never, Ok = ()> + Send + 'static,
{
fn new(drain: D) -> AsyncBuilder<D> {
AsyncBuilder {
core: AsyncCoreBuilder::new(drain),
inc_dropped: true,
}
}
/// Set channel size used to send logging records to worker thread. When
/// buffer is full `AsyncCore` will start returning `AsyncError::Full`.
pub fn chan_size(self, s: usize) -> Self {
AsyncBuilder {
core: self.core.chan_size(s),
..self
}
}
/// Sets what will happen if the channel is full.
pub fn overflow_strategy(
self,
overflow_strategy: OverflowStrategy,
) -> Self {
let (block, inc) = match overflow_strategy {
OverflowStrategy::Block => (true, false),
OverflowStrategy::Drop => (false, false),
OverflowStrategy::DropAndReport => (false, true),
OverflowStrategy::DoNotMatchAgainstThisAndReadTheDocs => {
panic!("Invalid variant")
}
};
AsyncBuilder {
core: self.core.blocking(block),
inc_dropped: inc,
}
}
/// Configure a name to be used for the background thread.
///
/// The name must not contain '\0'.
///
/// # Panics
///
/// If a name with '\0' is passed.
pub fn thread_name(self, name: String) -> Self {
AsyncBuilder {
core: self.core.thread_name(name),
..self
}
}
/// Complete building `Async`
pub fn build(self) -> Async {
Async {
core: self.core.build_no_guard(),
dropped: AtomicUsize::new(0),
inc_dropped: self.inc_dropped,
}
}
/// Complete building `Async`
pub fn build_no_guard(self) -> Async {
Async {
core: self.core.build_no_guard(),
dropped: AtomicUsize::new(0),
inc_dropped: self.inc_dropped,
}
}
/// Complete building `Async` with `AsyncGuard`
///
/// See `AsyncGuard` for more information.
pub fn build_with_guard(self) -> (Async, AsyncGuard) {
let (core, guard) = self.core.build_with_guard();
(
Async {
core,
dropped: AtomicUsize::new(0),
inc_dropped: self.inc_dropped,
},
guard,
)
}
}
/// Async drain
///
/// `Async` will send all the logging records to a wrapped drain running in
/// another thread.
///
/// `Async` never returns `AsyncError::Full`.
///
/// `Record`s are passed to the worker thread through a channel with a bounded
/// size (see `AsyncBuilder::chan_size`). On channel overflow `Async` will
/// start dropping `Record`s and log a message informing about it after
/// sending more `Record`s is possible again. The exact details of handling
/// overflow is implementation defined, might change and should not be relied
/// on, other than message won't be dropped as long as channel does not
/// overflow.
///
/// Any messages reported by `Async` will contain `slog-async` logging `Record`
/// tag to allow easy custom handling.
///
/// Note: On drop `Async` waits for it's worker-thread to finish (after handling
/// all previous `Record`s sent to it). If you can't tolerate the delay, make
/// sure you drop it eg. in another thread.
pub struct Async {
core: AsyncCore,
dropped: AtomicUsize,
// Increment the dropped counter if dropped?
inc_dropped: bool,
}
impl Async {
/// New `AsyncCore` with default parameters
pub fn default<
D: slog::Drain<Err = slog::Never, Ok = ()> + Send + 'static,
>(
drain: D,
) -> Self {
AsyncBuilder::new(drain).build()
}
/// Build `Async` drain with custom parameters
///
/// The wrapped drain must handle all results (`Drain<Ok=(),Error=Never>`)
/// since there's no way to return it back. See `slog::DrainExt::fuse()` and
/// `slog::DrainExt::ignore_res()` for typical error handling strategies.
pub fn new<D: slog::Drain<Err = slog::Never, Ok = ()> + Send + 'static>(
drain: D,
) -> AsyncBuilder<D> {
AsyncBuilder::new(drain)
}
fn push_dropped(&self, logger_values: &OwnedKVList) -> AsyncResult<()> {
let dropped = self.dropped.swap(0, Ordering::Relaxed);
if dropped > 0 {
match self.core.log(
&record!(
slog::Level::Error,
"slog-async",
&format_args!(
"slog-async: logger dropped messages \
due to channel \
overflow"
),
b!("count" => dropped)
),
logger_values,
) {
Ok(()) => {}
Err(AsyncError::Full) => {
self.dropped.fetch_add(dropped + 1, Ordering::Relaxed);
return Ok(());
}
Err(e) => return Err(e),
}
}
Ok(())
}
}
impl Drain for Async {
type Ok = ();
type Err = AsyncError;
// TODO: Review `Ordering::Relaxed`
fn log(
&self,
record: &Record,
logger_values: &OwnedKVList,
) -> AsyncResult<()> {
self.push_dropped(logger_values)?;
match self.core.log(record, logger_values) {
Ok(()) => {}
Err(AsyncError::Full) if self.inc_dropped => {
self.dropped.fetch_add(1, Ordering::Relaxed);
}
Err(AsyncError::Full) => {}
Err(e) => return Err(e),
}
Ok(())
}
}
impl Drop for Async {
fn drop(&mut self) {
let _ = self.push_dropped(&o!().into());
}
}
// }}}
#[cfg(test)]
mod test {
use super::*;
use std::sync::mpsc;
#[test]
fn integration_test() {
let (mock_drain, mock_drain_rx) = MockDrain::new();
let async_drain = AsyncBuilder::new(mock_drain)
.build();
let slog = slog::Logger::root(async_drain.fuse(), o!("field1" => "value1"));
info!(slog, "Message 1"; "field2" => "value2");
warn!(slog, "Message 2"; "field3" => "value3");
assert_eq!(mock_drain_rx.recv().unwrap(), r#"INFO Message 1: [("field1", "value1"), ("field2", "value2")]"#);
assert_eq!(mock_drain_rx.recv().unwrap(), r#"WARN Message 2: [("field1", "value1"), ("field3", "value3")]"#);
}
/// Test-helper drain
#[derive(Debug)]
struct MockDrain {
tx: mpsc::Sender<String>,
}
impl MockDrain {
fn new() -> (Self, mpsc::Receiver<String>) {
let (tx, rx) = mpsc::channel();
(Self { tx }, rx)
}
}
impl slog::Drain for MockDrain {
type Ok = ();
type Err = slog::Never;
fn log(&self, record: &Record, logger_kv: &OwnedKVList) -> Result<Self::Ok, Self::Err> {
let mut serializer = MockSerializer::default();
logger_kv.serialize(record, &mut serializer).unwrap();
record.kv().serialize(record, &mut serializer).unwrap();
let level = record.level().as_short_str();
let msg = record.msg().to_string();
let entry = format!("{} {}: {:?}", level, msg, serializer.kvs);
self.tx.send(entry).unwrap();
Ok(())
}
}
#[derive(Default)]
struct MockSerializer {
kvs: Vec<(String, String)>,
}
impl slog::Serializer for MockSerializer {
fn emit_arguments(&mut self, key: Key, val: &fmt::Arguments) -> Result<(), slog::Error> {
self.kvs.push((key.to_string(), val.to_string()));
Ok(())
}
}
}
// vim: foldmethod=marker foldmarker={{{,}}}