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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
use std::fmt;
use super::Rc;
use crate::ImplicitClone;
/// An immutable array type inspired by [Immutable.js](https://immutable-js.com/).
///
/// This type is cheap to clone and thus implements [`ImplicitClone`]. It can be created based on a
/// `&'static [T]` or based on a reference counted slice (`T`).
#[derive(PartialEq, Eq)]
pub enum IArray<T: ImplicitClone + 'static> {
/// A static slice.
Static(&'static [T]),
/// A reference counted slice.
Rc(Rc<[T]>),
/// A single element.
Single([T; 1]),
}
// TODO add insta tests
impl<T: fmt::Debug + ImplicitClone + 'static> fmt::Debug for IArray<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::Static(a) => a.fmt(f),
Self::Rc(a) => a.fmt(f),
Self::Single(x) => x.fmt(f),
}
}
}
impl<T: ImplicitClone + 'static> Clone for IArray<T> {
fn clone(&self) -> Self {
match self {
Self::Static(a) => Self::Static(a),
Self::Rc(a) => Self::Rc(a.clone()),
Self::Single(x) => Self::Single(x.clone()),
}
}
}
impl<T: ImplicitClone + 'static> Default for IArray<T> {
fn default() -> Self {
Self::EMPTY
}
}
impl<T: ImplicitClone + 'static> FromIterator<T> for IArray<T> {
fn from_iter<I: IntoIterator<Item = T>>(it: I) -> Self {
let mut it = it.into_iter();
match it.size_hint() {
(_, Some(0)) => Self::EMPTY,
(_, Some(1)) => {
if let Some(element) = it.next() {
Self::Single([element])
} else {
Self::EMPTY
}
}
_ => Self::Rc(Rc::from_iter(it)),
}
}
}
impl<T: ImplicitClone + 'static> ImplicitClone for IArray<T> {}
impl<T: ImplicitClone + 'static> From<&'static [T]> for IArray<T> {
fn from(a: &'static [T]) -> IArray<T> {
IArray::Static(a)
}
}
impl<T: ImplicitClone + 'static> From<Vec<T>> for IArray<T> {
fn from(a: Vec<T>) -> IArray<T> {
IArray::Rc(Rc::from(a))
}
}
impl<T: ImplicitClone + 'static> From<Rc<[T]>> for IArray<T> {
fn from(a: Rc<[T]>) -> IArray<T> {
IArray::Rc(a)
}
}
impl<T: ImplicitClone + 'static> From<&IArray<T>> for IArray<T> {
fn from(a: &IArray<T>) -> IArray<T> {
a.clone()
}
}
impl<T: ImplicitClone + 'static> From<[T; 1]> for IArray<T> {
fn from(a: [T; 1]) -> IArray<T> {
IArray::Single(a)
}
}
/// An iterator over the elements of an `IArray`.
#[derive(Debug)]
pub struct Iter<T: ImplicitClone + 'static> {
array: IArray<T>,
index: usize,
}
impl<T: ImplicitClone + 'static> Iter<T> {
fn new(array: IArray<T>) -> Self {
Self { array, index: 0 }
}
}
impl<T: ImplicitClone + 'static> Iterator for Iter<T> {
type Item = T;
fn next(&mut self) -> Option<Self::Item> {
let item = self.array.get(self.index);
self.index += 1;
item
}
}
impl<T: ImplicitClone + 'static> IArray<T> {
/// An empty array without allocation.
pub const EMPTY: Self = Self::Static(&[]);
/// Returns an iterator over the slice.
///
/// # Examples
///
/// ```
/// # use implicit_clone::unsync::*;
/// let x = IArray::<u8>::Static(&[1, 2, 4]);
/// let mut iterator = x.iter();
///
/// assert_eq!(iterator.next(), Some(1));
/// assert_eq!(iterator.next(), Some(2));
/// assert_eq!(iterator.next(), Some(4));
/// assert_eq!(iterator.next(), None);
/// ```
#[inline]
pub fn iter(&self) -> Iter<T> {
Iter::new(self.clone())
}
/// Returns the number of elements in the vector, also referred to
/// as its 'length'.
///
/// # Examples
///
/// ```
/// # use implicit_clone::unsync::*;
/// let a = IArray::<u8>::Static(&[1, 2, 3]);
/// assert_eq!(a.len(), 3);
/// ```
#[inline]
pub fn len(&self) -> usize {
match self {
Self::Static(a) => a.len(),
Self::Rc(a) => a.len(),
Self::Single(_) => 1,
}
}
/// Returns `true` if the vector contains no elements.
///
/// # Examples
///
/// ```
/// # use implicit_clone::unsync::*;
/// let v = IArray::<u8>::default();
/// assert!(v.is_empty());
///
/// let v = IArray::<u8>::Static(&[1]);
/// assert!(!v.is_empty());
/// ```
#[inline]
pub fn is_empty(&self) -> bool {
match self {
Self::Static(a) => a.is_empty(),
Self::Rc(a) => a.is_empty(),
Self::Single(_) => false,
}
}
/// Extracts a slice containing the entire array.
///
/// Equivalent to `&s[..]`.
///
/// # Examples
///
/// ```
/// # use implicit_clone::unsync::*;
/// use std::io::{self, Write};
/// let buffer = IArray::<u8>::Static(&[1, 2, 3, 5, 8]);
/// io::sink().write(buffer.as_slice()).unwrap();
/// ```
#[inline]
pub fn as_slice(&self) -> &[T] {
match self {
Self::Static(a) => a,
Self::Rc(a) => a,
Self::Single(a) => a,
}
}
/// Returns a clone of an element at a position or `None` if out of bounds.
///
/// # Examples
///
/// ```
/// # use implicit_clone::unsync::*;
/// let v = IArray::<u8>::Static(&[10, 40, 30]);
/// assert_eq!(Some(40), v.get(1));
/// assert_eq!(None, v.get(3));
/// ```
#[inline]
pub fn get(&self, index: usize) -> Option<T> {
match self {
Self::Static(a) => a.get(index).cloned(),
Self::Rc(a) => a.get(index).cloned(),
Self::Single(a) if index == 0 => Some(a[0].clone()),
Self::Single(_) => None,
}
}
/// Gets a mutable reference into the array, if there are no other references.
///
/// If this array is an `Rc` with no other strong or weak references, returns
/// a mutable slice of the contained data without any cloning. Otherwise returns
/// `None`.
///
/// # Example
///
/// ```
/// # use implicit_clone::unsync::*;
/// # use std::rc::Rc;
/// // This will reuse the Rc storage
/// let mut v1 = IArray::<u8>::Rc(Rc::new([1,2,3]));
/// v1.get_mut().unwrap()[1] = 123;
/// assert_eq!(&[1,123,3], v1.as_slice());
///
/// // Another reference will prevent exclusive access
/// let v2 = v1.clone();
/// assert!(v1.get_mut().is_none());
///
/// // Static references are immutable
/// let mut v3 = IArray::<u8>::Static(&[1,2,3]);
/// assert!(v3.get_mut().is_none());
///
/// // Single items always return a mutable reference
/// let mut v4 = IArray::<u8>::Single([1]);
/// assert!(v4.get_mut().is_some());
/// ```
#[inline]
pub fn get_mut(&mut self) -> Option<&mut [T]> {
match self {
Self::Rc(ref mut rc) => Rc::get_mut(rc),
Self::Static(_) => None,
Self::Single(ref mut a) => Some(a),
}
}
/// Makes a mutable reference into the array.
///
/// If this array is an `Rc` with no other strong or weak references, returns
/// a mutable slice of the contained data without any cloning. Otherwise, it clones the
/// data into a new array and returns a mutable slice into that.
///
/// # Example
///
/// ```
/// # use implicit_clone::unsync::*;
/// # use std::rc::Rc;
/// // This will reuse the Rc storage
/// let mut v1 = IArray::<u8>::Rc(Rc::new([1,2,3]));
/// v1.make_mut()[1] = 123;
/// assert_eq!(&[1,123,3], v1.as_slice());
///
/// // This will create a new copy
/// let mut v2 = IArray::<u8>::Static(&[1,2,3]);
/// v2.make_mut()[1] = 123;
/// assert_eq!(&[1,123,3], v2.as_slice());
/// ```
#[inline]
pub fn make_mut(&mut self) -> &mut [T] {
// This code is somewhat weirdly written to work around https://github.com/rust-lang/rust/issues/54663 -
// we can't just check if this is an Rc with one reference with get_mut in an if branch and copy otherwise,
// since returning the mutable slice extends its lifetime for the rest of the function.
match self {
Self::Rc(ref mut rc) => {
if Rc::get_mut(rc).is_none() {
*rc = rc.iter().cloned().collect::<Rc<[T]>>();
}
Rc::get_mut(rc).unwrap()
}
Self::Static(slice) => {
*self = Self::Rc(slice.iter().cloned().collect());
match self {
Self::Rc(rc) => Rc::get_mut(rc).unwrap(),
_ => unreachable!(),
}
}
Self::Single(slice) => {
*self = Self::Rc(slice.iter().cloned().collect());
match self {
Self::Rc(rc) => Rc::get_mut(rc).unwrap(),
_ => unreachable!(),
}
}
}
}
}
impl<'a, T, U, const N: usize> PartialEq<&'a [U; N]> for IArray<T>
where
T: PartialEq<U> + ImplicitClone,
{
fn eq(&self, other: &&[U; N]) -> bool {
match self {
Self::Static(a) => a.eq(other),
Self::Rc(a) => a.eq(*other),
Self::Single(a) if N == 1 => a[0].eq(&other[0]),
Self::Single(_) => false,
}
}
}
impl<T, U, const N: usize> PartialEq<[U; N]> for IArray<T>
where
T: PartialEq<U> + ImplicitClone,
{
fn eq(&self, other: &[U; N]) -> bool {
match self {
Self::Static(a) => a.eq(other),
Self::Rc(a) => a.eq(other),
Self::Single(a) if N == 1 => a[0].eq(&other[0]),
Self::Single(_) => false,
}
}
}
impl<T, U> PartialEq<[U]> for IArray<T>
where
T: PartialEq<U> + ImplicitClone,
{
fn eq(&self, other: &[U]) -> bool {
match self {
Self::Static(a) => a.eq(&other),
Self::Rc(a) => a.eq(other),
Self::Single(a) => a.eq(other),
}
}
}
impl<'a, T, U> PartialEq<&'a [U]> for IArray<T>
where
T: PartialEq<U> + ImplicitClone,
{
fn eq(&self, other: &&[U]) -> bool {
match self {
Self::Static(a) => a.eq(other),
Self::Rc(a) => a.eq(*other),
Self::Single(a) => a.eq(*other),
}
}
}
impl<T> std::ops::Deref for IArray<T>
where
T: ImplicitClone,
{
type Target = [T];
fn deref(&self) -> &Self::Target {
self.as_slice()
}
}
#[cfg(feature = "serde")]
impl<T: serde::Serialize + ImplicitClone> serde::Serialize for IArray<T> {
fn serialize<S: serde::Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
<[T] as serde::Serialize>::serialize(self, serializer)
}
}
#[cfg(feature = "serde")]
impl<'de, T: serde::Deserialize<'de> + ImplicitClone> serde::Deserialize<'de> for IArray<T> {
fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
<Vec<T> as serde::Deserialize>::deserialize(deserializer).map(IArray::<T>::from)
}
}
#[cfg(test)]
mod test_array {
use super::*;
#[test]
fn array_in_array() {
let array_1 = [1, 2, 3].into_iter().collect::<IArray<u32>>();
let array_2 = [4, 5, 6].into_iter().collect::<IArray<u32>>();
let array_of_array = [array_1, array_2]
.into_iter()
.collect::<IArray<IArray<u32>>>();
assert_eq!(array_of_array, [[1, 2, 3], [4, 5, 6]]);
}
#[test]
fn array_holding_rc_items() {
struct Item;
let _array = [Rc::new(Item)].into_iter().collect::<IArray<Rc<Item>>>();
}
#[test]
fn from_iter_is_optimized() {
let array_0 = [].into_iter().collect::<IArray<u32>>();
assert!(matches!(array_0, IArray::Static(_)));
let array_1 = [1].into_iter().collect::<IArray<u32>>();
assert!(matches!(array_1, IArray::Single(_)));
let array_2 = [1, 2].into_iter().collect::<IArray<u32>>();
assert!(matches!(array_2, IArray::Rc(_)));
{
let it = [1].into_iter().filter(|x| x % 2 == 0);
assert_eq!(it.size_hint(), (0, Some(1)));
let array_0_to_1 = it.collect::<IArray<u32>>();
assert!(matches!(array_0_to_1, IArray::Static(_)));
}
{
let it = [2].into_iter().filter(|x| x % 2 == 0);
assert_eq!(it.size_hint(), (0, Some(1)));
let array_0_to_1 = it.collect::<IArray<u32>>();
assert!(matches!(array_0_to_1, IArray::Single(_)));
}
}
#[test]
fn static_array() {
const _ARRAY: IArray<u32> = IArray::Static(&[1, 2, 3]);
}
#[test]
fn deref_slice() {
assert!(IArray::Static(&[1, 2, 3]).contains(&1));
}
#[test]
fn tuple_in_array() {
const _ARRAY_2: IArray<(u32, u32)> = IArray::EMPTY;
const _ARRAY_5: IArray<(u32, u32, u32, u32, u32)> = IArray::EMPTY;
}
#[test]
fn floats_in_array() {
const _ARRAY_F32: IArray<f32> = IArray::EMPTY;
const _ARRAY_F64: IArray<f64> = IArray::EMPTY;
}
#[test]
fn from() {
let x: IArray<u32> = IArray::EMPTY;
let _out = IArray::from(&x);
let _array: IArray<u32> = IArray::from(&[1, 2, 3][..]);
let _array: IArray<u32> = IArray::from(vec![1, 2, 3]);
let _array: IArray<u32> = IArray::from(Rc::from(vec![1, 2, 3]));
let _array: IArray<u32> = IArray::from([1]);
}
}