Migrate libasyncio from boost.signal to signals2 (#8756)
[libasyncio] / asyncio / async_timer.cpp
CommitLineData
8c15b8c7
TJ
1/*
2The software in this package is distributed under the GNU General
3Public License version 2 (with a special exception described below).
4
5A copy of GNU General Public License (GPL) is included in this distribution,
6in the file COPYING.GPL.
7
8As a special exception, if other files instantiate templates or use macros
9or inline functions from this file, or you compile this file and link it
10with other works to produce a work based on this file, this file
11does not by itself cause the resulting work to be covered
12by the GNU General Public License.
13
14However the source code for this file must still be made available
15in accordance with section (3) of the GNU General Public License.
16
17This exception does not invalidate any other reasons why a work based
18on this file might be covered by the GNU General Public License.
19*/
5c8a3d40
RP
20/** @file
21 *
22 * (c) Copyright 2007 by Intra2net AG
5c8a3d40
RP
23 */
24
25//#define NOISEDEBUG
26
27
42b7c46d 28#include "async_timer.hpp"
5c8a3d40
RP
29
30
31#ifdef NOISEDEBUG
32#include <iostream>
33#include <iomanip>
34#define DOUT(msg) std::cout << msg << std::endl
35#define FODOUT(obj,msg) std::cout << typeid(*obj).name() << "[" << obj << "]:" << msg << std::endl
36#define ODOUT(msg) std::cout << typeid(*this).name() << "[" << this << "]:" << msg << std::endl
37#else
38#define DOUT(msg) do {} while (0)
39#define FODOUT(obj,msg) do {} while (0)
40#define ODOUT(msg) do {} while (0)
41#endif
42
43
42b7c46d 44namespace AsyncIo
5c8a3d40
RP
45{
46
4ef5de58 47using namespace Utils;
5c8a3d40
RP
48
49/*
50 * Implementation of SimpleTimer
51 */
52
53SimpleTimer::SimpleTimer()
54{
55} // eo SimpleTimer::SimpleTimer()
56
57
58SimpleTimer::SimpleTimer(const MilliTime& delta, const TimerSignal::slot_function_type& action)
59{
60 addAction(action);
61 startTimer(delta);
62} // eo SimpleTimer::SimpleTimer(const MilliTime&, const TimerSignal::slot_type&)
63
64
65SimpleTimer::SimpleTimer(long milli_seonds_delta, const TimerSignal::slot_function_type& action)
66{
67 addAction(action);
68 startTimerMS(milli_seonds_delta);
69} // eo SimpleTimer::SimpleTimer(long, const TimerSignal::slot_type&)
70
71
72void SimpleTimer::execute()
73{
74 ODOUT("execute()!");
75 m_timer_signal();
4ef5de58 76 ODOUT(" signal with this");
5c8a3d40 77 m_timer_signal_p(this);
4ef5de58 78 ODOUT("execute done.");
5c8a3d40
RP
79} // eo SimpleTimer::execute
80
81
82void SimpleTimer::addAction( const TimerSignal::slot_function_type& action )
83{
84 m_timer_signal.connect(action);
85} // eo SimpleTimer::addAction(const TimerSignal::slot_type&)
86
87
88void SimpleTimer::addActionP( const TimerSignalP::slot_function_type& action )
89{
90 m_timer_signal_p.connect(action);
91} // eo SimpleTimer::addAction(const TimerSignalP::slot_type&)
92
93
94void SimpleTimer::startTimer( const MilliTime& delta )
95{
96 m_delta= delta;
97 setDeltaWhenTime( delta );
98 activate(true);
99#ifdef NOISEDEBUG
100 MilliTime now, t;
4ef5de58 101 get_current_monotonic_time(now);
5c8a3d40
RP
102 t= getWhenTime();
103 MilliTime dt= t-now;
104 ODOUT("startTimer");
105 ODOUT(" now: sec="<< now.mt_sec << ", msec="<<now.mt_msec);
106 ODOUT(" t: sec="<< t.mt_sec << ", msec="<<t.mt_msec);
107 ODOUT(" dt: sec="<< dt.mt_sec << ", msec="<<dt.mt_msec);
108#endif
109} // eo SimpleTimer::startTimer(const MilliTime&)
110
111
112void SimpleTimer::startTimerMS( long milli_seconds )
113{
114 startTimer( MilliTime(0,milli_seconds) );
115} // eo SimpleTimer::stratTimerMS(long)
116
117
118void SimpleTimer::stopTimer()
119{
120 deactivate();
121} // eo SimpleTimer::stopTimer
122
123
42b7c46d 124} // eo namespace AsyncIo