solidiquis / erdtree

A modern, cross-platform, multi-threaded, and general purpose filesystem and disk-usage utility that is aware of .gitignore and hidden file rules.
https://crates.io/crates/erdtree
MIT License
2.39k stars 64 forks source link

Fixed race to print #220

Closed solidiquis closed 1 year ago

solidiquis commented 1 year ago

Closes https://github.com/solidiquis/erdtree/issues/219

Summary

There was a race between printing to stderr and the cleanup function clearing the current cursor line. This PR removes atomic shared ownership of the progress indicator and instead passes around a channel so that all requests to run a cleanup funnels to a single location: The progress indicator's thread.

We then join that thread to the main-thread before printing any sort of output whether it be an error message or the actual result.

This is better design overall and I should have done this from the start.