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
use crate::create_array;
use core::{
  borrow::{Borrow, BorrowMut},
  cmp::Ordering,
  fmt,
  iter::IntoIterator,
  ops::{Deref, DerefMut, Index, IndexMut},
  slice::{Iter, IterMut, SliceIndex},
};
#[cfg(feature = "with_serde")]
use serde::{Deserialize, Deserializer, Serialize, Serializer};

/// Arbitrary length array wrapper. This structure is necessary for third-party
/// and std implementations.
pub struct ArrayWrapper<T, const N: usize> {
  array: [T; N],
}

impl<T, const N: usize> ArrayWrapper<T, N> {
  /// Wraps `array` into this structure.
  pub fn new(array: [T; N]) -> Self {
    Self { array }
  }
}

#[cfg(feature = "with_arrayvec")]
unsafe impl<T, const N: usize> arrayvec::Array for ArrayWrapper<T, N> {
  type Index = usize;
  type Item = T;

  const CAPACITY: usize = N;

  fn as_slice(&self) -> &[Self::Item] {
    &self.array
  }

  fn as_mut_slice(&mut self) -> &mut [Self::Item] {
    &mut self.array
  }
}

#[cfg(feature = "with_smallvec")]
unsafe impl<T, const N: usize> smallvec::Array for ArrayWrapper<T, N> {
  type Item = T;

  fn size() -> usize {
    N
  }
}

#[cfg(feature = "with_serde")]
impl<'de, T, const N: usize> Deserialize<'de> for ArrayWrapper<T, N>
where
  T: Deserialize<'de> + 'de,
{
  fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
  where
    D: Deserializer<'de>,
  {
    use core::marker::PhantomData;
    use serde::de::{Error, SeqAccess, Visitor};

    struct ArrayWrapperVisitor<'de, T, const N: usize>(PhantomData<&'de [T; N]>);

    impl<'de, T, const N: usize> Visitor<'de> for ArrayWrapperVisitor<'de, T, N>
    where
      T: Deserialize<'de>,
    {
      type Value = ArrayWrapper<T, N>;

      fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(formatter, "an array with no more than {} items", N)
      }

      fn visit_seq<SA>(self, mut seq: SA) -> Result<Self::Value, SA::Error>
      where
        SA: SeqAccess<'de>,
      {
        let array = unsafe {
          let mut array: core::mem::MaybeUninit<[T; N]> = core::mem::MaybeUninit::uninit();
          for (idx, value_ptr) in (&mut *array.as_mut_ptr()).iter_mut().enumerate() {
            if let Some(value) = seq.next_element()? {
              core::ptr::write(value_ptr, value);
            } else {
              return Err(SA::Error::invalid_length(idx, &self));
            }
          }
          array.assume_init()
        };
        Ok(ArrayWrapper { array })
      }
    }

    deserializer.deserialize_seq(ArrayWrapperVisitor::<T, N>(PhantomData))
  }
}

#[cfg(feature = "with_serde")]
impl<T, const N: usize> Serialize for ArrayWrapper<T, N>
where
  T: Serialize,
{
  fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
  where
    S: Serializer,
  {
    serializer.collect_seq(self)
  }
}

impl<T, const N: usize> AsRef<[T]> for ArrayWrapper<T, N> {
  #[inline]
  fn as_ref(&self) -> &[T] {
    &self.array
  }
}

impl<T, const N: usize> AsRef<[T; N]> for ArrayWrapper<T, N> {
  #[inline]
  fn as_ref(&self) -> &[T; N] {
    &self.array
  }
}

impl<T, const N: usize> AsMut<[T]> for ArrayWrapper<T, N> {
  fn as_mut(&mut self) -> &mut [T] {
    &mut self.array
  }
}

impl<T, const N: usize> AsMut<[T; N]> for ArrayWrapper<T, N> {
  #[inline]
  fn as_mut(&mut self) -> &mut [T; N] {
    &mut self.array
  }
}

impl<T, const N: usize> Borrow<[T]> for ArrayWrapper<T, N> {
  #[inline]
  fn borrow(&self) -> &[T] {
    &self.array
  }
}

impl<T, const N: usize> Borrow<[T]> for &'_ ArrayWrapper<T, N> {
  #[inline]
  fn borrow(&self) -> &[T] {
    &self.array
  }
}

impl<T, const N: usize> Borrow<[T; N]> for ArrayWrapper<T, N> {
  #[inline]
  fn borrow(&self) -> &[T; N] {
    &self.array
  }
}

impl<T, const N: usize> BorrowMut<[T]> for ArrayWrapper<T, N> {
  #[inline]
  fn borrow_mut(&mut self) -> &mut [T] {
    &mut self.array
  }
}

impl<T, const N: usize> BorrowMut<[T; N]> for ArrayWrapper<T, N> {
  #[inline]
  fn borrow_mut(&mut self) -> &mut [T; N] {
    &mut self.array
  }
}

impl<T, const N: usize> Clone for ArrayWrapper<T, N>
where
  T: Clone,
{
  #[inline]
  fn clone(&self) -> Self {
    Self { array: self.array.clone() }
  }
}

impl<T, const N: usize> Copy for ArrayWrapper<T, N> where T: Copy {}

impl<T, const N: usize> Default for ArrayWrapper<T, N>
where
  T: Default,
{
  #[inline]
  fn default() -> Self {
    ArrayWrapper { array: create_array(|_| T::default()) }
  }
}

impl<T, const N: usize> Deref for ArrayWrapper<T, N> {
  type Target = [T; N];
  #[inline]
  fn deref(&self) -> &Self::Target {
    &self.array
  }
}

impl<T, const N: usize> DerefMut for ArrayWrapper<T, N> {
  #[inline]
  fn deref_mut(&mut self) -> &mut [T; N] {
    &mut self.array
  }
}

impl<T, const N: usize> Eq for ArrayWrapper<T, N> where T: Eq {}

impl<T, const N: usize> From<[T; N]> for ArrayWrapper<T, N> {
  #[inline]
  fn from(from: [T; N]) -> Self {
    Self { array: from }
  }
}

impl<T, const N: usize> From<ArrayWrapper<T, N>> for [T; N] {
  #[inline]
  fn from(from: ArrayWrapper<T, N>) -> Self {
    from.array
  }
}

impl<I, T, const N: usize> Index<I> for ArrayWrapper<T, N>
where
  I: SliceIndex<[T]>,
{
  type Output = <I as SliceIndex<[T]>>::Output;

  #[inline]
  fn index(&self, idx: I) -> &Self::Output {
    &self.array[idx]
  }
}

impl<I, T, const N: usize> IndexMut<I> for ArrayWrapper<T, N>
where
  I: SliceIndex<[T]>,
{
  #[inline]
  fn index_mut(&mut self, idx: I) -> &mut Self::Output {
    &mut self.array[idx]
  }
}

impl<'a, T, const N: usize> IntoIterator for &'a ArrayWrapper<T, N> {
  type Item = &'a T;
  type IntoIter = Iter<'a, T>;

  #[inline]
  fn into_iter(self) -> Self::IntoIter {
    self.array.iter()
  }
}

impl<'a, T, const N: usize> IntoIterator for &'a mut ArrayWrapper<T, N> {
  type Item = &'a mut T;
  type IntoIter = IterMut<'a, T>;

  #[inline]
  fn into_iter(self) -> Self::IntoIter {
    self.array.iter_mut()
  }
}

impl<T, const N: usize> Ord for ArrayWrapper<T, N>
where
  T: Ord,
{
  #[inline]
  fn cmp(&self, other: &Self) -> Ordering {
    self.array[..].cmp(&other.array[..])
  }
}

impl<T, const N: usize> PartialEq for ArrayWrapper<T, N>
where
  T: PartialEq,
{
  #[inline]
  fn eq(&self, other: &Self) -> bool {
    self.array[..] == other.array[..]
  }
}

impl<T, const N: usize> PartialOrd for ArrayWrapper<T, N>
where
  T: PartialOrd,
{
  #[inline]
  fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
    self.array[..].partial_cmp(&other.array[..])
  }
}

impl<T, const N: usize> fmt::Debug for ArrayWrapper<T, N>
where
  T: fmt::Debug,
{
  #[inline]
  fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
    f.debug_list().entries(&self.array[..]).finish()
  }
}