use std::borrow::{Borrow, BorrowMut};
use std::cmp::Ordering;
use std::fmt::{Debug, Error, Formatter};
use std::hash::{Hash, Hasher};
use std::iter::{FromIterator, FusedIterator};
use std::marker::PhantomData;
use std::mem::{self, ManuallyDrop};
use std::ops::{Deref, DerefMut};
use std::ptr;
use std::slice::{from_raw_parts, from_raw_parts_mut, Iter as SliceIter, IterMut as SliceIterMut};
pub struct InlineArray<A, T> {
data: ManuallyDrop<T>,
phantom: PhantomData<A>,
}
impl<A, T> InlineArray<A, T> {
const HOST_SIZE: usize = mem::size_of::<T>();
const ELEMENT_SIZE: usize = mem::size_of::<A>();
const HEADER_SIZE: usize = mem::size_of::<usize>();
pub const CAPACITY: usize = (Self::HOST_SIZE - Self::HEADER_SIZE) / Self::ELEMENT_SIZE;
#[inline]
#[must_use]
unsafe fn len_const(&self) -> *const usize {
(&self.data) as *const _ as *const usize
}
#[inline]
#[must_use]
pub(crate) unsafe fn len_mut(&mut self) -> *mut usize {
(&mut self.data) as *mut _ as *mut usize
}
#[inline]
#[must_use]
pub(crate) unsafe fn data(&self) -> *const A {
self.len_const().add(1) as *const _ as *const A
}
#[inline]
#[must_use]
unsafe fn data_mut(&mut self) -> *mut A {
self.len_mut().add(1) as *mut _ as *mut A
}
#[inline]
#[must_use]
unsafe fn ptr_at(&self, index: usize) -> *const A {
self.data().add(index)
}
#[inline]
#[must_use]
unsafe fn ptr_at_mut(&mut self, index: usize) -> *mut A {
self.data_mut().add(index)
}
#[inline]
unsafe fn read_at(&self, index: usize) -> A {
ptr::read(self.ptr_at(index))
}
#[inline]
unsafe fn write_at(&mut self, index: usize, value: A) {
ptr::write(self.ptr_at_mut(index), value);
}
#[inline]
#[must_use]
pub fn len(&self) -> usize {
unsafe { *self.len_const() }
}
#[inline]
#[must_use]
pub fn is_empty(&self) -> bool {
self.len() == 0
}
#[inline]
#[must_use]
pub fn is_full(&self) -> bool {
self.len() >= Self::CAPACITY
}
#[inline]
#[must_use]
pub fn new() -> Self {
debug_assert!(Self::HOST_SIZE > Self::HEADER_SIZE);
unsafe { mem::zeroed() }
}
#[inline]
#[must_use]
fn get_unchecked(&self, index: usize) -> &A {
unsafe { &*self.data().add(index) }
}
pub fn push(&mut self, value: A) {
if self.is_full() {
panic!("InlineArray::push: chunk size overflow");
}
unsafe {
self.write_at(self.len(), value);
*self.len_mut() += 1;
}
}
pub fn pop(&mut self) -> Option<A> {
if self.is_empty() {
None
} else {
unsafe {
*self.len_mut() -= 1;
}
Some(unsafe { self.read_at(self.len()) })
}
}
pub fn insert(&mut self, index: usize, value: A) {
if self.is_full() {
panic!("InlineArray::push: chunk size overflow");
}
if index > self.len() {
panic!("InlineArray::insert: index out of bounds");
}
unsafe {
let src = self.ptr_at_mut(index);
ptr::copy(src, src.add(1), self.len() - index);
ptr::write(src, value);
*self.len_mut() += 1;
}
}
pub fn remove(&mut self, index: usize) -> Option<A> {
if index >= self.len() {
None
} else {
unsafe {
let src = self.ptr_at_mut(index);
let value = ptr::read(src);
*self.len_mut() -= 1;
ptr::copy(src.add(1), src, self.len() - index);
Some(value)
}
}
}
pub fn split_off(&mut self, index: usize) -> Self {
if index > self.len() {
panic!("InlineArray::split_off: index out of bounds");
}
let mut out = Self::new();
if index < self.len() {
unsafe {
ptr::copy(self.ptr_at(index), out.data_mut(), self.len() - index);
*out.len_mut() = self.len() - index;
*self.len_mut() = index;
}
}
out
}
#[inline]
fn drop_contents(&mut self) {
unsafe {
let data = self.data_mut();
for i in 0..self.len() {
ptr::drop_in_place(data.add(i));
}
}
}
pub fn clear(&mut self) {
self.drop_contents();
unsafe {
*self.len_mut() = 0;
}
}
pub fn drain(&mut self) -> Drain<A, T> {
Drain { array: self }
}
}
impl<A, T> Drop for InlineArray<A, T> {
fn drop(&mut self) {
self.drop_contents()
}
}
impl<A, T> Default for InlineArray<A, T> {
fn default() -> Self {
Self::new()
}
}
impl<A, T> Clone for InlineArray<A, T>
where
A: Clone,
{
fn clone(&self) -> Self {
let mut copy = Self::new();
for i in 0..self.len() {
unsafe {
copy.write_at(i, self.get_unchecked(i).clone());
}
}
unsafe {
*copy.len_mut() = self.len();
}
copy
}
}
impl<A, T> Deref for InlineArray<A, T> {
type Target = [A];
fn deref(&self) -> &Self::Target {
unsafe { from_raw_parts(self.data(), self.len()) }
}
}
impl<A, T> DerefMut for InlineArray<A, T> {
fn deref_mut(&mut self) -> &mut Self::Target {
unsafe { from_raw_parts_mut(self.data_mut(), self.len()) }
}
}
impl<A, T> Borrow<[A]> for InlineArray<A, T> {
fn borrow(&self) -> &[A] {
self.deref()
}
}
impl<A, T> BorrowMut<[A]> for InlineArray<A, T> {
fn borrow_mut(&mut self) -> &mut [A] {
self.deref_mut()
}
}
impl<A, T> AsRef<[A]> for InlineArray<A, T> {
fn as_ref(&self) -> &[A] {
self.deref()
}
}
impl<A, T> AsMut<[A]> for InlineArray<A, T> {
fn as_mut(&mut self) -> &mut [A] {
self.deref_mut()
}
}
impl<A, T, Slice> PartialEq<Slice> for InlineArray<A, T>
where
Slice: Borrow<[A]>,
A: PartialEq,
{
fn eq(&self, other: &Slice) -> bool {
self.deref() == other.borrow()
}
}
impl<A, T> Eq for InlineArray<A, T> where A: Eq {}
impl<A, T> PartialOrd for InlineArray<A, T>
where
A: PartialOrd,
{
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.iter().partial_cmp(other.iter())
}
}
impl<A, T> Ord for InlineArray<A, T>
where
A: Ord,
{
fn cmp(&self, other: &Self) -> Ordering {
self.iter().cmp(other.iter())
}
}
impl<A, T> Debug for InlineArray<A, T>
where
A: Debug,
{
fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
f.write_str("Chunk")?;
f.debug_list().entries(self.iter()).finish()
}
}
impl<A, T> Hash for InlineArray<A, T>
where
A: Hash,
{
fn hash<H>(&self, hasher: &mut H)
where
H: Hasher,
{
for item in self {
item.hash(hasher)
}
}
}
impl<A, T> IntoIterator for InlineArray<A, T> {
type Item = A;
type IntoIter = Iter<A, T>;
fn into_iter(self) -> Self::IntoIter {
Iter { array: self }
}
}
impl<A, T> FromIterator<A> for InlineArray<A, T> {
fn from_iter<I>(it: I) -> Self
where
I: IntoIterator<Item = A>,
{
let mut chunk = Self::new();
for item in it {
chunk.push(item);
}
chunk
}
}
impl<'a, A, T> IntoIterator for &'a InlineArray<A, T> {
type Item = &'a A;
type IntoIter = SliceIter<'a, A>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<'a, A, T> IntoIterator for &'a mut InlineArray<A, T> {
type Item = &'a mut A;
type IntoIter = SliceIterMut<'a, A>;
fn into_iter(self) -> Self::IntoIter {
self.iter_mut()
}
}
impl<A, T> Extend<A> for InlineArray<A, T> {
fn extend<I>(&mut self, it: I)
where
I: IntoIterator<Item = A>,
{
for item in it {
self.push(item);
}
}
}
impl<'a, A, T> Extend<&'a A> for InlineArray<A, T>
where
A: 'a + Copy,
{
fn extend<I>(&mut self, it: I)
where
I: IntoIterator<Item = &'a A>,
{
for item in it {
self.push(*item);
}
}
}
pub struct Iter<A, T> {
array: InlineArray<A, T>,
}
impl<A, T> Iterator for Iter<A, T> {
type Item = A;
fn next(&mut self) -> Option<Self::Item> {
self.array.remove(0)
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.array.len(), Some(self.array.len()))
}
}
impl<A, T> DoubleEndedIterator for Iter<A, T> {
fn next_back(&mut self) -> Option<Self::Item> {
self.array.pop()
}
}
impl<A, T> ExactSizeIterator for Iter<A, T> {}
impl<A, T> FusedIterator for Iter<A, T> {}
pub struct Drain<'a, A, T> {
array: &'a mut InlineArray<A, T>,
}
impl<'a, A, T> Iterator for Drain<'a, A, T> {
type Item = A;
fn next(&mut self) -> Option<Self::Item> {
self.array.remove(0)
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.array.len(), Some(self.array.len()))
}
}
impl<'a, A, T> DoubleEndedIterator for Drain<'a, A, T> {
fn next_back(&mut self) -> Option<Self::Item> {
self.array.pop()
}
}
impl<'a, A, T> ExactSizeIterator for Drain<'a, A, T> {}
impl<'a, A, T> FusedIterator for Drain<'a, A, T> {}