SoPlex Doxygen Documentation
timer.cpp
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the class library */
4 /* SoPlex --- the Sequential object-oriented simPlex. */
5 /* */
6 /* Copyright (C) 1996-2012 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SoPlex is distributed under the terms of the ZIB Academic Licence. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 #include <assert.h>
17 
18 #ifdef _WIN32
19 
20 #include <time.h>
21 
22 #else // !_WIN32
23 
24 #include <sys/types.h>
25 #include <sys/times.h>
26 //#include <sys/param.h>
27 #include <limits.h>
28 #include <unistd.h>
29 
30 #endif // !_WIN32
31 
32 #include "spxdefines.h"
33 #include "timer.h"
34 
35 namespace soplex
36 {
37 /* determine TIMES_TICKS_PER_SEC for clock ticks delivered by times().
38  * (don't use CLOCKS_PER_SEC since this is related to clock() only).
39  */
40 #if defined(CLK_TCK)
41 #define TIMES_TICKS_PER_SEC CLK_TCK
42 #elif defined(_SC_CLK_TCK)
43 #define TIMES_TICKS_PER_SEC sysconf(_SC_CLK_TCK)
44 #elif defined(HZ)
45 #define TIMES_TICKS_PER_SEC HZ
46 #else // !CLK_TCK && !_SC_CLK_TCK && !HZ
47 #define TIMES_TICKS_PER_SEC 60
48 #endif // !CLK_TCK && !_SC_CLK_TCK && !HZ
49 
50 const long Timer::ticks_per_sec = long(TIMES_TICKS_PER_SEC);
51 
52 // get actual user, system and real time from system
53 void Timer::updateTicks() const
54 {
55 #ifdef _WIN32
56 
57  sTicks = 0;
58  uTicks = rTicks = clock();
59 
60 #else /* !_WIN32 */
61 
62  struct tms now;
63  clock_t ret = times(&now);
64 
65  if (int(ret) == -1)
66  now.tms_utime = now.tms_stime = ret = 0;
67 
68  uTicks = long(now.tms_utime);
69  sTicks = long(now.tms_stime);
70  rTicks = long(ret);
71 
72 #endif /* !_WIN32 */
73 }
74 
75 // start timer, resume accounting user, system and real time.
77 {
78  // ignore start request if timer is runnning
79  if (status != RUNNING)
80  {
81  updateTicks();
82 
83  uAccount -= uTicks;
84  sAccount -= sTicks;
85  rAccount -= rTicks;
86  status = RUNNING;
87  }
88 }
89 
90 // stop timer, return accounted user time.
92 {
93  // status remains unchanged if timer is not running
94  if (status == RUNNING)
95  {
96  updateTicks();
97 
98  uAccount += uTicks;
99  sAccount += sTicks;
100  rAccount += rTicks;
101  status = STOPPED;
102  }
103  return ticks2sec(uAccount);
104 }
105 
106 // get accounted user, system or real time.
108  Real* uTime,
109  Real* sTime,
110  Real* rTime) const
111 {
112  if (status != RUNNING)
113  {
114  if (uTime)
115  *uTime = ticks2sec(uAccount);
116  if (sTime)
117  *sTime = ticks2sec(sAccount);
118  if (rTime)
119  *rTime = ticks2sec(rAccount);
120  }
121  else
122  {
123  updateTicks();
124 
125  if (uTime)
126  *uTime = ticks2sec(uTicks + uAccount);
127  if (sTime)
128  *sTime = ticks2sec(sTicks + sAccount);
129  if (rTime)
130  *rTime = ticks2sec(rTicks + rAccount);
131  }
132  assert((uTime == 0) || (*uTime >= 0.0));
133  assert((sTime == 0) || (*sTime >= 0.0));
134  assert((rTime == 0) || (*rTime >= 0.0));
135 }
136 
137 // return user time accounted by timer
139 {
140  Real uTime;
141 
142  getTimes(&uTime, 0, 0);
143 
144  return uTime;
145 }
146 
147 // return system time accounted by timer
149 {
150  Real sTime;
151 
152  getTimes(0, &sTime, 0);
153 
154  return sTime;
155 }
156 
157 // return real time accounted by timer
159 {
160  Real rTime;
161 
162  getTimes(0, 0, &rTime);
163 
164  return rTime;
165 }
166 
167 } // namespace soplex
168 
169 //-----------------------------------------------------------------------------
170 //Emacs Local Variables:
171 //Emacs mode:c++
172 //Emacs c-basic-offset:3
173 //Emacs tab-width:8
174 //Emacs indent-tabs-mode:nil
175 //Emacs End:
176 //-----------------------------------------------------------------------------