]> www.ginac.de Git - ginac.git/blob - check/timer.cpp
added an "options" parameter to simplify_indexed(), for future extensions
[ginac.git] / check / timer.cpp
1 /** @file timer.cpp
2  *
3  *  A simple stop watch class. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include <sys/time.h>
24 #include <sys/resource.h>
25 #include <unistd.h>
26
27 #include "timer.h"
28
29 timer::timer() : on(false)
30 {
31         getrusage(RUSAGE_SELF, &used1);
32         getrusage(RUSAGE_SELF, &used2);
33 }
34
35 void timer::start()
36 {
37         on = true;
38         getrusage(RUSAGE_SELF, &used1);
39         getrusage(RUSAGE_SELF, &used2);
40 }
41
42 void timer::stop()
43 {
44         on = false;
45         getrusage(RUSAGE_SELF, &used2);
46 }
47
48 void timer::reset()
49 {
50         getrusage(RUSAGE_SELF, &used1);
51         getrusage(RUSAGE_SELF, &used2);
52 }
53
54 double timer::read()
55 {
56         double elapsed;
57         if (this->running())
58                 getrusage(RUSAGE_SELF, &used2);
59         elapsed = ((used2.ru_utime.tv_sec - used1.ru_utime.tv_sec) +
60                            (used2.ru_stime.tv_sec - used1.ru_stime.tv_sec) +
61                            (used2.ru_utime.tv_usec - used1.ru_utime.tv_usec) / 1e6 +
62                            (used2.ru_stime.tv_usec - used1.ru_stime.tv_usec) / 1e6);
63         // round to 10ms for safety:
64         return 0.01*int(elapsed*100+0.5);
65 }
66
67 bool timer::running()
68 {
69         return on;
70 }