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
//! See [IndicatifLayer] for the main documentation.
//!
//! An easy quick start for this crate is:
//! ```
//! use tracing_subscriber::layer::SubscriberExt;
//! use tracing_subscriber::util::SubscriberInitExt;
//! use tracing_indicatif::IndicatifLayer;
//!
//! let indicatif_layer = IndicatifLayer::new();
//!
//! tracing_subscriber::registry()
//! .with(tracing_subscriber::fmt::layer().with_writer(indicatif_layer.get_stderr_writer()))
//! .with(indicatif_layer)
//! .init();
//! ```
//!
//! And see the `examples` folder for examples of how to customize the layer / progress bar
//! appearance.
//!
//! It is highly recommended you pass `indicatif_layer.get_stderr_writer()` or
//! `indicatif_layer.get_stdout_writer()` to your `fmt::layer()` (depending on where you want to
//! emit tracing logs) to prevent progress bars from clobbering any console logs.
use std::any::TypeId;
use std::marker::PhantomData;
use std::sync::Mutex;
use indicatif::style::ProgressStyle;
use indicatif::style::ProgressTracker;
use indicatif::MultiProgress;
use indicatif::ProgressBar;
use tracing_core::span;
use tracing_core::Subscriber;
use tracing_subscriber::fmt::format::DefaultFields;
use tracing_subscriber::fmt::FormatFields;
use tracing_subscriber::fmt::FormattedFields;
use tracing_subscriber::layer;
use tracing_subscriber::registry::LookupSpan;
pub mod filter;
mod pb_manager;
pub mod span_ext;
pub mod util;
pub mod writer;
use pb_manager::ProgressBarManager;
pub use writer::IndicatifWriter;
#[derive(Clone)]
struct IndicatifProgressKey {
message: String,
}
impl ProgressTracker for IndicatifProgressKey {
fn clone_box(&self) -> Box<dyn ProgressTracker> {
Box::new(self.clone())
}
fn tick(&mut self, _: &indicatif::ProgressState, _: std::time::Instant) {}
fn reset(&mut self, _: &indicatif::ProgressState, _: std::time::Instant) {}
fn write(&self, _: &indicatif::ProgressState, w: &mut dyn std::fmt::Write) {
let _ = w.write_str(&self.message);
}
}
// Suppose we have a [Span] (maybe gotten via [Span::current]) and want access to our
// [IndicatifLayer] instance from it. The way to do this would be something like
// ```
// span.with_subscriber(|(id, subscriber)| {
// let maybe_layer = subscriber.downcast_ref::<IndicatifLayer<S, F>>();
// ...
// });
// ```
// but this has the problem that, because `IndicatifLayer` has generic params, we need to pass
// a concrete type `S` and `F` to that `downcast_ref` call. And the callsite doesn't know what
// those concrete types are.
//
// Therefore, we use this `WithContext` struct (along with the defined `downcast_raw` method) to do
// a form of indirection to something that does already know (or "remembers") what those concrete
// types `S` and `F` are, so the callsite doesn't need to care about it.
//
// This doesn't actually return a reference to our [IndicatifLayer] instance as we only care about
// the associated span data, so we just pass that to the corresponding `fn`.
//
// See:
// * https://github.com/tokio-rs/tracing/blob/a0126b2e2d465e8e6d514acdf128fcef5b863d27/tracing-error/src/subscriber.rs#L32
// * https://github.com/tokio-rs/tracing/blob/a0126b2e2d465e8e6d514acdf128fcef5b863d27/tracing-opentelemetry/src/subscriber.rs#L74
#[allow(clippy::type_complexity)]
pub(crate) struct WithContext(
fn(&tracing::Dispatch, &span::Id, f: &mut dyn FnMut(&mut IndicatifSpanContext)),
);
#[allow(clippy::type_complexity)]
pub(crate) struct WithStderrWriter(
fn(&tracing::Dispatch, f: &mut dyn FnMut(IndicatifWriter<writer::Stderr>)),
);
#[allow(clippy::type_complexity)]
pub(crate) struct WithStdoutWriter(
fn(&tracing::Dispatch, f: &mut dyn FnMut(IndicatifWriter<writer::Stdout>)),
);
#[allow(clippy::type_complexity)]
pub(crate) struct WithMultiProgress(fn(&tracing::Dispatch, f: &mut dyn FnMut(MultiProgress)));
impl WithContext {
pub(crate) fn with_context(
&self,
dispatch: &tracing::Dispatch,
id: &span::Id,
mut f: impl FnMut(&mut IndicatifSpanContext),
) {
(self.0)(dispatch, id, &mut f)
}
}
impl WithStderrWriter {
pub(crate) fn with_context(
&self,
dispatch: &tracing::Dispatch,
mut f: impl FnMut(IndicatifWriter<writer::Stderr>),
) {
(self.0)(dispatch, &mut f)
}
}
impl WithStdoutWriter {
pub(crate) fn with_context(
&self,
dispatch: &tracing::Dispatch,
mut f: impl FnMut(IndicatifWriter<writer::Stdout>),
) {
(self.0)(dispatch, &mut f)
}
}
impl WithMultiProgress {
pub(crate) fn with_context(
&self,
dispatch: &tracing::Dispatch,
mut f: impl FnMut(MultiProgress),
) {
(self.0)(dispatch, &mut f)
}
}
#[derive(Default)]
struct ProgressBarInitSettings {
style: Option<ProgressStyle>,
len: Option<u64>,
pos: Option<u64>,
message: Option<String>,
}
struct IndicatifSpanContext {
// If this progress bar is `Some(pb)` and `pb.is_hidden`, it means the progress bar is queued.
// We start the progress bar in hidden mode so things like `elapsed` are accurate.
//
// If this progress bar is `None`, it means the span has not yet been entered.
progress_bar: Option<ProgressBar>,
// If `Some`, the progress bar will use this style when the span is entered for the first time.
pb_init_settings: ProgressBarInitSettings,
// Notes:
// * A parent span cannot close before its child spans, so if a parent span has a progress bar,
// that parent progress bar's lifetime will be greater than this span's progress bar.
// * The ProgressBar is just a wrapper around `Arc`, so cloning and tracking it here is fine.
parent_progress_bar: Option<ProgressBar>,
// This is only `Some` if we have some parent with a progress bar.
parent_span: Option<span::Id>,
// Fields to be passed to the progress bar as keys.
span_fields_formatted: Option<String>,
span_name: String,
span_child_prefix: String,
// Used to quickly compute a child span's prefix without having to traverse up the entire span
// scope.
level: u16,
}
impl IndicatifSpanContext {
fn add_keys_to_style(&self, style: ProgressStyle) -> ProgressStyle {
style
.with_key(
"span_name",
IndicatifProgressKey {
message: self.span_name.clone(),
},
)
.with_key(
"span_fields",
IndicatifProgressKey {
message: self.span_fields_formatted.to_owned().unwrap_or_default(),
},
)
.with_key(
"span_child_prefix",
IndicatifProgressKey {
message: self.span_child_prefix.clone(),
},
)
}
fn make_progress_bar(&mut self, default_style: &ProgressStyle) {
if self.progress_bar.is_none() {
let pb = ProgressBar::hidden().with_style(
self.pb_init_settings
.style
.take()
.unwrap_or_else(|| self.add_keys_to_style(default_style.clone())),
);
if let Some(len) = self.pb_init_settings.len.take() {
pb.set_length(len);
}
if let Some(msg) = self.pb_init_settings.message.take() {
pb.set_message(msg);
}
if let Some(pos) = self.pb_init_settings.pos.take() {
pb.set_position(pos);
}
self.progress_bar = Some(pb);
}
}
fn set_progress_bar_style(&mut self, style: ProgressStyle) {
if let Some(ref pb) = self.progress_bar {
pb.set_style(self.add_keys_to_style(style));
} else {
self.pb_init_settings.style = Some(self.add_keys_to_style(style));
}
}
fn set_progress_bar_length(&mut self, len: u64) {
if let Some(ref pb) = self.progress_bar {
pb.set_length(len);
} else {
self.pb_init_settings.len = Some(len);
}
}
fn set_progress_bar_position(&mut self, pos: u64) {
if let Some(ref pb) = self.progress_bar {
pb.set_position(pos);
} else {
self.pb_init_settings.pos = Some(pos);
}
}
fn set_progress_bar_message(&mut self, msg: String) {
if let Some(ref pb) = self.progress_bar {
pb.set_message(msg);
} else {
self.pb_init_settings.message = Some(msg);
}
}
fn inc_progress_bar_position(&mut self, pos: u64) {
if let Some(ref pb) = self.progress_bar {
pb.inc(pos);
} else if let Some(ref mut pb_pos) = self.pb_init_settings.pos {
*pb_pos += pos;
} else {
// indicatif defaults position to 0, so copy that behavior.
self.pb_init_settings.pos = Some(pos);
}
}
fn inc_progress_bar_length(&mut self, len: u64) {
if let Some(ref pb) = self.progress_bar {
pb.inc_length(len);
} else if let Some(ref mut pb_len) = self.pb_init_settings.len {
*pb_len += len;
}
}
}
/// The layer that handles creating and managing indicatif progress bars for active spans. This
/// layer must be registered with your tracing subscriber to have any effect.
///
/// This layer performs no filtering on which spans to show progress bars for. It is expected one
/// attaches [filters to this
/// layer](https://docs.rs/tracing-subscriber/latest/tracing_subscriber/layer/index.html#filtering-with-layers)
/// to control which spans actually have progress bars generated for them. See
/// [filter::IndicatifFilter] for a rudimentary filter.
///
/// Progress bars will be started the very first time a span is [entered](tracing::Span::enter)
/// or when one of its child spans is entered for the first time, and will finish when the span
/// is [closed](tracing_subscriber::Layer::on_close) (including all child spans having closed).
///
/// Progress bars are emitted to stderr.
///
/// Under the hood, this just uses indicatif's [MultiProgress](indicatif::MultiProgress) struct to
/// manage individual [ProgressBar](indicatif::ProgressBar) instances per span.
pub struct IndicatifLayer<S, F = DefaultFields> {
pb_manager: Mutex<ProgressBarManager>,
// Allows us to fetch the `MultiProgress` without taking a lock.
// Do not mutate `mp` directly, always go through `pb_manager`.
mp: MultiProgress,
span_field_formatter: F,
progress_style: ProgressStyle,
span_child_prefix_indent: &'static str,
span_child_prefix_symbol: &'static str,
get_context: WithContext,
get_stderr_writer_context: WithStderrWriter,
get_stdout_writer_context: WithStdoutWriter,
get_multi_progress_context: WithMultiProgress,
inner: PhantomData<S>,
}
impl<S> IndicatifLayer<S>
where
S: Subscriber + for<'a> LookupSpan<'a>,
{
/// Spawns a progress bar for every tracing span that is received by this layer.
///
/// The default settings for this layer are 7 progress bars maximum and progress bars in the
/// style of:
/// ```text
/// ⠄ do_work{val=0}
/// ⠄ do_work{val=1}
/// ⠄ do_work{val=2}
/// ↳ ⠴ do_sub_work{val=2}
/// ↳ ⠴ do_sub_work{val=2}
/// ⠄ do_work{val=3}
/// ⠄ do_work{val=4}
/// ...and 5 more not shown above.
/// ```
pub fn new() -> Self {
Self::default()
}
}
impl<S> Default for IndicatifLayer<S>
where
S: Subscriber + for<'a> LookupSpan<'a>,
{
fn default() -> Self {
let pb_manager = ProgressBarManager::new(
7,
Some(
ProgressStyle::with_template(
"...and {pending_progress_bars} more not shown above.",
)
.unwrap(),
),
);
let mp = pb_manager.mp.clone();
Self {
pb_manager: Mutex::new(pb_manager),
mp,
span_field_formatter: DefaultFields::new(),
progress_style: ProgressStyle::with_template(
"{span_child_prefix}{spinner} {span_name}{{{span_fields}}}",
)
.unwrap(),
span_child_prefix_indent: " ",
span_child_prefix_symbol: "↳ ",
get_context: WithContext(Self::get_context),
get_stderr_writer_context: WithStderrWriter(Self::get_stderr_writer_context),
get_stdout_writer_context: WithStdoutWriter(Self::get_stdout_writer_context),
get_multi_progress_context: WithMultiProgress(Self::get_multi_progress_context),
inner: PhantomData,
}
}
}
// pub methods
impl<S, F> IndicatifLayer<S, F> {
#[deprecated(since = "0.2.3", note = "use get_stderr_writer() instead")]
pub fn get_fmt_writer(&self) -> IndicatifWriter<writer::Stderr> {
self.get_stderr_writer()
}
/// Returns the a writer for [std::io::Stderr] that ensures its output will not be clobbered by
/// active progress bars.
///
/// Instead of `eprintln!(...)` prefer `writeln!(indicatif_layer.get_stderr_writer(), ...)`
/// instead to ensure your output is not clobbered by active progress bars.
///
/// If one wishes tracing logs to be output to stderr, this should be passed into
/// [fmt::Layer::with_writer](tracing_subscriber::fmt::Layer::with_writer).
pub fn get_stderr_writer(&self) -> IndicatifWriter<writer::Stderr> {
// `MultiProgress` is merely a wrapper over an `Arc`, so we can clone here.
IndicatifWriter::new(self.mp.clone())
}
/// Returns the a writer for [std::io::Stdout] that ensures its output will not be clobbered by
/// active progress bars.
///
/// Instead of `println!(...)` prefer `writeln!(indicatif_layer.get_stdout_writer(), ...)`
/// instead to ensure your output is not clobbered by active progress bars.
///
/// If one wishes tracing logs to be output to stdout, this should be passed into
/// [fmt::Layer::with_writer](tracing_subscriber::fmt::Layer::with_writer).
pub fn get_stdout_writer(&self) -> IndicatifWriter<writer::Stdout> {
// `MultiProgress` is merely a wrapper over an `Arc`, so we can clone here.
IndicatifWriter::new(self.mp.clone())
}
/// Set the formatter for span fields, the result of which will be available as the
/// progress bar template key `span_fields`.
///
/// The default is the [DefaultFields] formatter.
pub fn with_span_field_formatter<F2>(self, formatter: F2) -> IndicatifLayer<S, F2>
where
F2: for<'writer> FormatFields<'writer> + 'static,
{
IndicatifLayer {
pb_manager: self.pb_manager,
mp: self.mp,
span_field_formatter: formatter,
progress_style: self.progress_style,
span_child_prefix_indent: self.span_child_prefix_indent,
span_child_prefix_symbol: self.span_child_prefix_symbol,
get_context: self.get_context,
get_stderr_writer_context: self.get_stderr_writer_context,
get_stdout_writer_context: self.get_stdout_writer_context,
get_multi_progress_context: self.get_multi_progress_context,
inner: self.inner,
}
}
/// Override the style used for displayed progress bars.
///
/// Two additional keys are available for the progress bar template:
/// * `span_fields` - the formatted string of this span's fields
/// * `span_name` - the name of the span
/// * `span_child_prefix` - a prefix that increase in size according to the number of parents
/// the span has.
///
/// The default template is `{span_child_prefix}{spinner} {span_name}{{{span_fields}}}`.
pub fn with_progress_style(mut self, style: ProgressStyle) -> Self {
self.progress_style = style;
self
}
/// Set the indent used to mark the "level" of a given child span's progress bar.
///
/// For example, if the given span is two levels deep (iow has two parent spans with progress
/// bars), and this is " ", the `{span_child_prefix}` key for this span's progress bar will be
/// prefixed with " ".
pub fn with_span_child_prefix_indent(mut self, indent: &'static str) -> Self {
self.span_child_prefix_indent = indent;
self
}
/// Set the symbol used to denote this is a progress bar from a child span.
///
/// This is ultimately concatenated with the child prefix indent to make the
/// `span_child_prefix` progress bar key.
pub fn with_span_child_prefix_symbol(mut self, symbol: &'static str) -> Self {
self.span_child_prefix_symbol = symbol;
self
}
/// Set the maximum number of progress bars that will be displayed, and the possible footer
/// "progress bar" that displays when there are more progress bars than can be displayed.
///
/// `footer_style` dictates the appearance of the footer, and the footer will only appear if
/// there are more progress bars than can be displayed. If it is `None`, no footer will be
/// displayed. `footer_style` has the following keys available to it:
/// * `pending_progress_bars` - the number of progress bars waiting to be shown
pub fn with_max_progress_bars(
mut self,
max_progress_bars: u64,
footer_style: Option<ProgressStyle>,
) -> Self {
// TODO(emersonford): refactor this so we don't need to create a new pb_manager and can
// just edit the existing one in place.
let pb_manager = ProgressBarManager::new(max_progress_bars, footer_style);
let mp = pb_manager.mp.clone();
self.pb_manager = Mutex::new(pb_manager);
self.mp = mp;
self
}
}
impl<S, F> IndicatifLayer<S, F>
where
S: Subscriber + for<'a> LookupSpan<'a>,
F: for<'writer> FormatFields<'writer> + 'static,
{
fn get_context(
dispatch: &tracing::Dispatch,
id: &span::Id,
f: &mut dyn FnMut(&mut IndicatifSpanContext),
) {
// The only way `get_context` can be called is if we have an `IndicatifLayer` added to the
// expected subscriber, hence why we can `.expect` here.
let subscriber = dispatch
.downcast_ref::<S>()
.expect("subscriber should downcast to expected type; this is a bug!");
let span = subscriber
.span(id)
.expect("Span not found in context, this is a bug");
let mut ext = span.extensions_mut();
if let Some(indicatif_ctx) = ext.get_mut::<IndicatifSpanContext>() {
f(indicatif_ctx);
}
}
fn get_stderr_writer_context(
dispatch: &tracing::Dispatch,
f: &mut dyn FnMut(IndicatifWriter<writer::Stderr>),
) {
let layer = dispatch
.downcast_ref::<IndicatifLayer<S, F>>()
.expect("subscriber should downcast to expected type; this is a bug!");
f(layer.get_stderr_writer())
}
fn get_stdout_writer_context(
dispatch: &tracing::Dispatch,
f: &mut dyn FnMut(IndicatifWriter<writer::Stdout>),
) {
let layer = dispatch
.downcast_ref::<IndicatifLayer<S, F>>()
.expect("subscriber should downcast to expected type; this is a bug!");
f(layer.get_stdout_writer())
}
fn get_multi_progress_context(dispatch: &tracing::Dispatch, f: &mut dyn FnMut(MultiProgress)) {
let layer = dispatch
.downcast_ref::<IndicatifLayer<S, F>>()
.expect("subscriber should downcast to expected type; this is a bug!");
f(layer.mp.clone())
}
}
impl<S, F> layer::Layer<S> for IndicatifLayer<S, F>
where
S: Subscriber + for<'a> LookupSpan<'a>,
F: for<'writer> FormatFields<'writer> + 'static,
{
fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: layer::Context<'_, S>) {
let span = ctx
.span(id)
.expect("Span not found in context, this is a bug");
let mut ext = span.extensions_mut();
let mut fields = FormattedFields::<F>::new(String::new());
let _ = self
.span_field_formatter
.format_fields(fields.as_writer(), attrs);
// Get the next parent span with a progress bar.
let parent_span = ctx.span_scope(id).and_then(|scope| {
scope.skip(1).find(|span| {
let ext = span.extensions();
ext.get::<IndicatifSpanContext>().is_some()
})
});
let parent_span_id = parent_span.as_ref().map(|span| span.id());
let parent_span_ext = parent_span.as_ref().map(|span| span.extensions());
let parent_indicatif_ctx = parent_span_ext
.as_ref()
.map(|ext| ext.get::<IndicatifSpanContext>().unwrap());
let (span_child_prefix, level) = match parent_indicatif_ctx {
Some(v) => {
let level = v.level + 1;
(
format!(
"{}{}",
self.span_child_prefix_indent.repeat(level.into()),
self.span_child_prefix_symbol
),
level,
)
}
None => (String::new(), 0),
};
ext.insert(IndicatifSpanContext {
progress_bar: None,
pb_init_settings: ProgressBarInitSettings::default(),
parent_progress_bar: None,
parent_span: parent_span_id,
span_fields_formatted: Some(fields.fields),
span_name: span.name().to_string(),
span_child_prefix,
level,
});
}
fn on_enter(&self, id: &span::Id, ctx: layer::Context<'_, S>) {
let mut pb_manager_lock = self.pb_manager.lock().unwrap();
let span = ctx
.span(id)
.expect("Span not found in context, this is a bug");
let mut ext = span.extensions_mut();
if let Some(indicatif_ctx) = ext.get_mut::<IndicatifSpanContext>() {
// Start the progress bar when we enter the span for the first time.
if indicatif_ctx.progress_bar.is_none() {
indicatif_ctx.make_progress_bar(&self.progress_style);
if let Some(ref parent_span_with_pb) = indicatif_ctx.parent_span {
let parent_span = ctx
.span(parent_span_with_pb)
.expect("Parent span not found in context, this is a bug");
let mut parent_span_ext = parent_span.extensions_mut();
let parent_indicatif_ctx = parent_span_ext
.get_mut::<IndicatifSpanContext>()
.expect(
"IndicatifSpanContext not found in parent span extensions, this is a bug",
);
// If the parent span has not been entered once, start the parent progress bar
// for it. We are guaranteed that the parent span has not yet closed because a
// child span for the parent is still open.
//
// NOTE: there's a bug here. if the parent of the parent hasn't started their
// PB, we don't start the parent of the parent's PB. It'd be pretty bad to have
// to iterate up the whole span scope to fix this, so I'm hoping this is a non
// issue for the most part. :(
if parent_indicatif_ctx.progress_bar.is_none() {
parent_indicatif_ctx.make_progress_bar(&self.progress_style);
pb_manager_lock.show_progress_bar(parent_indicatif_ctx, id);
}
// We can safely unwrap here now since we know a parent progress bar exists.
indicatif_ctx.parent_progress_bar =
Some(parent_indicatif_ctx.progress_bar.to_owned().unwrap());
}
pb_manager_lock.show_progress_bar(indicatif_ctx, id);
}
}
}
fn on_close(&self, id: span::Id, ctx: layer::Context<'_, S>) {
let mut pb_manager_lock = self.pb_manager.lock().unwrap();
let span = ctx
.span(&id)
.expect("Span not found in context, this is a bug");
let mut ext = span.extensions_mut();
// Clear the progress bar only when the span has closed completely.
if let Some(indicatif_ctx) = ext.get_mut::<IndicatifSpanContext>() {
pb_manager_lock.finish_progress_bar(indicatif_ctx, &ctx);
}
}
// See comments on [WithContext] for why we have this.
//
// SAFETY: this is safe because the `WithContext` function pointer is valid
// for the lifetime of `&self`.
unsafe fn downcast_raw(&self, id: TypeId) -> Option<*const ()> {
match id {
id if id == TypeId::of::<Self>() => Some(self as *const _ as *const ()),
id if id == TypeId::of::<WithContext>() => {
Some(&self.get_context as *const _ as *const ())
}
id if id == TypeId::of::<WithStderrWriter>() => {
Some(&self.get_stderr_writer_context as *const _ as *const ())
}
id if id == TypeId::of::<WithStdoutWriter>() => {
Some(&self.get_stdout_writer_context as *const _ as *const ())
}
id if id == TypeId::of::<WithMultiProgress>() => {
Some(&self.get_multi_progress_context as *const _ as *const ())
}
_ => None,
}
}
}
/// Hide all progress bars managed by [`IndicatifLayer`] (if it exists), executes `f`, then redraws
/// the progress bars. Identical to [`indicatif::MultiProgress::suspend`].
///
/// Executes `f` even if there is no default tracing subscriber or if a `IndicatifLayer` has not
/// been registered to that subscriber.
///
/// NOTE: this does not suspend stdout/stderr prints from other threads, including things like
/// `tracing::info!`. This only suspends the drawing of progress bars.
///
/// WARNING: this holds an internal lock within `MultiProgress`. Calling methods like
/// `writeln!(get_indicatif_stderr_writer(), "foobar")` or calling this method inside of `f` will
/// result in a deadlock.
pub fn suspend_tracing_indicatif<F: FnOnce() -> R, R>(f: F) -> R {
let mut mp: Option<MultiProgress> = None;
tracing::dispatcher::get_default(|dispatch| {
if let Some(ctx) = dispatch.downcast_ref::<WithMultiProgress>() {
ctx.with_context(dispatch, |fetched_mp| {
mp = Some(fetched_mp);
})
}
});
if let Some(mp) = mp {
mp.suspend(f)
} else {
f()
}
}
#[cfg(test)]
mod tests;