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
#![doc(html_root_url = "https://docs.rs/generic-arrayvec/0.4.0")]

//! This crate provides interop between the [arrayvec] and [generic_array] crates, allowing you to
//! use generic_array's [`GenericArray`] as the backing storage for the data structures in
//! arrayvec. This lets you have vector and string types that store their contents inline, with a
//! capacity that can be referred to in generic code.
//!
//! # Usage
//!
//! This crate exposes the type aliases [`GenericArrayVec`]s and [`GenericArrayString`], which are
//! aliases of datatypes in the `arrayvec` crate. See the [`ArrayVec`] and [`ArrayString`] docs
//! to learn about their functionality. Each one also has a corresponding extension trait
//! [`GenericArrayVecExt`] and [`GenericArrayStringExt`] that provide additional constructors and
//! conversions.
//!
//! ## Example
//!
//! ```rust
//! use generic_arrayvec::arrayvec::Array;
//! use generic_arrayvec::typenum::{Prod, U2, U4};
//! use generic_arrayvec::{ArrayvecStorage, Capacity, GenericArrayVec};
//! use std::ops::Mul;
//!
//! fn main() {
//!     // Create a vector of `u8`s with a capacity of 4.
//!     let mut arr = GenericArrayVec::<u8, U4>::new();
//!     assert_eq!(arr.capacity(), 4);
//!
//!     // Add some elements to it.
//!     arr.push(1);
//!     arr.push(2);
//!     arr.push(3);
//!     assert_eq!(&arr[..], &[1, 2, 3]);
//!
//!     // To demonstrate generic bounds, we call our `double()` function, which is defined below.
//!     // This function returns a new vector with double the capacity of the input vector.
//!     // The new vector contains two copies of the input vector's items.
//!     let doubled = double(&arr);
//!     assert_eq!(&doubled[..], &[1, 2, 3, 1, 2, 3]);
//!     assert_eq!(doubled.capacity(), 8);
//! }
//!
//! fn double<N>(original: &GenericArrayVec<u8, N>) -> GenericArrayVec<u8, Prod<N, U2>>
//! where
//!     // Boilerplate bounds for the input array.
//!     N: Capacity<u8>,
//!     ArrayvecStorage<u8, N>: Array<Item = u8>,
//!
//!     // Boilerplate bounds for the output array. Note it's the same as above, but
//!     // `N` -> `Prod<N, U2>`.
//!     Prod<N, U2>: Capacity<u8>,
//!     ArrayvecStorage<u8, Prod<N, U2>>: Array<Item = u8>,
//!
//!     N: Mul<U2>,
//! {
//!     let mut new = GenericArrayVec::<u8, Prod<N, U2>>::new();
//!
//!     // These `unwrap()`s can never fail.
//!     new.try_extend_from_slice(original.as_slice()).unwrap();
//!     new.try_extend_from_slice(original.as_slice()).unwrap();
//!
//!     new
//! }
//! ```
//!
//! ## `where` bound boilerplate
//!
//! When working with a [`GenericArrayVec<T, N>`] where `T` and/or `N` are not concrete types, you
//! will need to always include certain bounds in your `where` clauses, or you will get a compile
//! error. This dummy function shows how to specify them:
//!
//! ```rust
//! use generic_arrayvec::arrayvec::Array;
//! use generic_arrayvec::{ArrayvecStorage, Capacity, GenericArrayVec};
//!
//! fn f<T, N>(_arr: GenericArrayVec<T, N>)
//! where
//!     N: Capacity<T>,
//!     ArrayvecStorage<T, N>: Array<Item = T>,
//! {
//! }
//! ```
//!
//! And this is how you specify them for [`GenericArrayString<N>`]:
//!
//! ```rust
//! use generic_arrayvec::arrayvec::Array;
//! use generic_arrayvec::{ArrayvecStorage, Capacity, GenericArrayString};
//!
//! fn f<N>(_arr: GenericArrayString<N>)
//! where
//!     N: Capacity<u8>,
//!     N::ArrayType: Copy,
//!     ArrayvecStorage<u8, N>: Array<Item = u8>,
//! {
//! }
//! ```

#![no_std]
#![warn(
    rust_2018_idioms,
    deprecated_in_future,
    macro_use_extern_crate,
    missing_debug_implementations,
    unused_qualifications
)]

pub use arrayvec;
pub use generic_array::{self, typenum};

use arrayvec::{Array, ArrayString, ArrayVec, CapacityError};
use core::str::Utf8Error;
use generic_array::typenum::{IsLess, U1, U2, U256, U4294967296, U65536};
use generic_array::{ArrayLength, GenericArray};
use plumbing::{ArrayvecStorageRaw, IndexForCapacity, PickIndexBreakpointsForCapacity};

/// Low-level implementation details you shouldn't need to touch.
pub mod plumbing;

/// A [`GenericArray`]-backed [`ArrayVec`].
pub type GenericArrayVec<T, N> = ArrayVec<ArrayvecStorage<T, N>>;

/// A [`GenericArray`]-backed [`ArrayString`].
pub type GenericArrayString<N> = ArrayString<ArrayvecStorage<u8, N>>;

/// A wrapper around a [`GenericArray`] that implements the [`Array`] trait from the arrayvec
/// crate, allowing it to be used as the backing store for [`ArrayVec`] and [`ArrayString`].
///
/// You likely won't need to interact with this type directly, except in `where` clauses when
/// working with [`GenericArrayVec`] and [`GenericArrayString`]; see their docs for details.
pub type ArrayvecStorage<T, N> = ArrayvecStorageRaw<T, N, IndexForCapacity<N>>;

/// A trait implemented by `typenum`'s unsigned integers, which lets them be used to define the
/// capacity of [`GenericArrayVec`]/[`GenericArrayString`].
pub trait Capacity<T>:
    ArrayLength<T>
    + PickIndexBreakpointsForCapacity
    + IsLess<U1>
    + IsLess<U2>
    + IsLess<U256>
    + IsLess<U65536>
    + IsLess<U4294967296>
{
}

impl<N, T> Capacity<T> for N where
    N: ArrayLength<T>
        + PickIndexBreakpointsForCapacity
        + IsLess<U1>
        + IsLess<U2>
        + IsLess<U256>
        + IsLess<U65536>
        + IsLess<U4294967296>
{
}

/// Extension trait for [`GenericArrayVec`].
///
/// See its impl on [`GenericArrayVec`] for more info.
pub trait GenericArrayVecExt<T, N>
where
    N: Capacity<T>,
    ArrayvecStorage<T, N>: Array,
{
    fn generic_from<A>(arr: A) -> GenericArrayVec<T, N>
    where
        A: Into<GenericArray<T, N>>;

    fn into_generic_array(self) -> Result<GenericArray<T, N>, Self>
    where
        Self: Sized;
}

impl<T, N> GenericArrayVecExt<T, N> for GenericArrayVec<T, N>
where
    N: Capacity<T>,
    ArrayvecStorage<T, N>: Array,
{
    /// Creates a `GenericArrayVec` from an array or `GenericArray`.
    ///
    /// ```rust
    /// use generic_arrayvec::{GenericArrayVec, GenericArrayVecExt};
    ///
    /// let vec = GenericArrayVec::generic_from([2, 4, 6, 8]);
    ///
    /// assert_eq!(vec.len(), 4);
    /// assert_eq!(vec.capacity(), 4);
    /// ```
    fn generic_from<A>(arr: A) -> GenericArrayVec<T, N>
    where
        A: Into<GenericArray<T, N>>,
    {
        ArrayVec::from(ArrayvecStorage::from(arr.into()))
    }

    /// Returns the inner `GenericArray`, if `self` is full to its capacity.
    ///
    /// **Errors** if `self` is not filled to capacity.
    ///
    /// ```rust
    /// use generic_arrayvec::typenum::U5;
    /// use generic_arrayvec::{GenericArrayVec, GenericArrayVecExt};
    ///
    /// let mut vec = GenericArrayVec::<i32, U5>::new();
    /// vec.push(0);
    /// vec.extend(1..5);
    ///
    /// let generic_array = vec.into_generic_array().unwrap();
    ///
    /// assert_eq!(&*generic_array, &[0, 1, 2, 3, 4][..]);
    /// ```
    fn into_generic_array(self) -> Result<GenericArray<T, N>, Self> {
        Ok(self.into_inner()?.into_inner())
    }
}

/// Extension trait for [`GenericArrayString`].
///
/// See its impl on [`GenericArrayString`] for more info.
pub trait GenericArrayStringExt<N>
where
    N: Capacity<u8>,
    ArrayvecStorage<u8, N>: Array<Item = u8>,

    N::ArrayType: Copy,
{
    fn generic_from(string: &str) -> Result<GenericArrayString<N>, CapacityError<&str>>;

    fn generic_from_byte_string<A>(byte_string: &A) -> Result<GenericArrayString<N>, Utf8Error>
    where
        A: Into<GenericArray<u8, N>> + AsRef<[u8]>;
}

impl<N> GenericArrayStringExt<N> for GenericArrayString<N>
where
    N: Capacity<u8>,
    ArrayvecStorage<u8, N>: Array<Item = u8>,

    N::ArrayType: Copy,
{
    /// Creates a `GenericArrayString` from a `str`.
    ///
    /// Capacity is inferred from the type parameter.
    ///
    /// **Errors** if the capacity is not large enough to fit the string.
    ///
    /// ```rust
    /// use generic_arrayvec::typenum::U10;
    /// use generic_arrayvec::{GenericArrayString, GenericArrayStringExt};
    ///
    /// let string = GenericArrayString::<U10>::generic_from("hello").unwrap();
    ///
    /// assert_eq!(string.len(), 5);
    /// assert_eq!(string.capacity(), 10);
    /// ```
    fn generic_from(string: &str) -> Result<GenericArrayString<N>, CapacityError<&str>> {
        ArrayString::from(string)
    }

    /// Creates a `GenericArrayString` from a byte string.
    ///
    /// The `GenericArrayString`'s length and capacity will be equal to the input byte string.
    ///
    /// **Errors** if the byte string is not valid UTF-8.
    ///
    /// # Examples
    ///
    /// From a byte string literal:
    ///
    /// ```rust
    /// use generic_arrayvec::{GenericArrayString, GenericArrayStringExt};
    ///
    /// let string = GenericArrayString::generic_from_byte_string(b"hello").unwrap();
    ///
    /// assert_eq!(string.len(), 5);
    /// assert_eq!(string.capacity(), 5);
    /// ```
    ///
    /// From a byte-holding `GenericArray`:
    ///
    /// ```rust
    /// use generic_arrayvec::generic_array::GenericArray;
    /// use generic_arrayvec::{GenericArrayString, GenericArrayStringExt};
    ///
    /// let arr = GenericArray::from([b'h', b'i']);
    /// let string = GenericArrayString::generic_from_byte_string(&arr).unwrap();
    ///
    /// assert_eq!(string.len(), 2);
    /// assert_eq!(string.capacity(), 2);
    /// ```
    fn generic_from_byte_string<A>(byte_string: &A) -> Result<GenericArrayString<N>, Utf8Error>
    where
        A: Into<GenericArray<u8, N>> + AsRef<[u8]>,
    {
        ArrayString::from_byte_string(&ArrayvecStorage::from(GenericArray::clone_from_slice(
            byte_string.as_ref(),
        )))
    }
}

mod private {
    #[allow(missing_debug_implementations)]
    pub enum Sealed {}
}