use std::{
self,
fmt::{self, Debug, Formatter},
hash::{Hash, Hasher},
ops, ptr,
};
use bumpalo::collections;
pub use bumpalo::collections::String;
use serde::{ser::SerializeSeq, Serialize, Serializer};
use crate::Allocator;
pub struct Box<'alloc, T: ?Sized>(pub &'alloc mut T);
impl<'alloc, T> Box<'alloc, T> {
pub fn unbox(self) -> T {
unsafe { ptr::read(self.0 as *mut T) }
}
}
impl<'alloc, T: ?Sized> ops::Deref for Box<'alloc, T> {
type Target = T;
fn deref(&self) -> &T {
self.0
}
}
impl<'alloc, T: ?Sized> ops::DerefMut for Box<'alloc, T> {
fn deref_mut(&mut self) -> &mut T {
self.0
}
}
impl<'alloc, T: ?Sized + Debug> Debug for Box<'alloc, T> {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl<'alloc, T> Serialize for Box<'alloc, T>
where
T: Serialize,
{
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
self.0.serialize(s)
}
}
impl<'alloc, T: Hash> Hash for Box<'alloc, T> {
fn hash<H: Hasher>(&self, state: &mut H) {
self.0.hash(state);
}
}
#[derive(Debug, PartialEq, Eq)]
pub struct Vec<'alloc, T>(collections::Vec<'alloc, T>);
impl<'alloc, T> Vec<'alloc, T> {
#[inline]
pub fn new_in(allocator: &'alloc Allocator) -> Self {
Self(collections::Vec::new_in(allocator))
}
#[inline]
pub fn with_capacity_in(capacity: usize, allocator: &'alloc Allocator) -> Self {
Self(collections::Vec::with_capacity_in(capacity, allocator))
}
#[inline]
pub fn from_iter_in<I: IntoIterator<Item = T>>(iter: I, allocator: &'alloc Allocator) -> Self {
Self(collections::Vec::from_iter_in(iter, allocator))
}
}
impl<'alloc, T> ops::Deref for Vec<'alloc, T> {
type Target = collections::Vec<'alloc, T>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl<'alloc, T> ops::DerefMut for Vec<'alloc, T> {
fn deref_mut(&mut self) -> &mut collections::Vec<'alloc, T> {
&mut self.0
}
}
impl<'alloc, T> IntoIterator for Vec<'alloc, T> {
type IntoIter = <collections::Vec<'alloc, T> as IntoIterator>::IntoIter;
type Item = T;
fn into_iter(self) -> Self::IntoIter {
self.0.into_iter()
}
}
impl<'alloc, T> IntoIterator for &'alloc Vec<'alloc, T> {
type IntoIter = std::slice::Iter<'alloc, T>;
type Item = &'alloc T;
fn into_iter(self) -> Self::IntoIter {
self.0.iter()
}
}
impl<'alloc, T> ops::Index<usize> for Vec<'alloc, T> {
type Output = T;
fn index(&self, index: usize) -> &Self::Output {
self.0.index(index)
}
}
impl<'alloc, T> ops::Index<usize> for &'alloc Vec<'alloc, T> {
type Output = T;
fn index(&self, index: usize) -> &Self::Output {
self.0.index(index)
}
}
impl<'alloc, T> Serialize for Vec<'alloc, T>
where
T: Serialize,
{
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut seq = s.serialize_seq(Some(self.0.len()))?;
for e in &self.0 {
seq.serialize_element(e)?;
}
seq.end()
}
}
impl<'alloc, T: Hash> Hash for Vec<'alloc, T> {
fn hash<H: Hasher>(&self, state: &mut H) {
for e in &self.0 {
e.hash(state);
}
}
}
#[cfg(test)]
mod test {
use crate::{Allocator, Box, Vec};
#[test]
fn box_deref_mut() {
let allocator = Allocator::default();
let mut b = Box(allocator.alloc("x"));
let b = &mut *b;
*b = allocator.alloc("v");
assert_eq!(*b, "v");
}
#[test]
fn box_debug() {
let allocator = Allocator::default();
let b = Box(allocator.alloc("x"));
let b = format!("{b:?}");
assert_eq!(b, "\"x\"");
}
#[test]
fn vec_debug() {
let allocator = Allocator::default();
let mut v = Vec::new_in(&allocator);
v.push("x");
let v = format!("{v:?}");
assert_eq!(v, "Vec([\"x\"])");
}
#[test]
fn box_serialize() {
let allocator = Allocator::default();
let b = Box(allocator.alloc("x"));
let b = serde_json::to_string(&b).unwrap();
assert_eq!(b, "\"x\"");
}
#[test]
fn vec_serialize() {
let allocator = Allocator::default();
let mut v = Vec::new_in(&allocator);
v.push("x");
let v = serde_json::to_string(&v).unwrap();
assert_eq!(v, "[\"x\"]");
}
}