logo
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
#![allow(dead_code)]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/aaarkid/eta/master/images/favicon.png")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/aaarkid/eta/master/images/logo.png")]

#![warn(missing_docs)]

//!Tracking progress on repetive tasks and measuring remaining times.
//!
//!# Usage
//! Add this to your `Cargo.toml`:
//! ```toml
//! [dependencies]
//! eta = "0.2.2"
//! ```
//! and this to your source code:
//! ```rust
//! use eta::{Eta,TimeAcc};
//! ```
//! 
//! # Example
//! ```rust
//! use eta::{Eta,TimeAcc};
//! 
//! fn calculate_square (number: usize) -> usize {
//!    number * number
//! }
//! 
//! fn main() {
//!     let count = 100;
//!     let numbers = Vec::from_iter(0..count);
//!     let mut eta = Eta::new(count, TimeAcc::MILLI);
//!     
//!     for number in numbers {
//!         calculate_square(number);
//!         eta.step();
//!         if (number % 10) == 0 {
//!             println!("{}", eta);
//!         }
//!     }
//! }

mod tests;

use std::time::{Instant};

#[derive(Debug, Clone, PartialEq, Eq)]
/// `Eta` is the main object which keep track of task count and elapsed times.
/// It implements several methods to display various information about the progress.
pub struct Eta {
    tasks_count: usize,
    tasks_done: usize,
    recent_time: Instant,
    time_elapsed: usize,
    time_accuracy: TimeAcc,
    time_paused: usize,
    paused: bool
}

#[derive(Clone, Debug, PartialEq, Eq)]
///`TimeAcc` determines the accuracy of the time measurement.
pub enum TimeAcc {
    ///SEC stands for seconds. This will be displayed in minutes and seconds.
    SEC,
    ///MILLI stands for milliseconds. This will be displayed in seconds.
    MILLI,
    ///MICRO stands for microseconds. This will be displayed in milliseconds.
    MICRO,
    ///NANO stands for nanoseconds. This will be displayed in microseconds.
    NANO
}

impl Eta {
    fn create_instance(tasks_count: usize, time_accuracy: TimeAcc, tasks_done: usize) -> Eta {
        Eta {
            tasks_count,
            tasks_done,
            recent_time: Instant::now(),
            time_elapsed: 0,
            time_accuracy,
            time_paused: 0,
            paused: false,
        }
    }

    ///Creates a new `Eta` object with the given number of tasks and accuracy on time measurement.
    /// 
    /// 
    /// # Example
    /// ```rust
    /// # use eta::{Eta,TimeAcc};
    /// # fn main () {
    /// # let count_of_tasks = 100;
    /// let eta = Eta::new(count_of_tasks, TimeAcc::MILLI);
    /// # }
    /// ```

    pub fn new (tasks_count: usize, time_accuracy: TimeAcc) -> Eta {
        Eta::create_instance(tasks_count, time_accuracy, 0)
    }

    /// Pauses time measurement for the object. Resuming time measurement is done by calling `resume()`.
    /// Time between pauses is kept track of and not reset. You can step `Eta` while it's paused.
    /// 
    /// # Example
    /// ```rust
    /// # use eta::{Eta,TimeAcc};
    /// # use std::time::Duration;
    /// # use std::thread::sleep;
    /// # fn main () {
    /// # let count_of_tasks = 100;
    /// let mut eta = Eta::new(count_of_tasks, TimeAcc::MILLI);
    /// sleep(Duration::from_secs(1)); // one second elapses
    /// eta.pause();
    /// sleep(Duration::from_secs(1)); // this other second isn't kept track of
    /// eta.step(); // time elapsed will account for approx. 1 second here
    /// eta.resume(); // does nothing as eta is resumed automatically right after eta.step()
    /// # }
    /// ```
    pub fn pause(&mut self) {
        if !self.paused {
            self.paused = true;
            self.time_paused += self.step_elapsed();
        }
    }

    /// Resumes time measurement for the object. Must be called after pausing with eta.pause(),
    /// otherwise it will do nothing. Object is resumed automatically after eta.step().
    /// 
    /// # Example
    /// ```rust
    /// # use eta::{Eta,TimeAcc};
    /// # use std::time::Duration;
    /// # use std::thread::sleep;
    /// # fn main () {
    /// # let count_of_tasks = 100;
    /// let mut eta = Eta::new(count_of_tasks, TimeAcc::MILLI);
    /// eta.pause(); // eta is paused
    /// sleep(Duration::from_secs(1)); // this second is NOT kept track of
    /// eta.resume(); // resumes the object
    /// sleep(Duration::from_secs(1)); // this other second is kept track of
    /// eta.step(); // time elapsed will account for approx. 1 seconds here
    /// # }
    /// ```
    pub fn resume(&mut self) {
        if self.paused {
            self.recent_time = Instant::now();
            self.paused = false;
        }
    }

    /// Steps the eta object by one task and does all the time calculations at the time of being called.
    /// 
    /// # Example
    /// ```rust
    /// # use eta::{Eta,TimeAcc};
    /// # fn main () {
    /// # let count_of_tasks = 100;
    /// let mut eta = Eta::new(count_of_tasks, TimeAcc::MILLI);
    /// for something in 0..count_of_tasks {
    ///     // do something
    ///     eta.step();
    ///     println!("{}", eta);
    /// }
    /// # }
    /// ```
    pub fn step(&mut self) {
        self.tasks_done += 1;
        if !self.paused {
            self.time_elapsed += self.step_elapsed();
        }
        self.time_elapsed += self.time_paused;
        self.recent_time = Instant::now();
        self.paused = false;
        self.time_paused = 0;
    }

    fn step_elapsed(&self) -> usize {
        match self.time_accuracy {
            TimeAcc::SEC => self.recent_time.elapsed().as_secs() as usize,
            TimeAcc::MILLI => self.recent_time.elapsed().as_millis() as usize,
            TimeAcc::MICRO => self.recent_time.elapsed().as_micros() as usize,
            TimeAcc::NANO => self.recent_time.elapsed().as_nanos() as usize
        }
    }

    /// Returns the portion of tasks that have been completed as a double between 0 and 1.
    /// Multiply by 100 to get the according percentage.
    /// 
    /// # Example
    /// ```rust
    /// # use eta::{Eta,TimeAcc};
    /// # fn main () {
    /// # let count_of_tasks = 100;
    /// let mut eta = Eta::new(count_of_tasks, TimeAcc::MILLI);
    /// for something in 0..count_of_tasks {
    ///     // do something
    ///     eta.step();
    ///     println!("{}% of the job is done", eta.progress()*100 as f64);
    /// }
    /// # }
    /// ```
    pub fn progress(&self) -> f64 {
        (self.tasks_done as f64) / (self.tasks_count as f64)
    }

    /// Returns the estimated amount of time left for the job.
    /// 
    /// # Example
    /// ```rust
    /// # use eta::{Eta,TimeAcc};
    /// # fn main () {
    /// # let count_of_tasks = 100;
    /// let mut eta = Eta::new(count_of_tasks, TimeAcc::MILLI);
    /// for something in 0..count_of_tasks {
    ///     // do something
    ///     eta.step();
    ///     println!("Job will be finished in {}s.", eta.time_remaining()/1000);
    /// }
    /// # }
    /// ```
    pub fn time_remaining(&self) -> usize {
        ((self.tasks_count - self.tasks_done) as f64 * (self.time_elapsed as f64) / (self.tasks_done as f64))
            as usize
    }
}

fn minutes_format (time: usize) -> String {
    if time < 60 {
        format!("{}s", time)
    } else if time % 60 == 0 {
        format!("{}m", time / 60)
    } else {
        format!("{}m {}s", time / 60, time % 60)
    }
}

#[doc(hidden)]
impl std::fmt::Display for Eta {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}/{}: {}% ({} remaining)", self.tasks_done, self.tasks_count, (self.progress()*100.0).round(), match self.time_accuracy {
            TimeAcc::SEC => minutes_format(self.time_remaining()),
            TimeAcc::MILLI => format!("{}s", self.time_remaining() / 1000),
            TimeAcc::MICRO => format!("{}ms", self.time_remaining() / 1000),
            TimeAcc::NANO => format!("{}µs", self.time_remaining() / 1000)
        })
    }
}

#[doc(hidden)]
impl std::fmt::Display for TimeAcc {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            TimeAcc::SEC => write!(f, "s"),
            TimeAcc::MILLI => write!(f, "ms"),
            TimeAcc::MICRO => write!(f, "µs"),
            TimeAcc::NANO => write!(f, "ns"),
        }
    }
}