X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/f620be5869815a0dccd5b37089c2ee91399915e4..cf04fdb061d2a70a7a4d22b14c2cd3c0944e5138:/timer.h?ds=inline diff --git a/timer.h b/timer.h index ccb115b..b9a2509 100644 --- a/timer.h +++ b/timer.h @@ -51,7 +51,9 @@ struct timeval operator-(const struct timeval& a, const struct timeval& b) class timestamp { public: - timestamp(); + enum clock_type { wallclock_time, cpu_time }; + + timestamp(clock_type ct); ~timestamp(); void reset(); @@ -62,16 +64,19 @@ public: double duration() const; private: - struct rusage before; - struct rusage after; + clock_type clk; + struct timeval before; + struct timeval after; struct timeval difference; + void get_time(struct timeval& tv); + static void tv_clear(struct timeval& a); static double timertod(const struct timeval& a); }; inline -timestamp::timestamp() +timestamp::timestamp(clock_type ct): clk(ct) { reset(); } @@ -84,25 +89,22 @@ timestamp::~timestamp() inline void timestamp::reset() { - tv_clear(before.ru_utime); - tv_clear(before.ru_stime); - tv_clear(after.ru_utime); - tv_clear(after.ru_stime); + tv_clear(before); + tv_clear(after); tv_clear(difference); } inline void timestamp::start() { - getrusage(RUSAGE_SELF, &before); + get_time(before); } inline void timestamp::stop() { - getrusage(RUSAGE_SELF, &after); - difference = difference + ((after.ru_utime + after.ru_stime) - - (before.ru_utime + before.ru_stime)); + get_time(after); + difference = difference + (after - before); } inline @@ -117,6 +119,22 @@ double timestamp::duration() const return timertod(difference); } +inline +void timestamp::get_time(struct timeval& tv) +{ + switch (clk) { + case cpu_time: { + struct rusage usage; + getrusage(RUSAGE_SELF, &usage); + tv = usage.ru_utime + usage.ru_stime; + break; + } + case wallclock_time: + gettimeofday(&tv, NULL); + break; + } +} + inline void timestamp::tv_clear(struct timeval& a) {