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
use std::thread::JoinHandle;
use std::time::Instant;
use std::{
sync::mpsc::{channel, Sender, TryRecvError},
thread,
time::Duration,
};
pub use crate::utils::spinner_names::SpinnerNames as Spinners;
use crate::utils::spinners_data::SPINNERS as SpinnersMap;
pub use crate::utils::stream::Stream;
mod utils;
pub struct Spinner {
sender: Sender<(Instant, Option<String>)>,
join: Option<JoinHandle<()>>,
stream: Stream
}
impl Drop for Spinner {
fn drop(&mut self) {
if self.join.is_some() {
self.sender.send((Instant::now(), None)).unwrap();
self.join.take().unwrap().join().unwrap();
}
}
}
impl Spinner {
/// Create a new spinner along with a message
///
/// # Examples
///
/// Basic Usage:
///
/// ```
/// use spinners::{Spinner, Spinners};
///
/// let sp = Spinner::new(Spinners::Dots, "Loading things into memory...".into());
/// ```
///
/// No Message:
///
/// ```
/// use spinners::{Spinner, Spinners};
///
/// let sp = Spinner::new(Spinners::Dots, String::new());
/// ```
pub fn new(spinner: Spinners, message: String) -> Self {
Self::new_inner(spinner, message, None, None)
}
/// Create a new spinner that logs the time since it was created
pub fn with_timer(spinner: Spinners, message: String) -> Self {
Self::new_inner(spinner, message, Some(Instant::now()), None)
}
/// Creates a new spinner along with a message with a specified output stream
///
/// # Examples
///
/// Basic Usage:
///
/// ```
/// use spinners::{Spinner, Spinners, Stream};
///
/// let sp = Spinner::with_stream(Spinners::Dots, String::new(), Stream::Stderr);
/// ```
pub fn with_stream(spinner: Spinners, message: String, stream: Stream) -> Self {
Self::new_inner(spinner, message, None, Some(stream))
}
/// Creates a new spinner that logs the time since it was created with a specified output stream
///
/// # Examples
///
/// Basic Usage:
///
/// ```
/// use spinners::{Spinner, Spinners, Stream};
///
/// let sp = Spinner::with_timer_and_stream(Spinners::Dots, String::new(), Stream::Stderr);
/// ```
pub fn with_timer_and_stream(spinner: Spinners, message: String, stream: Stream) -> Self {
Self::new_inner(spinner, message, Some(Instant::now()), Some(stream))
}
fn new_inner(spinner: Spinners, message: String, start_time: Option<Instant>, stream: Option<Stream>) -> Self
{
let spinner_name = spinner.to_string();
let spinner_data = SpinnersMap
.get(&spinner_name)
.unwrap_or_else(|| panic!("No Spinner found with the given name: {}", spinner_name));
let stream = if let Some(stream) = stream { stream } else { Stream::default() };
let (sender, recv) = channel::<(Instant, Option<String>)>();
let join = thread::spawn(move || 'outer: loop {
for frame in spinner_data.frames.iter() {
let (do_stop, stop_time, stop_symbol) = match recv.try_recv() {
Ok((stop_time, stop_symbol)) => (true, Some(stop_time), stop_symbol),
Err(TryRecvError::Disconnected) => (true, None, None),
Err(TryRecvError::Empty) => (false, None, None),
};
let frame = stop_symbol.unwrap_or_else(|| frame.to_string());
stream.write(&frame, &message, start_time, stop_time).expect("IO Error");
if do_stop {
break 'outer;
}
thread::sleep(Duration::from_millis(spinner_data.interval as u64));
}
});
Self {
sender,
join: Some(join),
stream
}
}
/// Stops the spinner
///
/// Stops the spinner that was created with the [`Spinner::new`] function.
///
/// Optionally call [`stop_with_newline`] to print a newline after the spinner is stopped,
/// or the [`stop_with_message`] function to print a message after the spinner is stopped.
///
/// [`Spinner::new`]: struct.Spinner.html#method.new
/// [`stop_with_newline`]: struct.Spinner.html#method.stop_with_newline
/// [`stop_with_message`]: struct.Spinner.html#method.stop_with_message
///
/// # Examples
///
/// Basic Usage:
///
/// ```
/// use spinners::{Spinner, Spinners};
///
/// let mut sp = Spinner::new(Spinners::Dots, "Loading things into memory...".into());
///
/// sp.stop();
/// ```
pub fn stop(&mut self) {
self.stop_inner(Instant::now(), None);
}
/// Stop with a symbol that replaces the spinner
///
/// The symbol is a String rather than a Char to allow for more flexibility, such as using ANSI color codes.
///
/// # Examples
///
/// Basic Usage:
///
/// ```
/// use spinners::{Spinner, Spinners};
///
/// let mut sp = Spinner::new(Spinners::Dots, "Loading things into memory...".into());
///
/// sp.stop_with_symbol("🗸");
/// ```
///
/// ANSI colors (green checkmark):
///
/// ```
/// use spinners::{Spinner, Spinners};
///
/// let mut sp = Spinner::new(Spinners::Dots, "Loading things into memory...".into());
///
/// sp.stop_with_symbol("\x1b[32m🗸\x1b[0m");
/// ```
pub fn stop_with_symbol(&mut self, symbol: &str) {
self.stop_inner(Instant::now(), Some(symbol.to_owned()));
self.stream.stop(None, Some(symbol)).expect("IO error");
}
/// Stops the spinner and prints a new line
///
/// # Examples
///
/// Basic Usage:
///
/// ```
/// use spinners::{Spinner, Spinners};
///
/// let mut sp = Spinner::new(Spinners::Dots, "Loading things into memory...".into());
///
/// sp.stop_with_newline();
/// ```
pub fn stop_with_newline(&mut self) {
self.stop();
self.stream.stop(None, None).expect("IO error");
}
/// Stops the spinner and prints the provided message
///
/// # Examples
///
/// Basic Usage:
///
/// ```
/// use spinners::{Spinner, Spinners};
///
/// let mut sp = Spinner::new(Spinners::Dots, "Loading things into memory...".into());
///
/// sp.stop_with_message("Finished loading things into memory!".into());
/// ```
pub fn stop_with_message(&mut self, msg: String) {
self.stop();
self.stream.stop(Some(&msg), None).expect("IO Error");
}
/// Stops the spinner with a provided symbol and message
///
/// # Examples
///
/// Basic Usage:
///
/// ```
/// use spinners::{Spinner, Spinners};
///
/// let mut sp = Spinner::new(Spinners::Dots, "Loading things into memory...".into());
///
/// sp.stop_and_persist("✔", "Finished loading things into memory!".into());
/// ```
pub fn stop_and_persist(&mut self, symbol: &str, msg: String) {
self.stop();
self.stream.stop(Some(&msg), Some(symbol)).expect("IO Error");
}
fn stop_inner(&mut self, stop_time: Instant, stop_symbol: Option<String>) {
self.sender
.send((stop_time, stop_symbol))
.expect("Could not stop spinner thread.");
self.join.take().unwrap().join().unwrap();
}
}