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 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
use serde_derive::{Deserialize, Serialize};
use std::cmp;
use std::convert::TryInto;
use std::fmt::Formatter;
use std::fmt;
use std::hash::{Hash, Hasher};
use std::ops;
use std::time;
const BILLION: i64 = 1_000_000_000;
/// ROS representation of time, with nanosecond precision
#[derive(Copy, Clone, Default, Serialize, Deserialize, Debug, Eq)]
pub struct Time {
/// Number of seconds.
pub sec: u32,
/// Number of nanoseconds inside the current second.
pub nsec: u32,
}
impl Hash for Time {
fn hash<H: Hasher>(&self, state: &mut H) {
self.nanos().hash(state)
}
}
impl Time {
/// Creates a new time of zero value.
///
/// # Examples
///
/// ```
/// # use ros_message::Time;
/// assert_eq!(Time::new(), Time { sec: 0, nsec: 0 });
/// ```
#[inline]
pub fn new() -> Time {
Self::default()
}
/// Creates a time of the given number of nanoseconds.
///
/// # Examples
///
/// ```
/// # use ros_message::Time;
/// assert_eq!(Time::from_nanos(0), Time { sec: 0, nsec: 0 });
/// assert_eq!(Time::from_nanos(12_000_000_123), Time { sec: 12, nsec: 123 });
/// ```
#[inline]
pub fn from_nanos(t: i64) -> Time {
Time {
sec: (t / BILLION) as u32,
nsec: (t % BILLION) as u32,
}
}
/// Creates a time of the given number of seconds.
///
/// # Examples
///
/// ```
/// # use ros_message::Time;
/// assert_eq!(Time::from_seconds(0), Time { sec: 0, nsec: 0 });
/// assert_eq!(Time::from_seconds(12), Time { sec: 12, nsec: 0 });
/// ```
#[inline]
pub fn from_seconds(sec: u32) -> Time {
Time { sec, nsec: 0 }
}
/// Returns the number of nanoseconds in the time.
///
/// # Examples
///
/// ```
/// # use ros_message::Time;
/// assert_eq!(Time { sec: 0, nsec: 0 }.nanos(), 0);
/// assert_eq!(Time { sec: 12, nsec: 123 }.nanos(), 12_000_000_123);
/// ```
#[inline]
pub fn nanos(self) -> i64 {
i64::from(self.sec) * BILLION + i64::from(self.nsec)
}
/// Returns the number of seconds in the time.
///
/// # Examples
///
/// ```
/// # use ros_message::Time;
/// assert_eq!(Time { sec: 0, nsec: 0 }.seconds(), 0.0);
/// assert_eq!(Time { sec: 12, nsec: 123 }.seconds(), 12.000_000_123);
/// ```
#[inline]
pub fn seconds(self) -> f64 {
f64::from(self.sec) + f64::from(self.nsec) / BILLION as f64
}
}
fn display_nanos(nanos: &str, f: &mut Formatter<'_>) -> fmt::Result {
// Special display function to handle edge cases like
// Duration { sec: -1, nsec: 1 } and Duration { sec: -1, nsec: -1 }
let split_point = nanos.len() - 9;
let characters = nanos.chars();
let (left, right) = characters.as_str().split_at(split_point);
write!(f, "{}.{}", left, right)
}
impl fmt::Display for Time {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
display_nanos(&format!("{:010}", self.nanos()), f)
}
}
impl cmp::PartialEq for Time {
fn eq(&self, other: &Self) -> bool {
self.nanos() == other.nanos()
}
}
impl cmp::PartialOrd for Time {
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
self.nanos().partial_cmp(&other.nanos())
}
}
impl cmp::Ord for Time {
fn cmp(&self, other: &Self) -> cmp::Ordering {
self.nanos().cmp(&other.nanos())
}
}
impl From<time::SystemTime> for Time {
fn from(other: time::SystemTime) -> Self {
let epoch = time::SystemTime::UNIX_EPOCH;
let elapsed = other.duration_since(epoch)
.expect("Dates before 1970 are not supported by the ROS time format");
let sec = elapsed.as_secs()
.try_into()
.expect("Dates after 2100 are not supported by the ROS time format");
Self {
sec,
nsec: elapsed.subsec_nanos(),
}
}
}
impl From<Time> for time::SystemTime {
fn from(other: Time) -> Self {
let elapsed = time::Duration::new(other.sec.into(), other.nsec);
time::SystemTime::UNIX_EPOCH + elapsed
}
}
/// ROS representation of duration, with nanosecond precision
#[derive(Copy, Clone, Default, Serialize, Deserialize, Debug, Eq)]
pub struct Duration {
/// Number of seconds. Negative for negative durations.
pub sec: i32,
/// Number of nanoseconds inside the current second. Negative for negative durations.
pub nsec: i32,
}
impl Hash for Duration {
fn hash<H: Hasher>(&self, state: &mut H) {
self.nanos().hash(state)
}
}
impl fmt::Display for Duration {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
let data = self.nanos();
display_nanos(
&format!(
"{}{:010}",
if data.is_negative() { "-" } else { "" },
data.abs()
),
f,
)
}
}
impl Duration {
/// Creates a new duration of zero value.
///
/// # Examples
///
/// ```
/// # use ros_message::Duration;
/// assert_eq!(Duration::new(), Duration { sec: 0, nsec: 0 });
/// ```
#[inline]
pub fn new() -> Duration {
Self::default()
}
/// Creates a duration of the given number of nanoseconds.
///
/// # Examples
///
/// ```
/// # use ros_message::Duration;
/// assert_eq!(Duration::from_nanos(0), Duration { sec: 0, nsec: 0 });
/// assert_eq!(Duration::from_nanos(12_000_000_123), Duration { sec: 12, nsec: 123 });
/// assert_eq!(Duration::from_nanos(-12_000_000_123), Duration { sec: -12, nsec: -123 });
/// ```
#[inline]
pub fn from_nanos(t: i64) -> Duration {
Duration {
sec: (t / BILLION) as i32,
nsec: (t % BILLION) as i32,
}
}
/// Creates a duration of the given number of seconds.
///
/// # Examples
///
/// ```
/// # use ros_message::Duration;
/// assert_eq!(Duration::from_seconds(0), Duration { sec: 0, nsec: 0 });
/// assert_eq!(Duration::from_seconds(12), Duration { sec: 12, nsec: 0 });
/// assert_eq!(Duration::from_seconds(-12), Duration { sec: -12, nsec: 0 });
/// ```
#[inline]
pub fn from_seconds(sec: i32) -> Duration {
Duration { sec, nsec: 0 }
}
/// Returns the number of nanoseconds in the duration.
///
/// # Examples
///
/// ```
/// # use ros_message::Duration;
/// assert_eq!(Duration { sec: 0, nsec: 0 }.nanos(), 0);
/// assert_eq!(Duration { sec: 12, nsec: 123 }.nanos(), 12_000_000_123);
/// assert_eq!(Duration { sec: -12, nsec: -123 }.nanos(), -12_000_000_123);
/// ```
#[inline]
pub fn nanos(self) -> i64 {
i64::from(self.sec) * BILLION + i64::from(self.nsec)
}
/// Returns the number of seconds in the duration.
///
/// # Examples
///
/// ```
/// # use ros_message::Duration;
/// assert_eq!(Duration { sec: 0, nsec: 0 }.seconds(), 0.0);
/// assert_eq!(Duration { sec: 12, nsec: 123 }.seconds(), 12.000_000_123);
/// assert_eq!(Duration { sec: -12, nsec: -123 }.seconds(), -12.000_000_123);
/// ```
#[inline]
pub fn seconds(self) -> f64 {
f64::from(self.sec) + f64::from(self.nsec) / BILLION as f64
}
}
impl cmp::PartialEq for Duration {
fn eq(&self, other: &Self) -> bool {
self.nanos() == other.nanos()
}
}
impl cmp::PartialOrd for Duration {
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
self.nanos().partial_cmp(&other.nanos())
}
}
impl cmp::Ord for Duration {
fn cmp(&self, other: &Self) -> cmp::Ordering {
self.nanos().cmp(&other.nanos())
}
}
impl ops::Add<Duration> for Time {
type Output = Time;
fn add(self, rhs: Duration) -> Self::Output {
Time::from_nanos(self.nanos() + rhs.nanos())
}
}
impl ops::Add<Duration> for Duration {
type Output = Duration;
fn add(self, rhs: Duration) -> Self::Output {
Duration::from_nanos(self.nanos() + rhs.nanos())
}
}
impl ops::Sub<Time> for Time {
type Output = Duration;
fn sub(self, rhs: Time) -> Self::Output {
Duration::from_nanos(self.nanos() - rhs.nanos())
}
}
impl ops::Sub<Duration> for Time {
type Output = Time;
fn sub(self, rhs: Duration) -> Self::Output {
Time::from_nanos(self.nanos() - rhs.nanos())
}
}
impl ops::Sub<Duration> for Duration {
type Output = Duration;
fn sub(self, rhs: Duration) -> Self::Output {
Duration::from_nanos(self.nanos() - rhs.nanos())
}
}
impl ops::Neg for Duration {
type Output = Duration;
fn neg(self) -> Self::Output {
Duration {
sec: -self.sec,
nsec: -self.nsec,
}
}
}
impl From<time::Duration> for Duration {
fn from(std_duration: time::Duration) -> Self {
let sec = std_duration.as_secs()
.try_into()
.expect("Durations longer than 68 years are not supported by the ROS time format");
Duration {
sec,
nsec: std_duration.subsec_nanos() as i32,
}
}
}
impl From<Duration> for time::Duration {
fn from(other: Duration) -> Self {
let mut extra_sec = other.nsec / 1_000_000_000;
let mut nsec = other.nsec % 1_000_000_000;
if nsec < 0 {
extra_sec -= 1;
nsec += 1_000_000_000;
}
Self::new(
(other.sec + extra_sec).try_into().unwrap(),
nsec as u32,
)
}
}