Time.cpp
Go to the documentation of this file.
1 //
2 // Time.cpp
3 //
4 
5 
6 #include "sick_scan/tcp/Time.hpp"
7 //#include <sys/time.h>
8 #include <time.h>
9 #include "sick_scan/tcp/toolbox.hpp" // fuer "::toString()"
10 
11 #ifdef WIN32
12 int gettimeofday(struct timeval* tp, struct timezone* tzp) // Source: see https://stackoverflow.com/questions/10905892/equivalent-of-gettimeday-for-windows
13 {
14  // Note: some broken versions only have 8 trailing zero's, the correct epoch has 9 trailing zero's
15  // This magic number is the number of 100 nanosecond intervals since January 1, 1601 (UTC)
16  // until 00:00:00 January 1, 1970
17  static const uint64_t EPOCH = ((uint64_t)116444736000000000ULL);
18 
19  SYSTEMTIME system_time;
20  FILETIME file_time;
21  uint64_t time;
22 
23  GetSystemTime(&system_time);
24  SystemTimeToFileTime(&system_time, &file_time);
25  time = ((uint64_t)file_time.dwLowDateTime);
26  time += ((uint64_t)file_time.dwHighDateTime) << 32;
27 
28  tp->tv_sec = (long)((time - EPOCH) / 10000000L);
29  tp->tv_usec = (long)(system_time.wMilliseconds * 1000);
30  return 0;
31 }
32 #endif // WIN32
33 
34 //
35 // Duration
36 //
38 {
39  m_duration = 0.0;
40 }
41 
42 
43 const double Time::m_secondFractionNTPtoNanoseconds (0.2328306436538696); // = 2^-32 * 1e9
44 const double Time::m_nanosecondsToSecondFractionNTP (4.29496729600000); // = 2^32 * 1e-9
45 const UINT64 Time::secondsFrom1900to1970 (2208988800UL);
46 
47 //
48 // Time
49 //
51 {
52  set(0.0);
53 }
54 
56 {
57 }
58 
59 //
60 // Returns the time as a fractional value with up to 4 fraction digits.
61 // Example: "1393926457.2141"
62 //
63 std::string Time::toString() const
64 {
65  double t = (double)m_time.tv_sec + ((double)m_time.tv_usec / 1000000.0);
66  return ::toString(t, 4);
67 }
68 
69 //
70 // Returns the time as a readble string, in local time. This includes
71 // the microseconds.
72 // Example: "Tue Mar 4 10:47:37 2014 165751 us"
73 //
74 std::string Time::toLongString() const
75 {
76  time_t seconds = m_time.tv_sec;
77  struct tm* seconds_tm = localtime(&seconds);
78  char* text = asctime(seconds_tm);
79  std::string s = text;
80 
81  // Microseconds
82  std::string us = "000000" + ::toString((UINT32)m_time.tv_usec);
83  us = us.substr(us.length() - 6, 6);
84  s += " " + us + " us";
85 
86  return s;
87 }
88 
89 //
90 //
91 //
92 void Time::set(double time)
93 {
94  m_time.tv_sec = (UINT32)time;
95  #pragma warning(suppress: 4244) // conversion to long
96  m_time.tv_usec = (time - (double)((UINT32)time)) * 1000000;
97 }
98 
99 //
100 //
101 //
102 void Time::set(timeval time)
103 {
104  m_time = time;
105 }
106 
107 
108 void Time::set(UINT64 ntpTime)
109 {
110  set(static_cast<UINT64>(ntpTime >> 32), static_cast<UINT32>(ntpTime));
111 }
112 
113 //
114 //
115 //
116 void Time::set(UINT64 ntpSeconds, UINT32 ntpFractionalSeconds)
117 {
118 // const UINT32 startUnixEpoche = 2208988800; // seconds from 1.1.1900 to 1.1.1900
119  #pragma warning(suppress: 4244) // conversion to long
120  m_time.tv_sec = ntpSeconds - secondsFrom1900to1970;
121  #pragma warning(suppress: 4244) // conversion to long
122  m_time.tv_usec = ntpFractionalSeconds * m_secondFractionNTPtoNanoseconds / 1000;
123 }
124 
129 {
130  double s = (double)m_time.tv_sec + ((double)m_time.tv_usec / 1000000);
131  return s;
132 }
133 
134 //
135 // Zeit(spanne), in [ms].
136 //
138 {
139  UINT32 ms = (m_time.tv_sec * 1000) + (m_time.tv_usec / 1000);
140  return ms;
141 }
142 
143 
144 
148 Time& Time::operator+=(const Time& other)
149 {
150  m_time.tv_usec += other.m_time.tv_usec;
151  if (m_time.tv_usec > 1000000)
152  {
153  m_time.tv_sec++;
154  m_time.tv_usec -= 1000000;
155  }
156  m_time.tv_sec += other.m_time.tv_sec;
157  return *this;
158 }
159 
163 Time Time::operator+(const Time& other) const
164 {
165  Time t;
166  t.m_time.tv_sec = m_time.tv_sec + other.m_time.tv_sec;
167  t.m_time.tv_usec = (m_time.tv_usec + other.m_time.tv_usec);
168  if (t.m_time.tv_usec > 1000000)
169  {
170  t.m_time.tv_sec++;
171  t.m_time.tv_usec -= 1000000;
172  }
173  return t;
174 }
175 
180 {
181  Time td;
182  td.set(dur.m_duration);
183 
184  Time t;
185  t = *this + td;
186 
187  return t;
188 }
189 
194 {
195  Time t;
196  gettimeofday(&(t.m_time), NULL);
197 
198  return t;
199 }
200 
201 //
202 // True, wenn unser Zeitpunkt gleich oder spaeter als der andere ist.
203 //
204 bool Time::operator>=(const Time& other) const
205 {
206  if (m_time.tv_sec > other.m_time.tv_sec)
207  {
208  return true;
209  }
210  else if ((m_time.tv_sec == other.m_time.tv_sec) &&
211  (m_time.tv_usec >= other.m_time.tv_usec))
212  {
213  return true;
214  }
215 
216  return false;
217 }
218 
219 //
220 // True, wenn unser Zeitpunkt frueher als der andere ist.
221 //
222 bool Time::operator<(const Time& other) const
223 {
224  if (m_time.tv_sec < other.m_time.tv_sec)
225  {
226  // Unsere Sekunden sind kleiner
227  return true;
228  }
229  else if ((m_time.tv_sec == other.m_time.tv_sec) &&
230  (m_time.tv_usec < other.m_time.tv_usec))
231  {
232  // Sekunden sind gleich, aber unsere usec sind kleiner
233  return true;
234  }
235 
236  return false;
237 }
238 
239 //
240 // True, wenn unser Zeitpunkt gleich dem anderen ist.
241 //
242 bool Time::operator==(const Time& other) const
243 {
244  if ((m_time.tv_sec == other.m_time.tv_sec) &&
245  (m_time.tv_usec == other.m_time.tv_usec))
246  {
247  // Gleich
248  return true;
249  }
250 
251  return false;
252 }
253 
254 
255 Time Time::operator-(const Time& other) const
256 {
257  Time t;
258  if (m_time.tv_sec > other.m_time.tv_sec)
259  {
260  t.m_time.tv_sec = m_time.tv_sec - other.m_time.tv_sec;
261  UINT32 offset = 0;
262  if (m_time.tv_usec < other.m_time.tv_usec)
263  {
264  t.m_time.tv_sec -= 1;
265  offset = 1000000;
266  }
267  t.m_time.tv_usec = (m_time.tv_usec + offset) - other.m_time.tv_usec;
268  }
269  else if (m_time.tv_sec == other.m_time.tv_sec)
270  {
271  t.m_time.tv_sec = 0;
272  if (m_time.tv_usec < other.m_time.tv_usec)
273  {
274  t.m_time.tv_usec = 0;
275  }
276  else
277  {
278  t.m_time.tv_usec = m_time.tv_usec - other.m_time.tv_usec;
279  }
280  }
281  else
282  {
283  t.m_time.tv_sec = 0;
284  t.m_time.tv_usec = 0;
285  }
286  return t;
287 }
288 
289 Time Time::operator-(const double& seconds) const
290 {
291  Time t1, t2;
292  t1.set(seconds);
293  t2 = *this - t1;
294  return t2;
295 /*
296  if (m_time.tv_sec > other.m_time.tv_sec)
297  {
298  t.m_time.tv_sec = m_time.tv_sec - other.m_time.tv_sec;
299  UINT32 offset = 0;
300  if (m_time.tv_usec < other.m_time.tv_usec)
301  {
302  t.m_time.tv_sec -= 1;
303  offset = 1000000;
304  }
305  t.m_time.tv_usec = (m_time.tv_usec + offset) - other.m_time.tv_usec;
306  }
307  else if (m_time.tv_sec == other.m_time.tv_sec)
308  {
309  t.m_time.tv_sec = 0;
310  if (m_time.tv_usec < other.m_time.tv_usec)
311  {
312  t.m_time.tv_usec = 0;
313  }
314  else
315  {
316  t.m_time.tv_usec = m_time.tv_usec - other.m_time.tv_usec;
317  }
318  }
319  else
320  {
321  t.m_time.tv_sec = 0;
322  t.m_time.tv_usec = 0;
323  }
324  return t;
325 */
326 }
327 
Time::m_secondFractionNTPtoNanoseconds
static const double m_secondFractionNTPtoNanoseconds
Definition: Time.hpp:84
Time::now
static Time now()
Definition: Time.cpp:193
Time::operator+=
Time & operator+=(const Time &other)
Definition: Time.cpp:148
NULL
#define NULL
Time::toLongString
std::string toLongString() const
Definition: Time.cpp:74
Time::secondsFrom1900to1970
static const UINT64 secondsFrom1900to1970
Definition: Time.hpp:79
Time::operator>=
bool operator>=(const Time &other) const
Definition: Time.cpp:204
Time::toString
std::string toString() const
Definition: Time.cpp:63
s
XmlRpcServer s
Time::operator+
Time operator+(const TimeDuration &dur) const
Definition: Time.cpp:179
toString
std::string toString(INT32 value)
Definition: toolbox.cpp:279
Time::m_time
timeval m_time
Definition: Time.hpp:82
Time::~Time
~Time()
Definition: Time.cpp:55
Time::set
void set(double time)
Definition: Time.cpp:92
toolbox.hpp
UINT64
uint64_t UINT64
Definition: BasicDatatypes.hpp:70
Time.hpp
TimeDuration::TimeDuration
TimeDuration()
Definition: Time.cpp:37
Time::operator-
Time operator-(const Time &other) const
Definition: Time.cpp:255
TimeDuration::m_duration
double m_duration
Definition: Time.hpp:33
Time
Definition: Time.hpp:51
TimeDuration
Definition: Time.hpp:23
ROS::seconds
double seconds(ROS::Duration duration)
Definition: ros_wrapper.cpp:180
Time::total_milliseconds
UINT32 total_milliseconds()
Definition: Time.cpp:137
Time::operator<
bool operator<(const Time &other) const
Definition: Time.cpp:222
Time::Time
Time()
Definition: Time.cpp:50
UINT32
uint32_t UINT32
Definition: BasicDatatypes.hpp:72
Time::m_nanosecondsToSecondFractionNTP
static const double m_nanosecondsToSecondFractionNTP
Definition: Time.hpp:85
Time::operator==
bool operator==(const Time &other) const
Definition: Time.cpp:242
t
geometry_msgs::TransformStamped t
Time::seconds
double seconds()
Definition: Time.cpp:128


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:12