Migrate libasyncio from boost.signal to signals2 (#8756)
[libasyncio] / utils / asyncio_time_tools.hpp
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*/
7841da45 20/**
aba4c34d
RP
21 * @file
22 * @brief
23 *
7841da45 24 * @author Reinhard Pfau \<reinhard.pfau@gmx.de\>
aba4c34d 25 *
7841da45
RP
26 * @copyright &copy; Copyright 2008-2009 Intra2Net AG
27 * @contact Intra2net Opensource team \<opensource@intra2net.com\>
aba4c34d
RP
28 */
29
30#ifndef __ASYNCIO__TIME_TOOLS_HPP__
31#define __ASYNCIO__TIME_TOOLS_HPP__
32
33namespace AsyncIo
34{
35namespace Utils
36{
37
38/**
39 * @brief structure for storing (a point in time as) seconds and milliseconds.
7841da45
RP
40 *
41 * This structure is used at various places within libasyncio to represent points in
42 * time or time durations.
aba4c34d
RP
43 */
44struct MilliTime
45{
46 long mt_sec;
47 long mt_msec;
48
49 MilliTime(long sec=0, long msec=0);
50
51 void set(long sec, long msec=0);
52
53 inline long long get_milliseconds() const
54 {
55 return ((long long)mt_sec * 1000L + mt_msec);
56 } // eo get_milliseconds
57
58 void normalize();
59
60 bool operator < (MilliTime& other);
61 bool operator == (MilliTime& other);
62
63 MilliTime& operator -= (const MilliTime& lhs);
64 MilliTime& operator += (const MilliTime& lhs);
65
66}; // eo struct MilliTime
67
68
69inline MilliTime operator + (const MilliTime& rhs, const MilliTime& lhs)
70{
71 MilliTime t(rhs);
72 return t+= lhs;
73} // eo operator + (const MilliTime& rhs, const MilliTime lhs)
74
75inline MilliTime operator - (const MilliTime& rhs, const MilliTime& lhs)
76{
77 MilliTime t(rhs);
78 return t-= lhs;
79} // eo operator - (const MilliTime& rhs, const MilliTime lhs)
80
81
82inline bool operator <= (MilliTime& rhs, MilliTime& lhs)
83{
84 return (rhs<lhs) || (rhs==lhs);
85} // eo operator <= (MilliTime& rhs, MilliTime& lhs)
86
87
88
89/*
90** tool functions:
91*/
92
93
94void get_current_real_time(MilliTime& mt);
95void get_current_monotonic_time(MilliTime& mt);
96
97
98} // eo namespace Utils
99} // eo namespace AsyncIo
100
101
102
fd6ea89e 103#endif