summaryrefslogtreecommitdiff
path: root/src/third_party/boost-1.60.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/suspendable_stopwatch.hpp
blob: 5af8e948f63ee4796c4ede4cd39d2e58ed018508 (plain)
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
//  boost/chrono/stopwatches/suspendable_stopwatch.hpp  ------------------------------------------------------------//
//  Copyright 2011 Vicente J. Botet Escriba
//  Distributed under the Boost Software License, Version 1.0. (See accompanying
//  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//  See http://www.boost.org/libs/libs/chrono/stopwatches for documentation.

#ifndef BOOST_CHRONO_STOPWATCHES_SUSPENDABLE_STOPWATCH__HPP
#define BOOST_CHRONO_STOPWATCHES_SUSPENDABLE_STOPWATCH__HPP

#include <boost/chrono/config.hpp>

#include <boost/chrono/stopwatches/stopwatch_scoped.hpp>
#include <boost/chrono/stopwatches/collectors/no_memory.hpp> // default laps_collector
#include <boost/chrono/stopwatches/dont_start.hpp>
#include <boost/chrono/detail/system.hpp>
#include <boost/chrono/system_clocks.hpp>
#include <utility>

namespace boost
{
  namespace chrono
  {

    template<typename Clock=high_resolution_clock, typename LapsCollector=no_memory<typename Clock::duration> >
    class suspendable_stopwatch
    {
    public:
      typedef LapsCollector laps_collector;
      typedef Clock clock;
      typedef typename Clock::duration duration;
      typedef typename Clock::time_point time_point;
      typedef typename Clock::rep rep;
      typedef typename Clock::period period;
      BOOST_STATIC_CONSTEXPR bool is_steady = Clock::is_steady;

      suspendable_stopwatch() :
        start_(duration::zero()),
        running_(false),
        suspended_(false),
        laps_collector_(),
        partial_(duration::zero())
      {
        start();
      }
#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      explicit suspendable_stopwatch(
          system::error_code & ec
          ) :
        start_(duration::zero()),
        running_(false),
        suspended_(false),
        laps_collector_(),
        partial_(duration::zero())
      {
        start(ec);
      }
#endif

      explicit suspendable_stopwatch(
          const dont_start_t&
          ) :
          start_(duration::zero()),
          running_(false),
          suspended_(false),
          laps_collector_(),
          partial_(duration::zero())
      {
      }

      explicit suspendable_stopwatch(
          laps_collector const& acc
          ) :
          start_(duration::zero()),
          running_(false),
          suspended_(false),
          laps_collector_(acc),
          partial_(duration::zero())
      {
        start();
      }

#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      explicit suspendable_stopwatch(
          laps_collector const& acc,
          system::error_code & ec
          ) :
          start_(duration::zero()),
          running_(false),
          suspended_(false),
          laps_collector_(acc),
          partial_(duration::zero())
      {
        start(ec);
      }
#endif

      suspendable_stopwatch(
          laps_collector const& acc,
          const dont_start_t&
          ) :
            start_(duration::zero()),
            running_(false),
            suspended_(false),
            laps_collector_(acc),
            partial_(duration::zero())
      {
      }

      ~suspendable_stopwatch()
      {
        stop();
      }

      void restart()
      {
        time_point tmp = clock::now();

        if (running_)
        {
          partial_ += tmp - start_;
          laps_collector_.store(partial_);
          partial_ = duration::zero();
        }
        else
        {
          running_ = true;
        }
        start_ = tmp;
      }

#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      void restart(system::error_code & ec)
      {
        time_point tmp = clock::now(ec);
        if (!BOOST_CHRONO_IS_THROWS(ec) && ec) return;

        if (running_)
        {
          partial_ += tmp - start_;
          laps_collector_.store(partial_);
          partial_ = duration::zero();
        }
        else
        {
          running_ = true;
        }
        start_ = tmp;
      }
#endif

      void start()
      {
          start_ = clock::now();;
          partial_ = duration::zero();
          running_ = true;
      }
#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      void start(system::error_code & ec)
      {
          time_point tmp = clock::now(ec);
          if (!BOOST_CHRONO_IS_THROWS(ec) && ec) return;

          partial_ = duration::zero();
          start_ = tmp;
          running_ = true;
      }
#endif

      void stop()
      {
          partial_ += clock::now() - start_;
          laps_collector_.store(partial_);
          start_ = time_point(duration::zero());
          running_ = false;
          suspended_ = false;
      }

#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      void stop(system::error_code & ec)
      {
          time_point tmp = clock::now(ec);
          if (!BOOST_CHRONO_IS_THROWS(ec) && ec) return;

          partial_ += tmp - start_;
          laps_collector_.store(partial_);
          start_ = time_point(duration::zero());
          running_ = false;
          suspended_ = false;
      }
#endif

      void suspend()
      {
        if (is_running())
        {
          if (!suspended_)
          {
            partial_ += clock::now() - start_;
            suspended_ = true;
          }
        }
      }

#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      void suspend(system::error_code & ec)
      {
        if (is_running())
        {
          if (!suspended_)
          {
            time_point tmp = clock::now(ec);
            if (!BOOST_CHRONO_IS_THROWS(ec) && ec) return;

            partial_ += tmp - start_;
            suspended_ = true;
          }
          else
          {
            ec.clear();
          }
        } else
        {
          ec.clear();
        }
      }
#endif

      void resume()
      {
        if (suspended_)
        {
          start_ = clock::now();
          suspended_ = false;
        }
      }

#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      void resume(system::error_code & ec)
      {
        if (suspended_)
        {
          time_point tmp = clock::now(ec);
          if (!BOOST_CHRONO_IS_THROWS(ec) && ec) return;

          start_ = tmp;
          suspended_ = false;
        } else
        {
          ec.clear();
        }
      }
#endif

      bool is_running() const {
        return running_;
      }
      bool is_suspended() const {
        return suspended_;
      }

      duration elapsed() const
      {
        if (is_running())
        {
          if (suspended_) {
            return partial_;
          }
          else
          {
            return partial_ + clock::now() - start_;
          }
        } else
        {
          return duration::zero();
        }
      }
#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      duration elapsed(system::error_code & ec) const
      {
        if (is_running())
        {
          if (suspended_) {
            return partial_;
          }
          else
          {
            time_point tmp = clock::now(ec);
            if (!BOOST_CHRONO_IS_THROWS(ec) && ec) return duration::zero();

            return partial_ + tmp - start_;
          }
        } else
        {
          return duration::zero();
        }
      }
#endif

      void reset(
          )
      {
        laps_collector_.reset();
        running_ = false;
        suspended_ = false;
        partial_ = duration::zero();
        start_ = time_point(duration::zero());
      }

      laps_collector const& get_laps_collector()
      {
        return laps_collector_;
      }


      typedef stopwatch_runner<suspendable_stopwatch<Clock, LapsCollector> >
          scoped_run;
      typedef stopwatch_stopper<suspendable_stopwatch<Clock, LapsCollector> >
          scoped_stop;
      typedef stopwatch_suspender<suspendable_stopwatch<Clock, LapsCollector> >
          scoped_suspend;
      typedef stopwatch_resumer<suspendable_stopwatch<Clock, LapsCollector> >
          scoped_resume;
    private:
      time_point start_;
      bool running_;
      bool suspended_;
      laps_collector laps_collector_;
      duration partial_;
    };

  } // namespace chrono
} // namespace boost

#endif