Cyclone ISO C++ API Reference Guide
Time.hpp
Go to the documentation of this file.
1 #ifndef OMG_DDS_CORE_TIME_HPP_
2 #define OMG_DDS_CORE_TIME_HPP_
3 
4 /* Copyright 2010, Object Management Group, Inc.
5  * Copyright 2010, PrismTech, Corp.
6  * Copyright 2010, Real-Time Innovations, Inc.
7  * All rights reserved.
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 
22 #include <dds/core/types.hpp>
23 
24 namespace dds
25 {
26 namespace core
27 {
28 class Duration;
29 class Time;
30 }
31 }
32 
43 {
44 public:
45  static const Time invalid(); // {-1, 0xffffffff}
46 
47 public:
53  static const Time from_microsecs(int64_t microseconds);
59  static const Time from_millisecs(int64_t milliseconds);
65  static const Time from_secs(double seconds);
66 
67 public:
71  Time();
75  explicit Time(int64_t sec, uint32_t nanosec = 0);
76 
77 public:
81  int64_t sec() const;
82 
87  void sec(int64_t s);
88 
92  uint32_t nanosec() const;
93 
98  void nanosec(uint32_t ns);
99 
100 public:
111  int compare(const Time& that) const;
112 
117  bool operator >(const Time& that) const;
118 
123  bool operator >=(const Time& that) const;
124 
129  bool operator !=(const Time& that) const;
130 
135  bool operator ==(const Time& that) const;
140  bool operator <=(const Time& that) const;
145  bool operator <(const Time& that) const;
146 
147 public:
152  Time& operator+=(const Duration& a_ti);
157  Time& operator-=(const Duration& a_ti);
158 
159 public:
165  int64_t to_millisecs() const;
166 
172  int64_t to_microsecs() const;
173 
179  double to_secs() const;
180 
181 private:
182  int64_t sec_;
183  uint32_t nsec_;
184 };
185 
186 // Time arithmetic operators.
194 
202 
210 
211 
212 #endif /* OMG_DDS_CORE_TIME_HPP_ */
dds::core::Time::invalid
static const Time invalid()
dds::core::Time::nanosec
uint32_t nanosec() const
dds::core::Time::Time
Time()
dds::core::Time::from_secs
static const Time from_secs(double seconds)
operator-
const dds::core::Time operator-(const dds::core::Time &lhs, const dds::core::Duration &rhs)
types.hpp
dds::core::Time::operator==
bool operator==(const Time &that) const
dds::core::Duration
Definition: Duration.hpp:42
dds::core::Time::operator>=
bool operator>=(const Time &that) const
dds::core::Time::to_microsecs
int64_t to_microsecs() const
dds::core::Time::from_microsecs
static const Time from_microsecs(int64_t microseconds)
dds::core::Time::from_millisecs
static const Time from_millisecs(int64_t milliseconds)
operator+
const dds::core::Time operator+(const dds::core::Time &lhs, const dds::core::Duration &rhs)
dds::core::Time::operator>
bool operator>(const Time &that) const
OMG_DDS_API
#define OMG_DDS_API
Definition: macros.hpp:52
dds
Definition: array.hpp:30
dds::core::Time::operator<
bool operator<(const Time &that) const
dds::core::Time::to_millisecs
int64_t to_millisecs() const
dds::core::Time::compare
int compare(const Time &that) const
dds::core::Time::operator<=
bool operator<=(const Time &that) const
dds::core::Time::operator-=
Time & operator-=(const Duration &a_ti)
dds::core::Time::to_secs
double to_secs() const
dds::core::Time::operator!=
bool operator!=(const Time &that) const
dds::core::Time::sec
int64_t sec() const
dds::core::Time::operator+=
Time & operator+=(const Duration &a_ti)
dds::core::Time
Definition: Time.hpp:42