aligned_buffer/shared.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 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
use crate::{
alloc::{BufferAllocator, Global},
raw::RawAlignedBuffer,
UniqueAlignedBuffer, DEFAULT_BUFFER_ALIGNMENT,
};
use std::{fmt, ops, slice::SliceIndex};
/// A shared buffer with an alignment. This buffer cannot be mutated.
/// Typically, a `SharedAlignedBuffer` is created from a [`UniqueAlignedBuffer`].
/// It can be cloned and shared across threads. It is effectively the same as an
/// Arc<\[u8]>.
pub struct SharedAlignedBuffer<const ALIGNMENT: usize = DEFAULT_BUFFER_ALIGNMENT, A = Global>
where
A: BufferAllocator<ALIGNMENT>,
{
pub(crate) buf: RawAlignedBuffer<ALIGNMENT, A>,
}
impl<const ALIGNMENT: usize, A> Default for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT> + Default,
{
#[inline]
#[must_use]
fn default() -> Self {
Self::new_in(A::default())
}
}
impl<const ALIGNMENT: usize> SharedAlignedBuffer<ALIGNMENT> {
/// Constructs a new, empty `SharedAlignedBuffer`.
///
/// The buffer will not allocate and cannot be mutated.
/// It's effectively the same as an empty slice.
///
/// # Examples
///
/// ```
/// # #![allow(unused_mut)]
/// # use aligned_buffer::SharedAlignedBuffer;
/// let buf = SharedAlignedBuffer::<32>::new();
/// ```
#[inline]
#[must_use]
pub const fn new() -> Self {
Self::new_in(Global)
}
}
impl<const ALIGNMENT: usize, A> SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT>,
{
/// Constructs a new, empty `SharedAlignedBuffer`.
///
/// The buffer will not allocate and cannot be mutated.
/// It's effectively the same as an empty slice.
///
/// # Examples
///
/// ```
/// # #![allow(unused_mut)]
/// # use aligned_buffer::{SharedAlignedBuffer, alloc::Global};
/// let buf = SharedAlignedBuffer::<32>::new_in(Global);
/// ```
#[inline]
#[must_use]
pub const fn new_in(alloc: A) -> Self {
let buf = RawAlignedBuffer::new_in(alloc);
Self { buf }
}
/// Extracts a slice containing the entire buffer.
///
/// Equivalent to `&s[..]`.
///
/// # Examples
///
/// ```
/// # use aligned_buffer::{UniqueAlignedBuffer, SharedAlignedBuffer};
/// use std::io::{self, Write};
/// let mut buf = UniqueAlignedBuffer::<16>::with_capacity(10);
/// buf.extend([1, 2, 3, 5, 8]);
/// let buf = SharedAlignedBuffer::from(buf);
/// io::sink().write(buf.as_slice()).unwrap();
/// ```
#[inline]
pub fn as_slice(&self) -> &[u8] {
self
}
/// Returns a raw pointer to the buffer's data, or a dangling raw pointer
/// valid for zero sized reads if the vector didn't allocate.
///
/// The caller must ensure that the buffer outlives the pointer this
/// function returns, or else it will end up pointing to garbage.
/// Modifying the buffer may cause its buffer to be reallocated,
/// which would also make any pointers to it invalid.
///
/// This method guarantees that for the purpose of the aliasing model, this method
/// does not materialize a reference to the underlying slice, and thus the returned pointer
/// will remain valid when mixed with other calls to [`as_ptr`].
///
///
/// # Examples
///
/// ```
/// # use aligned_buffer::{UniqueAlignedBuffer, SharedAlignedBuffer};
/// let mut buf = UniqueAlignedBuffer::<16>::with_capacity(10);
/// buf.extend([1, 2, 4]);
/// let buf = SharedAlignedBuffer::from(buf);
/// let buf_ptr = buf.as_ptr();
///
/// unsafe {
/// for i in 0..buf.len() {
/// assert_eq!(*buf_ptr.add(i), 1 << i);
/// }
/// }
/// ```
///
/// [`as_ptr`]: SharedAlignedBuffer::as_ptr
#[inline]
pub fn as_ptr(&self) -> *const u8 {
// We shadow the slice method of the same name to avoid going through
// `deref`, which creates an intermediate reference.
self.buf.ptr()
}
/// Returns the number of elements in the buffer, also referred to
/// as its 'length'.
///
/// # Examples
///
/// ```
/// # use aligned_buffer::{UniqueAlignedBuffer, SharedAlignedBuffer};
/// let mut buf = UniqueAlignedBuffer::<16>::with_capacity(10);
/// buf.extend([1, 2, 3]);
/// let buf = SharedAlignedBuffer::from(buf);
/// assert_eq!(buf.len(), 3);
/// ```
#[inline]
pub fn len(&self) -> usize {
// when the buffer is shared, cap_or_len is the length
self.buf.cap_or_len()
}
/// Returns `true` if the buffer contains no data.
///
/// # Examples
///
/// ```
/// # use aligned_buffer::{UniqueAlignedBuffer, SharedAlignedBuffer};
/// let mut buf = UniqueAlignedBuffer::<16>::with_capacity(10);
/// buf.push(1);
/// let buf = SharedAlignedBuffer::from(buf);
/// assert!(!buf.is_empty());
/// ```
pub fn is_empty(&self) -> bool {
self.len() == 0
}
/// Whether or not the buffer is unique (i.e. is the only reference to the buffer).
#[inline]
pub fn is_unique(&self) -> bool {
self.buf.is_unique()
}
/// Returns the number of references to this buffer.
#[inline]
pub fn ref_count(&self) -> usize {
self.buf.ref_count()
}
/// Returns a [`UniqueAlignedBuffer`] if the [`SharedAlignedBuffer`] has exactly one reference.
///
/// Otherwise, an [`Err`] is returned with the same [`SharedAlignedBuffer`] that was
/// passed in.
///
/// # Examples
///
/// ```
/// # use aligned_buffer::{UniqueAlignedBuffer, SharedAlignedBuffer};
///
/// let buf = UniqueAlignedBuffer::<16>::from_iter([1, 2, 3, 4]).into_shared();
/// assert!(SharedAlignedBuffer::try_unique(buf).is_ok());
///
/// let x = UniqueAlignedBuffer::<16>::from_iter([1, 2, 3, 4]).into_shared();
/// let _y = SharedAlignedBuffer::clone(&x);
/// assert!(SharedAlignedBuffer::try_unique(x).is_err());
/// ```
pub fn try_unique(mut this: Self) -> Result<UniqueAlignedBuffer<ALIGNMENT, A>, Self> {
if this.is_unique() {
let len = this.len();
this.buf.reset_cap();
Ok(UniqueAlignedBuffer { buf: this.buf, len })
} else {
Err(this)
}
}
}
impl<const ALIGNMENT: usize, A> Clone for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT> + Clone,
{
fn clone(&self) -> Self {
Self {
buf: self.buf.ref_clone(),
}
}
}
impl<const ALIGNMENT: usize, A> From<UniqueAlignedBuffer<ALIGNMENT, A>>
for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT>,
{
#[inline]
fn from(buf: UniqueAlignedBuffer<ALIGNMENT, A>) -> Self {
buf.into_shared()
}
}
impl<const ALIGNMENT: usize, A> ops::Deref for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT>,
{
type Target = [u8];
#[inline]
fn deref(&self) -> &Self::Target {
unsafe { std::slice::from_raw_parts(self.as_ptr(), self.len()) }
}
}
impl<I: SliceIndex<[u8]>, const ALIGNMENT: usize, A> ops::Index<I>
for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT>,
{
type Output = I::Output;
#[inline]
fn index(&self, index: I) -> &Self::Output {
ops::Index::index(&**self, index)
}
}
impl<const ALIGNMENT: usize, A> fmt::Debug for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT>,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(&**self, f)
}
}
impl<const ALIGNMENT: usize, A> AsRef<[u8]> for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT>,
{
#[inline]
fn as_ref(&self) -> &[u8] {
self
}
}
#[cfg(feature = "stable-deref-trait")]
unsafe impl<const ALIGNMENT: usize, A> stable_deref_trait::StableDeref
for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT>,
{
}
#[cfg(feature = "stable-deref-trait")]
unsafe impl<const ALIGNMENT: usize, A> stable_deref_trait::CloneStableDeref
for SharedAlignedBuffer<ALIGNMENT, A>
where
A: BufferAllocator<ALIGNMENT> + Clone,
{
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn clones_returns_same_pointer() {
let mut buf = UniqueAlignedBuffer::<16>::with_capacity(10);
buf.extend([1, 2, 3]);
let buf = SharedAlignedBuffer::from(buf);
let buf2 = buf.clone();
assert_eq!(buf.as_ptr(), buf2.as_ptr());
}
#[test]
fn try_unique_returns_err_when_not_unique() {
let x = UniqueAlignedBuffer::<16>::from_iter([1, 2, 3, 4]).into_shared();
let _y = SharedAlignedBuffer::clone(&x);
assert!(SharedAlignedBuffer::try_unique(x).is_err());
}
#[test]
fn sharing_does_not_shrink_the_buffer() {
let buf = UniqueAlignedBuffer::<64>::with_capacity(10);
let cap = buf.capacity();
let buf = buf.into_shared();
assert_eq!(&*buf, &[]);
let buf = UniqueAlignedBuffer::try_from(buf).unwrap();
assert_eq!(&*buf, &[]);
assert_eq!(buf.capacity(), cap);
}
// Check that the `SharedAlignedBuffer` is `Send` and `Sync`.
const _: () = {
const fn assert_send_sync<T: Send + Sync>() {}
assert_send_sync::<SharedAlignedBuffer<16>>();
};
}