Skip to main content

arrow_buffer/buffer/
immutable.rs

1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements.  See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership.  The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License.  You may obtain a copy of the License at
8//
9//   http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied.  See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18use std::alloc::Layout;
19use std::fmt::Debug;
20use std::ptr::NonNull;
21use std::sync::Arc;
22
23use crate::BufferBuilder;
24use crate::alloc::{Allocation, Deallocation};
25use crate::util::bit_chunk_iterator::{BitChunks, UnalignedBitChunk};
26use crate::{bit_util, bytes::Bytes, native::ArrowNativeType};
27
28#[cfg(feature = "pool")]
29use crate::pool::MemoryPool;
30
31use super::{MutableBuffer, ScalarBuffer};
32
33/// A contiguous memory region that can be shared with other buffers and across
34/// thread boundaries that stores Arrow data.
35///
36/// `Buffer`s can be sliced and cloned without copying the underlying data and can
37/// be created from memory allocated by non-Rust sources such as C/C++.
38///
39/// # Example: Create a `Buffer` from a `Vec` (without copying)
40/// ```
41/// # use arrow_buffer::Buffer;
42/// let vec: Vec<u32> = vec![1, 2, 3];
43/// let buffer = Buffer::from(vec);
44/// ```
45///
46/// # Example: Convert a `Buffer` to a `Vec` (without copying)
47///
48/// Use [`Self::into_vec`] to convert a `Buffer` back into a `Vec` if there are
49/// no other references and the types are aligned correctly.
50/// ```
51/// # use arrow_buffer::Buffer;
52/// # let vec: Vec<u32> = vec![1, 2, 3];
53/// # let buffer = Buffer::from(vec);
54/// // convert the buffer back into a Vec of u32
55/// // note this will fail if the buffer is shared or not aligned correctly
56/// let vec: Vec<u32> = buffer.into_vec().unwrap();
57/// ```
58///
59/// # Example: Create a `Buffer` from a [`bytes::Bytes`] (without copying)
60///
61/// [`bytes::Bytes`] is a common type in the Rust ecosystem for shared memory
62/// regions. You can create a buffer from a `Bytes` instance using the `From`
63/// implementation, also without copying.
64///
65/// ```
66/// # use arrow_buffer::Buffer;
67/// let bytes = bytes::Bytes::from("hello");
68/// let buffer = Buffer::from(bytes);
69///```
70///
71/// # Example: Create a [`bytes::Bytes`] from a `Buffer` (without copying)
72///
73/// [`bytes::Bytes::from_owner`] can also wrap a `Buffer` again without copying.
74/// This made generically available via a `From` implementation.
75///
76/// ```
77/// # use arrow_buffer::Buffer;
78/// # let bytes = bytes::Bytes::from("hello");
79/// # let buffer = Buffer::from(bytes);
80/// let bytes = bytes::Bytes::from(buffer);
81///```
82#[derive(Clone, Debug)]
83pub struct Buffer {
84    /// the internal byte buffer.
85    data: Arc<Bytes>,
86
87    /// Pointer into `data` valid
88    ///
89    /// We store a pointer instead of an offset to avoid pointer arithmetic
90    /// which causes LLVM to fail to vectorise code correctly
91    ptr: *const u8,
92
93    /// Byte length of the buffer.
94    ///
95    /// Must be less than or equal to `data.len()`
96    length: usize,
97}
98
99impl Default for Buffer {
100    #[inline]
101    fn default() -> Self {
102        MutableBuffer::default().into()
103    }
104}
105
106impl PartialEq for Buffer {
107    fn eq(&self, other: &Self) -> bool {
108        self.as_slice().eq(other.as_slice())
109    }
110}
111
112impl Eq for Buffer {}
113
114unsafe impl Send for Buffer where Bytes: Send {}
115unsafe impl Sync for Buffer where Bytes: Sync {}
116
117impl Buffer {
118    /// Returns the offset, in bytes, of `Self::ptr` to `Self::data`
119    ///
120    /// self.ptr and self.data can be different after slicing or advancing the buffer.
121    pub fn ptr_offset(&self) -> usize {
122        // Safety: `ptr` is always in bounds of `data`.
123        unsafe { self.ptr.offset_from(self.data.ptr().as_ptr()) as usize }
124    }
125
126    /// Returns the pointer to the start of the buffer without the offset.
127    pub fn data_ptr(&self) -> NonNull<u8> {
128        self.data.ptr()
129    }
130
131    /// Returns the number of strong references to the buffer.
132    ///
133    /// This method is safe but if the buffer is shared across multiple threads
134    /// the underlying value could change between calling this method and using
135    /// the result.
136    pub fn strong_count(&self) -> usize {
137        Arc::strong_count(&self.data)
138    }
139
140    /// Create a [`Buffer`] from the provided [`Vec`] without copying
141    #[inline]
142    pub fn from_vec<T: ArrowNativeType>(vec: Vec<T>) -> Self {
143        MutableBuffer::from(vec).into()
144    }
145
146    /// Initializes a [Buffer] from a slice of items.
147    pub fn from_slice_ref<U: ArrowNativeType, T: AsRef<[U]>>(items: T) -> Self {
148        let slice = items.as_ref();
149        let capacity = std::mem::size_of_val(slice);
150        let mut buffer = MutableBuffer::with_capacity(capacity);
151        buffer.extend_from_slice(slice);
152        buffer.into()
153    }
154
155    /// Creates a buffer from an existing memory region.
156    ///
157    /// Ownership of the memory is tracked via reference counting
158    /// and the memory will be freed using the `drop` method of
159    /// [crate::alloc::Allocation] when the reference count reaches zero.
160    ///
161    /// # Arguments
162    ///
163    /// * `ptr` - Pointer to raw parts
164    /// * `len` - Length of raw parts in **bytes**
165    /// * `owner` - A [crate::alloc::Allocation] which is responsible for freeing that data
166    ///
167    /// # Safety
168    ///
169    /// This function is unsafe as there is no guarantee that the given pointer is valid for `len` bytes
170    pub unsafe fn from_custom_allocation(
171        ptr: NonNull<u8>,
172        len: usize,
173        owner: Arc<dyn Allocation>,
174    ) -> Self {
175        unsafe { Buffer::build_with_arguments(ptr, len, Deallocation::Custom(owner, len)) }
176    }
177
178    /// Auxiliary method to create a new Buffer
179    unsafe fn build_with_arguments(
180        ptr: NonNull<u8>,
181        len: usize,
182        deallocation: Deallocation,
183    ) -> Self {
184        let bytes = unsafe { Bytes::new(ptr, len, deallocation) };
185        let ptr = bytes.as_ptr();
186        Buffer {
187            ptr,
188            data: Arc::new(bytes),
189            length: len,
190        }
191    }
192
193    /// Returns the number of bytes in the buffer
194    #[inline]
195    pub fn len(&self) -> usize {
196        self.length
197    }
198
199    /// Returns the capacity of this buffer.
200    /// For externally owned buffers, this returns zero
201    #[inline]
202    pub fn capacity(&self) -> usize {
203        self.data.capacity()
204    }
205
206    /// Tries to shrink the capacity of the buffer as much as possible, freeing unused memory.
207    ///
208    /// If the buffer is shared, this is a no-op.
209    ///
210    /// If the memory was allocated with a custom allocator, this is a no-op.
211    ///
212    /// If the capacity is already less than or equal to the desired capacity, this is a no-op.
213    ///
214    /// The memory region will be reallocated using `std::alloc::realloc`.
215    pub fn shrink_to_fit(&mut self) {
216        let offset = self.ptr_offset();
217        let is_empty = self.is_empty();
218        let desired_capacity = if is_empty {
219            0
220        } else {
221            // For realloc to work, we cannot free the elements before the offset
222            offset + self.len()
223        };
224        if desired_capacity < self.capacity()
225            && let Some(bytes) = Arc::get_mut(&mut self.data)
226        {
227            if bytes.try_realloc(desired_capacity).is_ok() {
228                // Realloc complete - update our pointer into `bytes`:
229                self.ptr = if is_empty {
230                    bytes.as_ptr()
231                } else {
232                    // SAFETY: we kept all elements leading up to the offset
233                    unsafe { bytes.as_ptr().add(offset) }
234                }
235            } else {
236                // Failure to reallocate is fine; we just failed to free up memory.
237            }
238        }
239    }
240
241    /// Returns true if the buffer is empty.
242    #[inline]
243    pub fn is_empty(&self) -> bool {
244        self.length == 0
245    }
246
247    /// Returns the byte slice stored in this buffer
248    pub fn as_slice(&self) -> &[u8] {
249        unsafe { std::slice::from_raw_parts(self.ptr, self.length) }
250    }
251
252    pub(crate) fn deallocation(&self) -> &Deallocation {
253        self.data.deallocation()
254    }
255
256    /// Returns a new [Buffer] that is a slice of this buffer starting at `offset`.
257    ///
258    /// This function is `O(1)` and does not copy any data, allowing the
259    /// same memory region to be shared between buffers.
260    ///
261    /// # Panics
262    ///
263    /// Panics iff `offset` is larger than `len`.
264    pub fn slice(&self, offset: usize) -> Self {
265        let mut s = self.clone();
266        s.advance(offset);
267        s
268    }
269
270    /// Increases the offset of this buffer by `offset`
271    ///
272    /// # Panics
273    ///
274    /// Panics iff `offset` is larger than `len`.
275    #[inline]
276    pub fn advance(&mut self, offset: usize) {
277        assert!(
278            offset <= self.length,
279            "the offset of the new Buffer cannot exceed the existing length: offset={} length={}",
280            offset,
281            self.length
282        );
283        self.length -= offset;
284        // Safety:
285        // This cannot overflow as
286        // `self.offset + self.length < self.data.len()`
287        // `offset < self.length`
288        self.ptr = unsafe { self.ptr.add(offset) };
289    }
290
291    /// Returns a new [Buffer] that is a slice of this buffer starting at `offset`,
292    /// with `length` bytes.
293    ///
294    /// This function is `O(1)` and does not copy any data, allowing the same
295    /// memory region to be shared between buffers.
296    ///
297    /// # Panics
298    /// Panics iff `(offset + length)` is larger than the existing length.
299    pub fn slice_with_length(&self, offset: usize, length: usize) -> Self {
300        assert!(
301            offset.saturating_add(length) <= self.length,
302            "the offset of the new Buffer cannot exceed the existing length: slice offset={offset} length={length} selflen={}",
303            self.length
304        );
305        // Safety:
306        // offset + length <= self.length
307        let ptr = unsafe { self.ptr.add(offset) };
308        Self {
309            data: self.data.clone(),
310            ptr,
311            length,
312        }
313    }
314
315    /// Returns a pointer to the start of this buffer.
316    ///
317    /// Note that this should be used cautiously, and the returned pointer should not be
318    /// stored anywhere, to avoid dangling pointers.
319    #[inline]
320    pub fn as_ptr(&self) -> *const u8 {
321        self.ptr
322    }
323
324    /// View buffer as a slice of a specific type.
325    ///
326    /// # Panics
327    ///
328    /// This function panics if the underlying buffer is not aligned
329    /// correctly for type `T`.
330    pub fn typed_data<T: ArrowNativeType>(&self) -> &[T] {
331        // SAFETY
332        // ArrowNativeType is trivially transmutable, is sealed to prevent potentially incorrect
333        // implementation outside this crate, and this method checks alignment
334        let (prefix, offsets, suffix) = unsafe { self.as_slice().align_to::<T>() };
335        assert!(prefix.is_empty() && suffix.is_empty());
336        offsets
337    }
338
339    /// Returns a slice of this buffer starting at a certain bit offset.
340    /// If the offset is byte-aligned the returned buffer is a shallow clone,
341    /// otherwise a new buffer is allocated and filled with a copy of the bits in the range.
342    pub fn bit_slice(&self, offset: usize, len: usize) -> Self {
343        if offset.is_multiple_of(8) {
344            return self.slice_with_length(offset / 8, bit_util::ceil(len, 8));
345        }
346
347        let chunks = self.bit_chunks(offset, len);
348
349        let buffer: Vec<u64> = if chunks.remainder_len() > 0 {
350            chunks.iter().chain(Some(chunks.remainder_bits())).collect()
351        } else {
352            chunks.iter().collect()
353        };
354        let mut buffer = Buffer::from_vec(buffer);
355        // Update length to be byte-aligned
356        buffer.length = bit_util::ceil(len, 8);
357        buffer
358    }
359
360    /// Returns a `BitChunks` instance which can be used to iterate over this buffers bits
361    /// in larger chunks and starting at arbitrary bit offsets.
362    /// Note that both `offset` and `length` are measured in bits.
363    pub fn bit_chunks(&self, offset: usize, len: usize) -> BitChunks<'_> {
364        BitChunks::new(self.as_slice(), offset, len)
365    }
366
367    /// Returns the number of 1-bits in this buffer, starting from `offset` with `length` bits
368    /// inspected. Note that both `offset` and `length` are measured in bits.
369    pub fn count_set_bits_offset(&self, offset: usize, len: usize) -> usize {
370        UnalignedBitChunk::new(self.as_slice(), offset, len).count_ones()
371    }
372
373    /// Returns `MutableBuffer` for mutating the buffer if this buffer is not shared or sliced.
374    /// Returns `Err` if this is shared or the [`Self::ptr_offset`] is greater than 0 or its allocation is from an external source or
375    /// it is not allocated with alignment [`ALIGNMENT`]
376    ///
377    /// # Example: Creating a [`MutableBuffer`] from a [`Buffer`]
378    /// ```
379    /// # use arrow_buffer::buffer::{Buffer, MutableBuffer};
380    /// let buffer: Buffer = Buffer::from(&[1u8, 2, 3, 4][..]);
381    /// // Only possible to convert a Buffer into a MutableBuffer if uniquely owned
382    /// // (i.e., there are no other references to it).
383    /// let mut mutable_buffer = match buffer.into_mutable() {
384    ///    Ok(mutable) => mutable,
385    ///    Err(orig_buffer) => {
386    ///      panic!("buffer was not uniquely owned");
387    ///    }
388    /// };
389    /// mutable_buffer.push(5u8);
390    /// let buffer = Buffer::from(mutable_buffer);
391    /// assert_eq!(buffer.as_slice(), &[1u8, 2, 3, 4, 5])
392    /// ```
393    ///
394    /// [`ALIGNMENT`]: crate::alloc::ALIGNMENT
395    pub fn into_mutable(self) -> Result<MutableBuffer, Self> {
396        let ptr = self.ptr;
397        let length = self.length;
398
399        // Disallow converting when the offset is not 0 because we can't start a mutable from offset
400        let res = if self.ptr_offset() > 0 {
401            Err(self.data)
402        } else {
403            Arc::try_unwrap(self.data)
404        };
405
406        res.and_then(|bytes| {
407            // The pointer of underlying buffer should not be offset.
408            assert_eq!(ptr, bytes.ptr().as_ptr());
409            MutableBuffer::from_bytes(bytes).map_err(Arc::new)
410        })
411        .map_err(|bytes| Buffer {
412            data: bytes,
413            ptr,
414            length,
415        })
416        .map(|mut mutable| {
417            // We need to update the length since in case we are converting sliced buffer we need to return MutableBuffer with the same length
418            // SAFETY: this is safe as the length is coming from valid Buffer (this) and it is guaranteed to be less than the underlying data buffer
419            unsafe { mutable.set_len(length) };
420            mutable
421        })
422    }
423
424    /// Converts self into a `Vec`, if possible.
425    ///
426    /// This can be used to reuse / mutate the underlying data.
427    ///
428    /// # Errors
429    ///
430    /// Returns `Err(self)` if
431    /// 1. The buffer does not have the same [`Layout`] as the destination Vec
432    /// 2. The buffer contains a non-zero offset
433    /// 3. The buffer is shared
434    pub fn into_vec<T: ArrowNativeType>(self) -> Result<Vec<T>, Self> {
435        let layout = match self.data.deallocation() {
436            Deallocation::Standard(l) => l,
437            _ => return Err(self), // Custom allocation
438        };
439
440        if self.ptr != self.data.as_ptr() {
441            return Err(self); // Data is offset
442        }
443
444        let v_capacity = layout.size() / std::mem::size_of::<T>();
445        match Layout::array::<T>(v_capacity) {
446            Ok(expected) if layout == &expected => {}
447            _ => return Err(self), // Incorrect layout
448        }
449
450        let length = self.length;
451        let ptr = self.ptr;
452        let v_len = self.length / std::mem::size_of::<T>();
453
454        Arc::try_unwrap(self.data)
455            .map(|bytes| unsafe {
456                let ptr = bytes.ptr().as_ptr() as _;
457                std::mem::forget(bytes);
458                // Safety
459                // Verified that bytes layout matches that of Vec
460                Vec::from_raw_parts(ptr, v_len, v_capacity)
461            })
462            .map_err(|bytes| Buffer {
463                data: bytes,
464                ptr,
465                length,
466            })
467    }
468
469    /// Returns true if this [`Buffer`] is equal to `other`, using pointer comparisons
470    /// to determine buffer equality. This is cheaper than `PartialEq::eq` but may
471    /// return false when the arrays are logically equal
472    #[inline]
473    pub fn ptr_eq(&self, other: &Self) -> bool {
474        self.ptr == other.ptr && self.length == other.length
475    }
476
477    /// Register this [`Buffer`] with the provided [`MemoryPool`]
478    ///
479    /// This claims the memory used by this buffer in the pool, allowing for
480    /// accurate accounting of memory usage. Any prior reservation will be
481    /// released so this works well when the buffer is being shared among
482    /// multiple arrays.
483    #[cfg(feature = "pool")]
484    pub fn claim(&self, pool: &dyn MemoryPool) {
485        self.data.claim(pool)
486    }
487}
488
489/// Note that here we deliberately do not implement
490/// `impl<T: AsRef<[u8]>> From<T> for Buffer`
491/// As it would accept `Buffer::from(vec![...])` that would cause an unexpected copy.
492/// Instead, we ask user to be explicit when copying is occurring, e.g., `Buffer::from(vec![...].to_byte_slice())`.
493/// For zero-copy conversion, user should use `Buffer::from_vec(vec![...])`.
494///
495/// Since we removed impl for `AsRef<u8>`, we added the following three specific implementations to reduce API breakage.
496/// See <https://github.com/apache/arrow-rs/issues/6033> for more discussion on this.
497impl From<&[u8]> for Buffer {
498    fn from(p: &[u8]) -> Self {
499        Self::from_slice_ref(p)
500    }
501}
502
503impl<const N: usize> From<[u8; N]> for Buffer {
504    fn from(p: [u8; N]) -> Self {
505        Self::from_slice_ref(p)
506    }
507}
508
509impl<const N: usize> From<&[u8; N]> for Buffer {
510    fn from(p: &[u8; N]) -> Self {
511        Self::from_slice_ref(p)
512    }
513}
514
515impl<T: ArrowNativeType> From<Vec<T>> for Buffer {
516    fn from(value: Vec<T>) -> Self {
517        Self::from_vec(value)
518    }
519}
520
521impl<T: ArrowNativeType> From<ScalarBuffer<T>> for Buffer {
522    fn from(value: ScalarBuffer<T>) -> Self {
523        value.into_inner()
524    }
525}
526
527/// Convert from internal `Bytes` (not [`bytes::Bytes`]) to `Buffer`
528impl From<Bytes> for Buffer {
529    #[inline]
530    fn from(bytes: Bytes) -> Self {
531        let length = bytes.len();
532        let ptr = bytes.as_ptr();
533        Self {
534            data: Arc::new(bytes),
535            ptr,
536            length,
537        }
538    }
539}
540
541/// Convert from [`bytes::Bytes`], not internal `Bytes` to `Buffer`
542impl From<bytes::Bytes> for Buffer {
543    fn from(bytes: bytes::Bytes) -> Self {
544        let bytes: Bytes = bytes.into();
545        Self::from(bytes)
546    }
547}
548
549/// Convert a `Buffer` into a [`bytes::Bytes`]
550impl From<Buffer> for bytes::Bytes {
551    fn from(buffer: Buffer) -> Self {
552        Self::from_owner(buffer)
553    }
554}
555
556/// Create a `Buffer` instance by storing the boolean values into the buffer
557impl FromIterator<bool> for Buffer {
558    fn from_iter<I>(iter: I) -> Self
559    where
560        I: IntoIterator<Item = bool>,
561    {
562        MutableBuffer::from_iter(iter).into()
563    }
564}
565
566impl std::ops::Deref for Buffer {
567    type Target = [u8];
568
569    fn deref(&self) -> &[u8] {
570        unsafe { std::slice::from_raw_parts(self.as_ptr(), self.len()) }
571    }
572}
573
574impl AsRef<[u8]> for Buffer {
575    fn as_ref(&self) -> &[u8] {
576        self.as_slice()
577    }
578}
579
580impl From<MutableBuffer> for Buffer {
581    #[inline]
582    fn from(buffer: MutableBuffer) -> Self {
583        buffer.into_buffer()
584    }
585}
586
587impl<T: ArrowNativeType> From<BufferBuilder<T>> for Buffer {
588    fn from(mut value: BufferBuilder<T>) -> Self {
589        value.finish()
590    }
591}
592
593impl Buffer {
594    /// Creates a [`Buffer`] from an [`Iterator`] with a trusted (upper) length.
595    ///
596    /// Prefer this to `collect` whenever possible, as it is ~60% faster.
597    ///
598    /// # Example
599    /// ```
600    /// # use arrow_buffer::buffer::Buffer;
601    /// let v = vec![1u32];
602    /// let iter = v.iter().map(|x| x * 2);
603    /// let buffer = unsafe { Buffer::from_trusted_len_iter(iter) };
604    /// assert_eq!(buffer.len(), 4) // u32 has 4 bytes
605    /// ```
606    /// # Safety
607    /// This method assumes that the iterator's size is correct and is undefined behavior
608    /// to use it on an iterator that reports an incorrect length.
609    // This implementation is required for two reasons:
610    // 1. there is no trait `TrustedLen` in stable rust and therefore
611    //    we can't specialize `extend` for `TrustedLen` like `Vec` does.
612    // 2. `from_trusted_len_iter` is faster.
613    #[inline]
614    pub unsafe fn from_trusted_len_iter<T: ArrowNativeType, I: Iterator<Item = T>>(
615        iterator: I,
616    ) -> Self {
617        unsafe { MutableBuffer::from_trusted_len_iter(iterator).into() }
618    }
619
620    /// Creates a [`Buffer`] from an [`Iterator`] with a trusted (upper) length or errors
621    /// if any of the items of the iterator is an error.
622    /// Prefer this to `collect` whenever possible, as it is ~60% faster.
623    /// # Safety
624    /// This method assumes that the iterator's size is correct and is undefined behavior
625    /// to use it on an iterator that reports an incorrect length.
626    #[inline]
627    pub unsafe fn try_from_trusted_len_iter<
628        E,
629        T: ArrowNativeType,
630        I: Iterator<Item = Result<T, E>>,
631    >(
632        iterator: I,
633    ) -> Result<Self, E> {
634        unsafe { Ok(MutableBuffer::try_from_trusted_len_iter(iterator)?.into()) }
635    }
636}
637
638impl<T: ArrowNativeType> FromIterator<T> for Buffer {
639    fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
640        let vec = Vec::from_iter(iter);
641        Buffer::from_vec(vec)
642    }
643}
644
645#[cfg(test)]
646mod tests {
647    use crate::i256;
648    use std::panic::{RefUnwindSafe, UnwindSafe};
649    use std::thread;
650
651    use super::*;
652
653    #[test]
654    fn test_buffer_data_equality() {
655        let buf1 = Buffer::from(&[0, 1, 2, 3, 4]);
656        let buf2 = Buffer::from(&[0, 1, 2, 3, 4]);
657        assert_eq!(buf1, buf2);
658
659        // slice with same offset and same length should still preserve equality
660        let buf3 = buf1.slice(2);
661        assert_ne!(buf1, buf3);
662        let buf4 = buf2.slice_with_length(2, 3);
663        assert_eq!(buf3, buf4);
664
665        // Different capacities should still preserve equality
666        let mut buf2 = MutableBuffer::new(65);
667        buf2.extend_from_slice(&[0u8, 1, 2, 3, 4]);
668
669        let buf2 = buf2.into();
670        assert_eq!(buf1, buf2);
671
672        // unequal because of different elements
673        let buf2 = Buffer::from(&[0, 0, 2, 3, 4]);
674        assert_ne!(buf1, buf2);
675
676        // unequal because of different length
677        let buf2 = Buffer::from(&[0, 1, 2, 3]);
678        assert_ne!(buf1, buf2);
679    }
680
681    #[test]
682    fn test_from_raw_parts() {
683        let buf = Buffer::from(&[0, 1, 2, 3, 4]);
684        assert_eq!(5, buf.len());
685        assert!(!buf.as_ptr().is_null());
686        assert_eq!([0, 1, 2, 3, 4], buf.as_slice());
687    }
688
689    #[test]
690    fn test_from_vec() {
691        let buf = Buffer::from(&[0, 1, 2, 3, 4]);
692        assert_eq!(5, buf.len());
693        assert!(!buf.as_ptr().is_null());
694        assert_eq!([0, 1, 2, 3, 4], buf.as_slice());
695    }
696
697    #[test]
698    fn test_copy() {
699        let buf = Buffer::from(&[0, 1, 2, 3, 4]);
700        let buf2 = buf;
701        assert_eq!(5, buf2.len());
702        assert_eq!(64, buf2.capacity());
703        assert!(!buf2.as_ptr().is_null());
704        assert_eq!([0, 1, 2, 3, 4], buf2.as_slice());
705    }
706
707    #[test]
708    fn test_slice() {
709        let buf = Buffer::from(&[2, 4, 6, 8, 10]);
710        let buf2 = buf.slice(2);
711
712        assert_eq!([6, 8, 10], buf2.as_slice());
713        assert_eq!(3, buf2.len());
714        assert_eq!(unsafe { buf.as_ptr().add(2) }, buf2.as_ptr());
715
716        let buf3 = buf2.slice_with_length(1, 2);
717        assert_eq!([8, 10], buf3.as_slice());
718        assert_eq!(2, buf3.len());
719        assert_eq!(unsafe { buf.as_ptr().add(3) }, buf3.as_ptr());
720
721        let buf4 = buf.slice(5);
722        let empty_slice: [u8; 0] = [];
723        assert_eq!(empty_slice, buf4.as_slice());
724        assert_eq!(0, buf4.len());
725        assert!(buf4.is_empty());
726        assert_eq!(buf2.slice_with_length(2, 1).as_slice(), &[10]);
727    }
728
729    #[test]
730    fn test_shrink_to_fit() {
731        let original = Buffer::from(&[0, 1, 2, 3, 4, 5, 6, 7]);
732        assert_eq!(original.as_slice(), &[0, 1, 2, 3, 4, 5, 6, 7]);
733        assert_eq!(original.capacity(), 64);
734
735        let slice = original.slice_with_length(2, 3);
736        drop(original); // Make sure the buffer isn't shared (or shrink_to_fit won't work)
737        assert_eq!(slice.as_slice(), &[2, 3, 4]);
738        assert_eq!(slice.capacity(), 64);
739
740        let mut shrunk = slice;
741        shrunk.shrink_to_fit();
742        assert_eq!(shrunk.as_slice(), &[2, 3, 4]);
743        assert_eq!(shrunk.capacity(), 5); // shrink_to_fit is allowed to keep the elements before the offset
744
745        // Test that we can handle empty slices:
746        let empty_slice = shrunk.slice_with_length(1, 0);
747        drop(shrunk); // Make sure the buffer isn't shared (or shrink_to_fit won't work)
748        assert_eq!(empty_slice.as_slice(), &[]);
749        assert_eq!(empty_slice.capacity(), 5);
750
751        let mut shrunk_empty = empty_slice;
752        shrunk_empty.shrink_to_fit();
753        assert_eq!(shrunk_empty.as_slice(), &[]);
754        assert_eq!(shrunk_empty.capacity(), 0);
755    }
756
757    #[test]
758    #[should_panic(expected = "the offset of the new Buffer cannot exceed the existing length")]
759    fn test_slice_offset_out_of_bound() {
760        let buf = Buffer::from(&[2, 4, 6, 8, 10]);
761        buf.slice(6);
762    }
763
764    #[test]
765    fn test_access_concurrently() {
766        let buffer = Buffer::from([1, 2, 3, 4, 5]);
767        let buffer2 = buffer.clone();
768        assert_eq!([1, 2, 3, 4, 5], buffer.as_slice());
769
770        let buffer_copy = thread::spawn(move || {
771            // access buffer in another thread.
772            buffer
773        })
774        .join();
775
776        assert!(buffer_copy.is_ok());
777        assert_eq!(buffer2, buffer_copy.ok().unwrap());
778    }
779
780    macro_rules! check_as_typed_data {
781        ($input: expr, $native_t: ty) => {{
782            let buffer = Buffer::from_slice_ref($input);
783            let slice: &[$native_t] = buffer.typed_data::<$native_t>();
784            assert_eq!($input, slice);
785        }};
786    }
787
788    #[test]
789    #[expect(clippy::float_cmp)]
790    fn test_as_typed_data() {
791        check_as_typed_data!(&[1i8, 3i8, 6i8], i8);
792        check_as_typed_data!(&[1u8, 3u8, 6u8], u8);
793        check_as_typed_data!(&[1i16, 3i16, 6i16], i16);
794        check_as_typed_data!(&[1i32, 3i32, 6i32], i32);
795        check_as_typed_data!(&[1i64, 3i64, 6i64], i64);
796        check_as_typed_data!(&[1u16, 3u16, 6u16], u16);
797        check_as_typed_data!(&[1u32, 3u32, 6u32], u32);
798        check_as_typed_data!(&[1u64, 3u64, 6u64], u64);
799        check_as_typed_data!(&[1f32, 3f32, 6f32], f32);
800        check_as_typed_data!(&[1f64, 3f64, 6f64], f64);
801    }
802
803    #[test]
804    fn test_count_bits() {
805        assert_eq!(0, Buffer::from(&[0b00000000]).count_set_bits_offset(0, 8));
806        assert_eq!(8, Buffer::from(&[0b11111111]).count_set_bits_offset(0, 8));
807        assert_eq!(3, Buffer::from(&[0b00001101]).count_set_bits_offset(0, 8));
808        assert_eq!(
809            6,
810            Buffer::from(&[0b01001001, 0b01010010]).count_set_bits_offset(0, 16)
811        );
812        assert_eq!(
813            16,
814            Buffer::from(&[0b11111111, 0b11111111]).count_set_bits_offset(0, 16)
815        );
816    }
817
818    #[test]
819    fn test_count_bits_slice() {
820        assert_eq!(
821            0,
822            Buffer::from(&[0b11111111, 0b00000000])
823                .slice(1)
824                .count_set_bits_offset(0, 8)
825        );
826        assert_eq!(
827            8,
828            Buffer::from(&[0b11111111, 0b11111111])
829                .slice_with_length(1, 1)
830                .count_set_bits_offset(0, 8)
831        );
832        assert_eq!(
833            3,
834            Buffer::from(&[0b11111111, 0b11111111, 0b00001101])
835                .slice(2)
836                .count_set_bits_offset(0, 8)
837        );
838        assert_eq!(
839            6,
840            Buffer::from(&[0b11111111, 0b01001001, 0b01010010])
841                .slice_with_length(1, 2)
842                .count_set_bits_offset(0, 16)
843        );
844        assert_eq!(
845            16,
846            Buffer::from(&[0b11111111, 0b11111111, 0b11111111, 0b11111111])
847                .slice(2)
848                .count_set_bits_offset(0, 16)
849        );
850    }
851
852    #[test]
853    fn test_count_bits_offset_slice() {
854        assert_eq!(8, Buffer::from(&[0b11111111]).count_set_bits_offset(0, 8));
855        assert_eq!(3, Buffer::from(&[0b11111111]).count_set_bits_offset(0, 3));
856        assert_eq!(5, Buffer::from(&[0b11111111]).count_set_bits_offset(3, 5));
857        assert_eq!(1, Buffer::from(&[0b11111111]).count_set_bits_offset(3, 1));
858        assert_eq!(0, Buffer::from(&[0b11111111]).count_set_bits_offset(8, 0));
859        assert_eq!(2, Buffer::from(&[0b01010101]).count_set_bits_offset(0, 3));
860        assert_eq!(
861            16,
862            Buffer::from(&[0b11111111, 0b11111111]).count_set_bits_offset(0, 16)
863        );
864        assert_eq!(
865            10,
866            Buffer::from(&[0b11111111, 0b11111111]).count_set_bits_offset(0, 10)
867        );
868        assert_eq!(
869            10,
870            Buffer::from(&[0b11111111, 0b11111111]).count_set_bits_offset(3, 10)
871        );
872        assert_eq!(
873            8,
874            Buffer::from(&[0b11111111, 0b11111111]).count_set_bits_offset(8, 8)
875        );
876        assert_eq!(
877            5,
878            Buffer::from(&[0b11111111, 0b11111111]).count_set_bits_offset(11, 5)
879        );
880        assert_eq!(
881            0,
882            Buffer::from(&[0b11111111, 0b11111111]).count_set_bits_offset(16, 0)
883        );
884        assert_eq!(
885            2,
886            Buffer::from(&[0b01101101, 0b10101010]).count_set_bits_offset(7, 5)
887        );
888        assert_eq!(
889            4,
890            Buffer::from(&[0b01101101, 0b10101010]).count_set_bits_offset(7, 9)
891        );
892    }
893
894    #[test]
895    fn test_unwind_safe() {
896        fn assert_unwind_safe<T: RefUnwindSafe + UnwindSafe>() {}
897        assert_unwind_safe::<Buffer>()
898    }
899
900    #[test]
901    fn test_from_foreign_vec() {
902        let mut vector = vec![1_i32, 2, 3, 4, 5];
903        let buffer = unsafe {
904            Buffer::from_custom_allocation(
905                NonNull::new_unchecked(vector.as_mut_ptr() as *mut u8),
906                vector.len() * std::mem::size_of::<i32>(),
907                Arc::new(vector),
908            )
909        };
910
911        let slice = buffer.typed_data::<i32>();
912        assert_eq!(slice, &[1, 2, 3, 4, 5]);
913
914        let buffer = buffer.slice(std::mem::size_of::<i32>());
915
916        let slice = buffer.typed_data::<i32>();
917        assert_eq!(slice, &[2, 3, 4, 5]);
918    }
919
920    #[test]
921    #[should_panic(expected = "the offset of the new Buffer cannot exceed the existing length")]
922    fn slice_overflow() {
923        let buffer = Buffer::from(MutableBuffer::from_len_zeroed(12));
924        buffer.slice_with_length(2, usize::MAX);
925    }
926
927    #[test]
928    fn test_vec_interop() {
929        // Test empty vec
930        let a: Vec<i128> = Vec::new();
931        let b = Buffer::from_vec(a);
932        b.into_vec::<i128>().unwrap();
933
934        // Test vec with capacity
935        let a: Vec<i128> = Vec::with_capacity(20);
936        let b = Buffer::from_vec(a);
937        let back = b.into_vec::<i128>().unwrap();
938        assert_eq!(back.len(), 0);
939        assert_eq!(back.capacity(), 20);
940
941        // Test vec with values
942        let mut a: Vec<i128> = Vec::with_capacity(3);
943        a.extend_from_slice(&[1, 2, 3]);
944        let b = Buffer::from_vec(a);
945        let back = b.into_vec::<i128>().unwrap();
946        assert_eq!(back.len(), 3);
947        assert_eq!(back.capacity(), 3);
948
949        // Test vec with values and spare capacity
950        let mut a: Vec<i128> = Vec::with_capacity(20);
951        a.extend_from_slice(&[1, 4, 7, 8, 9, 3, 6]);
952        let b = Buffer::from_vec(a);
953        let back = b.into_vec::<i128>().unwrap();
954        assert_eq!(back.len(), 7);
955        assert_eq!(back.capacity(), 20);
956
957        // Test incorrect alignment
958        let a: Vec<i128> = Vec::new();
959        let b = Buffer::from_vec(a);
960        let b = b.into_vec::<i32>().unwrap_err();
961        b.into_vec::<i8>().unwrap_err();
962
963        // Test convert between types with same alignment
964        // This is an implementation quirk, but isn't harmful
965        // as ArrowNativeType are trivially transmutable
966        let a: Vec<i64> = vec![1, 2, 3, 4];
967        let b = Buffer::from_vec(a);
968        let back = b.into_vec::<u64>().unwrap();
969        assert_eq!(back.len(), 4);
970        assert_eq!(back.capacity(), 4);
971
972        // i256 has the same layout as i128 so this is valid
973        let mut b: Vec<i128> = Vec::with_capacity(4);
974        b.extend_from_slice(&[1, 2, 3, 4]);
975        let b = Buffer::from_vec(b);
976        let back = b.into_vec::<i256>().unwrap();
977        assert_eq!(back.len(), 2);
978        assert_eq!(back.capacity(), 2);
979
980        // Invalid layout
981        let b: Vec<i128> = vec![1, 2, 3];
982        let b = Buffer::from_vec(b);
983        b.into_vec::<i256>().unwrap_err();
984
985        // Invalid layout
986        let mut b: Vec<i128> = Vec::with_capacity(5);
987        b.extend_from_slice(&[1, 2, 3, 4]);
988        let b = Buffer::from_vec(b);
989        b.into_vec::<i256>().unwrap_err();
990
991        // Truncates length
992        // This is an implementation quirk, but isn't harmful
993        let mut b: Vec<i128> = Vec::with_capacity(4);
994        b.extend_from_slice(&[1, 2, 3]);
995        let b = Buffer::from_vec(b);
996        let back = b.into_vec::<i256>().unwrap();
997        assert_eq!(back.len(), 1);
998        assert_eq!(back.capacity(), 2);
999
1000        // Cannot use aligned allocation
1001        let b = Buffer::from(MutableBuffer::new(10));
1002        let b = b.into_vec::<u8>().unwrap_err();
1003        b.into_vec::<u64>().unwrap_err();
1004
1005        // Test slicing
1006        let mut a: Vec<i128> = Vec::with_capacity(20);
1007        a.extend_from_slice(&[1, 4, 7, 8, 9, 3, 6]);
1008        let b = Buffer::from_vec(a);
1009        let slice = b.slice_with_length(0, 64);
1010
1011        // Shared reference fails
1012        let slice = slice.into_vec::<i128>().unwrap_err();
1013        drop(b);
1014
1015        // Succeeds as no outstanding shared reference
1016        let back = slice.into_vec::<i128>().unwrap();
1017        assert_eq!(&back, &[1, 4, 7, 8]);
1018        assert_eq!(back.capacity(), 20);
1019
1020        // Slicing by non-multiple length truncates
1021        let mut a: Vec<i128> = Vec::with_capacity(8);
1022        a.extend_from_slice(&[1, 4, 7, 3]);
1023
1024        let b = Buffer::from_vec(a);
1025        let slice = b.slice_with_length(0, 34);
1026        drop(b);
1027
1028        let back = slice.into_vec::<i128>().unwrap();
1029        assert_eq!(&back, &[1, 4]);
1030        assert_eq!(back.capacity(), 8);
1031
1032        // Offset prevents conversion
1033        let a: Vec<u32> = vec![1, 3, 4, 6];
1034        let b = Buffer::from_vec(a).slice(2);
1035        b.into_vec::<u32>().unwrap_err();
1036
1037        let b = MutableBuffer::new(16).into_buffer();
1038        let b = b.into_vec::<u8>().unwrap_err(); // Invalid layout
1039        let b = b.into_vec::<u32>().unwrap_err(); // Invalid layout
1040        b.into_mutable().unwrap();
1041
1042        let b = Buffer::from_vec(vec![1_u32, 3, 5]);
1043        let b = b.into_mutable().unwrap();
1044        let b = Buffer::from(b);
1045        let b = b.into_vec::<u32>().unwrap();
1046        assert_eq!(b, &[1, 3, 5]);
1047    }
1048
1049    #[test]
1050    #[should_panic(expected = "capacity overflow")]
1051    fn test_from_iter_overflow() {
1052        let iter_len = usize::MAX / std::mem::size_of::<u64>() + 1;
1053        let _ = Buffer::from_iter(std::iter::repeat_n(0_u64, iter_len));
1054    }
1055
1056    #[test]
1057    fn bit_slice_length_preserved() {
1058        // Create a boring buffer
1059        let buf = Buffer::from_iter(std::iter::repeat_n(true, 64));
1060
1061        let assert_preserved = |offset: usize, len: usize| {
1062            let new_buf = buf.bit_slice(offset, len);
1063            assert_eq!(new_buf.len(), bit_util::ceil(len, 8));
1064
1065            // if the offset is not byte-aligned, we have to create a deep copy to a new buffer
1066            // (since the `offset` value inside a Buffer is byte-granular, not bit-granular), so
1067            // checking the offset should always return 0 if so. If the offset IS byte-aligned, we
1068            // want to make sure it doesn't unnecessarily create a deep copy.
1069            if offset.is_multiple_of(8) {
1070                assert_eq!(new_buf.ptr_offset(), offset / 8);
1071            } else {
1072                assert_eq!(new_buf.ptr_offset(), 0);
1073            }
1074        };
1075
1076        // go through every available value for offset
1077        for o in 0..=64 {
1078            // and go through every length that could accompany that offset - we can't have a
1079            // situation where offset + len > 64, because that would go past the end of the buffer,
1080            // so we use the map to ensure it's in range.
1081            for l in (o..=64).map(|l| l - o) {
1082                // and we just want to make sure every one of these keeps its offset and length
1083                // when neeeded
1084                assert_preserved(o, l);
1085            }
1086        }
1087    }
1088
1089    #[test]
1090    fn test_strong_count() {
1091        let buffer = Buffer::from_iter(std::iter::repeat_n(0_u8, 100));
1092        assert_eq!(buffer.strong_count(), 1);
1093
1094        let buffer2 = buffer.clone();
1095        assert_eq!(buffer.strong_count(), 2);
1096
1097        let buffer3 = buffer2.clone();
1098        assert_eq!(buffer.strong_count(), 3);
1099
1100        drop(buffer);
1101        assert_eq!(buffer2.strong_count(), 2);
1102        assert_eq!(buffer3.strong_count(), 2);
1103
1104        // Strong count does not increase on move
1105        let capture = move || {
1106            assert_eq!(buffer3.strong_count(), 2);
1107        };
1108
1109        capture();
1110        assert_eq!(buffer2.strong_count(), 2);
1111
1112        drop(capture);
1113        assert_eq!(buffer2.strong_count(), 1);
1114    }
1115
1116    #[test]
1117    fn into_mutable_should_return_error_for_sliced_owned_buffer_when_ptr_offset_is_not_0() {
1118        let original_buffer_data = [1_u8, 2, 3, 4, 5, 6, 7, 8];
1119        for (slice_from, slice_length) in [
1120            (original_buffer_data.len(), 0),
1121            (2, 4),
1122            (2, original_buffer_data.len() - 2),
1123        ] {
1124            let buffer = Buffer::from(original_buffer_data);
1125            let sliced = buffer.slice_with_length(slice_from, slice_length);
1126            drop(buffer); // Keep only 1 owner
1127            assert_ne!(sliced.ptr_offset(), 0);
1128
1129            sliced
1130                .into_mutable()
1131                .expect_err("should not convert sliced buffer when ptr_offset is not 0");
1132        }
1133    }
1134
1135    #[test]
1136    fn into_mutable_should_allow_converting_sliced_owned_buffer_when_ptr_offset_is_0() {
1137        let original_buffer_data = [1_u8, 2, 3, 4, 5, 6, 7, 8];
1138        for slice_length in [0, original_buffer_data.len() - 2] {
1139            let buffer = Buffer::from(original_buffer_data);
1140            let sliced = buffer.slice_with_length(0, slice_length);
1141            drop(buffer); // Keep only 1 owner
1142            assert_eq!(sliced.ptr_offset(), 0);
1143
1144            let original_ptr = sliced.data_ptr();
1145
1146            let mutable = sliced
1147                        .into_mutable()
1148                        .unwrap_or_else(|_| panic!("should allow converting to mutable when not sliced from end when slice_length is {slice_length}"));
1149
1150            let buffer_back: Buffer = mutable.into();
1151            assert_eq!(buffer_back.data_ptr(), original_ptr);
1152
1153            let expected = Buffer::from(original_buffer_data).slice_with_length(0, slice_length);
1154            assert_eq!(buffer_back.as_slice(), expected.as_slice());
1155        }
1156    }
1157}