Function writeSliceForwardsAssumeCapacity [src]

Write bytes into the ring buffer. If there is not enough space, older bytes will be overwritten. Uses copyForwards and can write slices from this RingBuffer into itself.

Prototype

pub fn writeSliceForwardsAssumeCapacity(self: *RingBuffer, bytes: []const u8) void

Parameters

self: *RingBufferbytes: []const u8

Source

pub fn writeSliceForwardsAssumeCapacity(self: *RingBuffer, bytes: []const u8) void { assert(bytes.len <= self.data.len); const data_start = self.mask(self.write_index); const part1_data_end = @min(data_start + bytes.len, self.data.len); const part1_len = part1_data_end - data_start; copyForwards(u8, self.data[data_start..], bytes[0..part1_len]); const remaining = bytes.len - part1_len; const to_write = @min(remaining, remaining % self.data.len + self.data.len); const part2_bytes_start = bytes.len - to_write; const part2_bytes_end = @min(part2_bytes_start + self.data.len, bytes.len); copyForwards(u8, self.data[0..], bytes[part2_bytes_start..part2_bytes_end]); if (part2_bytes_end != bytes.len) copyForwards(u8, self.data[0..], bytes[part2_bytes_end..bytes.len]); self.write_index = self.mask2(self.write_index + bytes.len); }