nimble_blob_stream/out_stream.rs
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
/*
* Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/nimble-rust/nimble
* Licensed under the MIT License. See LICENSE in the project root for license information.
*/
use monotonic_time_rs::Millis;
use std::cmp::min;
use std::num::TryFromIntError;
use std::time::Duration;
#[derive(Debug)]
#[allow(clippy::module_name_repetitions)]
pub enum OutStreamError {
ChunkPreviouslyReceivedMarkedAsNotReceived,
IndexOutOfBounds,
BlobIsTooLarge(TryFromIntError),
UnexpectedStartTransfer,
FixedChunkSizeIsTooLarge,
}
/// Represents an individual chunk of the blob data being streamed out.
/// Each `BlobStreamOutEntry` holds metadata about a chunk, including:
/// - `timer`: The time when the chunk was last sent, or `None` if it has not been sent.
/// - `index`: The index of the chunk.
/// - `start` and `end`: Byte ranges representing the chunk's position within the full blob.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct BlobStreamOutEntry {
pub last_sent_at: Option<Millis>,
pub index: u32,
pub is_received_by_remote: bool,
}
impl BlobStreamOutEntry {
/// Creates a new `BlobStreamOutEntry`.
///
/// # Arguments
///
/// * `index` - The index of the chunk.
///
/// # Returns
///
/// A new `BlobStreamOutEntry` with a `None` timer.
#[must_use]
pub const fn new(index: u32) -> Self {
Self {
last_sent_at: None,
index,
is_received_by_remote: false,
}
}
/// Updates the timer to the specified `Instant`, marking the time this entry was last sent.
///
/// # Arguments
///
/// * `time` - The `Instant` at which the entry is being sent.
pub fn sent_at_time(&mut self, time: Millis) {
self.last_sent_at = Some(time);
}
}
/// Manages the streaming out of binary blob data
///
/// It splits into fixed-size chunks.
/// `BlobStreamOut` keeps track of which chunks have been sent, the time they were sent,
/// and controls resending based on elapsed time since the last send.
#[allow(unused)]
#[derive(Debug)]
pub struct BlobStreamOut {
pub(crate) entries: Vec<BlobStreamOutEntry>,
start_index_to_send: usize,
index_to_start_from_if_not_filled_up: usize,
resend_duration: Duration,
chunk_count_received_by_remote: usize,
}
impl BlobStreamOut {
/// Creates a new `BlobStreamOut` instance.
///
/// # Arguments
///
/// * `chunk_count` - The total number of chunks.
/// * `resend_duration` - The minimum time that must elapse before resending a chunk.
/// * `blob` - The complete binary data to be streamed out.
///
/// # Returns
///
/// A new `BlobStreamOut` initialized with the provided chunk size, resend duration, and blob data.
///
/// # Panics
///
/// This function will panic if `fixed_chunk_size` is zero.
#[must_use]
pub fn new(chunk_count: u32, resend_duration: Duration) -> Self {
assert_ne!(chunk_count, 0, "chunk_count cannot be zero");
// Initialize the entries vector by chunking the blob data
let entries: Vec<BlobStreamOutEntry> =
(0u32..chunk_count).map(BlobStreamOutEntry::new).collect();
Self {
entries,
resend_duration,
index_to_start_from_if_not_filled_up: 0,
start_index_to_send: 0,
chunk_count_received_by_remote: 0,
}
}
#[must_use]
#[allow(clippy::cast_possible_truncation)]
pub fn chunk_count(&self) -> u32 {
self.entries.len() as u32
}
/// Sets the starting index from which to send the next chunk.
///
/// # Arguments
///
/// * `index` - The starting index of the next chunk to be sent.
///
/// # Errors
/// Can return error `OutStreamError` // TODO:
#[allow(clippy::missing_panics_doc)]
pub fn set_waiting_for_chunk_index(
&mut self,
index: usize,
receive_mask: u64,
) -> Result<(), OutStreamError> {
self.start_index_to_send = index;
if index > self.start_index_to_send {
return Err(OutStreamError::IndexOutOfBounds);
}
let start = index + 1;
let end = min(self.entries.len(), start + 64);
for previously_received_entry in &mut self.entries[0..index] {
if !previously_received_entry.is_received_by_remote {
previously_received_entry.is_received_by_remote = true;
self.chunk_count_received_by_remote += 1;
}
}
if index < self.entries.len() {
let waiting_for_entry = self
.entries
.get_mut(index)
.expect("entry index should been validated earlier");
// it is not allowed to go from being received by remote to suddenly not be received anymore.
if waiting_for_entry.is_received_by_remote {
return Err(OutStreamError::ChunkPreviouslyReceivedMarkedAsNotReceived);
}
waiting_for_entry.last_sent_at = None;
}
let mut mask = receive_mask;
for i in index + 1..end {
#[allow(clippy::missing_panics_doc)]
let entry = self
.entries
.get_mut(i)
.expect("entry index should been validated earlier");
if mask & 0b1 != 0 {
if !entry.is_received_by_remote {
entry.is_received_by_remote = true;
self.chunk_count_received_by_remote += 1;
}
} else {
// it is not allowed to go from being received by remote to suddenly not be received anymore.
if entry.is_received_by_remote {
return Err(OutStreamError::ChunkPreviouslyReceivedMarkedAsNotReceived);
}
entry.last_sent_at = None;
}
mask >>= 1;
}
Ok(())
}
/// Sends up to `max_count` chunks, starting from the configured `start_index_to_send`.
/// Resends chunks if enough time has passed since their last send, or fills in additional
/// chunks if the number of filtered chunks is less than `max_count`.
///
/// # Arguments
///
/// * `now` - The current time used for calculating elapsed time.
/// * `max_count` - The maximum number of chunks to send in this batch.
///
/// # Returns
///
/// A vector containing up to `max_count` `BlobStreamOutEntry` items, representing the chunks to be sent.
#[must_use]
#[allow(clippy::missing_panics_doc)]
pub fn send(&mut self, now: Millis, max_count: usize) -> Vec<u32> {
// Filter by index range, timer expiration, and limit the number of results
let mut filtered_out_indices: Vec<u32> = self
.entries
.iter()
.skip(self.start_index_to_send)
.take(max_count) // Limit to MAX_COUNT entries
.filter(|entry| {
// Check if enough time has passed since the timer was set
!entry.is_received_by_remote
&& entry
.last_sent_at
.map_or(true, |t| now.duration_since(t) >= self.resend_duration)
})
.map(|entry| entry.index)
.collect(); // Collect into a Vec
if filtered_out_indices.len() < max_count {
let lower_index = self.start_index_to_send + max_count;
let expected_remaining = max_count - filtered_out_indices.len();
if self.index_to_start_from_if_not_filled_up + expected_remaining > self.entries.len() {
self.index_to_start_from_if_not_filled_up = lower_index;
}
if self.index_to_start_from_if_not_filled_up < lower_index {
self.index_to_start_from_if_not_filled_up = lower_index;
}
// Get additional entries starting from `index_to_start_from_if_not_filled_up`
let additional_indicies: Vec<u32> = self
.entries
.iter()
.skip(self.index_to_start_from_if_not_filled_up) // Start from the alternate index
.filter(|entry| {
// Ensure that we are not duplicating any already selected entries
!entry.is_received_by_remote
&& !filtered_out_indices.iter().any(|e| *e == entry.index)
})
.map(|entry| entry.index)
.take(expected_remaining) // Take only the number of remaining entries
.collect();
self.index_to_start_from_if_not_filled_up += additional_indicies.len();
// Append additional entries to fill up to `max_count`
filtered_out_indices.extend(additional_indicies);
}
for entry_index in &filtered_out_indices {
#[allow(clippy::missing_panics_doc)]
let ent = self
.entries
.get_mut(*entry_index as usize)
.expect("should always be there");
ent.sent_at_time(now);
}
filtered_out_indices
}
#[must_use]
pub fn is_received_by_remote(&self) -> bool {
self.chunk_count_received_by_remote == self.entries.len()
}
}