rustdds 0.7.11

Native Rust DDS implementation with RTPS
Documentation
use std::thread;

use mio_extras::channel::{SyncSender, TrySendError};

use crate::structure::duration::Duration;

const TIMEOUT_EPSILON: Duration = Duration::from_nanos(1000);

// Always give background thread 1 ms to react
const TIMEOUT_FALLBACK: Duration = Duration::from_nanos(1_000_000);

pub fn try_send_timeout<T>(
  sender: &SyncSender<T>,
  t: T,
  timeout_opt: Option<Duration>,
) -> Result<(), TrySendError<T>> {
  // TODO: Write a more optimized fast path, where send succeeds on first try.

  let timeout = timeout_opt.unwrap_or(TIMEOUT_FALLBACK);
  let mut delays = Vec::with_capacity(20);
  if timeout <= TIMEOUT_EPSILON {
    delays.push(TIMEOUT_EPSILON);
  } else {
    let mut to = timeout;
    while to > TIMEOUT_EPSILON {
      to = to / 2;
      delays.push(to);
    }
  }
  let mut mt = t;
  while let Some(delay) = delays.pop() {
    match sender.try_send(mt) {
      Ok(()) => return Ok(()),
      Err(TrySendError::Full(tt)) => {
        thread::sleep(std::time::Duration::from(delay)); // and try again
        mt = tt;
      }
      Err(other) => return Err(other),
    }
  }
  Err(TrySendError::Full(mt))
}