-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththreading.rs
68 lines (61 loc) · 2 KB
/
threading.rs
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
use std::io::Write;
use rand::seq::SliceRandom;
use tokio::time::{Duration, sleep};
/// # Threading and Async programming in rustlang
/// ---------------------------------------------
///
/// Threading is a process of doing different tasks independently of each other.
/// Rustlang has some task executor libraries such as `tokio`, `future-rs`, etc
/// to handle async operations.
///
/// Async operations are helpful when we need to run tasks that require large
/// amount of time and the processor needs some wait time before the task is
/// executed.
///
/// Examples of async operations are as follows:
/// 1. Network Requests
/// 2. Streaming large files over http
/// 3. Processing Websocket Messages
///
/// To know more about threading, please refer to the rust async book:
/// https://rust-lang.github.io/async-book/intro.html
struct TextLoader {
content: Vec<(char, bool)>,
}
impl TextLoader {
fn new(content: String) -> Self {
Self {
content: content.chars().into_iter().map(|c| (c, false)).collect(),
}
}
fn display_content(&self) {
print!("\r");
print!(
"[{}]",
self.content
.clone()
.into_iter()
.map(|(ch, d)| { if d { ch } else { '-' } })
.collect::<String>()
);
std::io::stdout().flush().unwrap();
}
async fn load(&mut self, wait_ms: u64) {
let mut x = (0..self.content.len()).collect::<Vec<_>>();
let mut rng = rand::rng();
x.shuffle(&mut rng);
for index in x {
sleep(Duration::from_millis(wait_ms)).await;
self.content[index].1 = true;
self.display_content();
}
}
}
#[tokio::main]
async fn main() {
let mut text_loader = TextLoader::new(String::from(
"This is an animated text content which gets loaded randomly and asynchronously at different time.",
));
println!("⛔using Async functions to load and wait⛔");
text_loader.load(50).await;
}