[2024-12-17] Allow for multiple timing operations
- Return `Init` object from `tic`, and accept it in `toc`. This overrides the internal class time. - Return results from `toc` to remove need for class instantiation in Python. - Print elapsed time in seconds by default when `toc` is called.
This commit is contained in:
parent
3c4978bef8
commit
a5475a460b
20
src/lib.rs
20
src/lib.rs
@ -19,6 +19,7 @@ mod tictoc {
|
|||||||
seconds: f64,
|
seconds: f64,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
#[pyclass(name = "init")]
|
#[pyclass(name = "init")]
|
||||||
pub struct Init {
|
pub struct Init {
|
||||||
time: Instant,
|
time: Instant,
|
||||||
@ -44,23 +45,32 @@ mod tictoc {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn tic(&mut self) {
|
fn tic(&mut self) -> PyResult<Init> {
|
||||||
self.time = Instant::now();
|
self.time = Instant::now();
|
||||||
self.status = true;
|
self.status = true;
|
||||||
|
Ok(Init::new())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn toc(&mut self) -> PyResult<()> {
|
fn toc(&mut self, tic: Option<Init>) -> PyResult<Results> {
|
||||||
if self.status == false {
|
let elapsed_time = match tic {
|
||||||
|
Some(ref tic) => tic.time.elapsed(),
|
||||||
|
None => self.time.elapsed(),
|
||||||
|
};
|
||||||
|
let status = match tic {
|
||||||
|
Some(ref _tic) => true,
|
||||||
|
None => self.status,
|
||||||
|
};
|
||||||
|
if status == false {
|
||||||
Err(PyException::new_err("tic() must be called before toc()"))
|
Err(PyException::new_err("tic() must be called before toc()"))
|
||||||
} else {
|
} else {
|
||||||
let elapsed_time = self.time.elapsed();
|
|
||||||
self.results = Results {
|
self.results = Results {
|
||||||
nanos: elapsed_time.as_nanos(),
|
nanos: elapsed_time.as_nanos(),
|
||||||
micros: elapsed_time.as_micros(),
|
micros: elapsed_time.as_micros(),
|
||||||
millis: elapsed_time.as_millis(),
|
millis: elapsed_time.as_millis(),
|
||||||
seconds: elapsed_time.as_secs_f64(),
|
seconds: elapsed_time.as_secs_f64(),
|
||||||
};
|
};
|
||||||
Ok(())
|
println!("The elapsed time was {} seconds.",self.results.seconds);
|
||||||
|
Ok(self.results.clone())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,6 @@ __doc__ = tictoc.__doc__
|
|||||||
if hasattr(tictoc, "__all__"):
|
if hasattr(tictoc, "__all__"):
|
||||||
__all__ = tictoc.__all__
|
__all__ = tictoc.__all__
|
||||||
|
|
||||||
results = tictoc.init();
|
t = tictoc.init();
|
||||||
tic = results.tic;
|
tic = t.tic;
|
||||||
toc = results.toc;
|
toc = t.toc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user