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
use std::{
ffi::c_void,
marker::PhantomData,
mem,
};
use libc::size_t;
pub use iter::{VectorIterator, VectorRefIterator};
pub use vector_extern::{VectorElement, VectorExtern, VectorExternCopyNonBool};
use crate::{core::Boxed, Result};
mod vector_extern;
mod iter;
pub struct Vector<T: VectorElement> where Self: VectorExtern<T> {
ptr: *mut c_void,
_d: PhantomData<T>,
}
impl<T: VectorElement> Boxed for Vector<T> where Self: VectorExtern<T> {
unsafe fn from_raw(ptr: *mut c_void) -> Self {
Self { ptr, _d: PhantomData }
}
fn into_raw(self) -> *mut c_void {
let out = self.ptr;
mem::forget(self);
out
}
fn as_raw(&self) -> *const c_void {
self.ptr
}
fn as_raw_mut(&mut self) -> *mut c_void {
self.ptr
}
}
impl<T: VectorElement> Vector<T> where Self: VectorExtern<T> {
pub fn new() -> Self {
unsafe { Self::from_raw(Self::extern_new()) }
}
pub fn with_capacity(capacity: size_t) -> Self {
let mut out = Self::new();
out.reserve(capacity);
out
}
pub fn len(&self) -> size_t {
unsafe { self.extern_len() }
}
pub fn is_empty(&self) -> bool {
unsafe { self.extern_is_empty() }
}
pub fn capacity(&self) -> size_t {
unsafe { self.extern_capacity() }
}
pub fn shrink_to_fit(&mut self) {
unsafe { self.extern_shrink_to_fit() }
}
pub fn reserve(&mut self, additional: size_t) {
unsafe { self.extern_reserve(additional) }
}
pub fn clear(&mut self) {
unsafe { self.extern_clear() }
}
pub fn remove(&mut self, index: size_t) -> Result<()> {
vector_index_check(index, self.len())?;
unsafe { self.extern_remove(index) }
Ok(())
}
pub fn swap(&mut self, index1: size_t, index2: size_t) -> Result<()> {
let len = self.len();
vector_index_check(index1, len)?;
vector_index_check(index2, len)?;
if index1 != index2 {
unsafe { self.extern_swap(index1, index2) }
}
Ok(())
}
pub fn get(&self, index: size_t) -> Result<T> {
vector_index_check(index, self.len())?;
unsafe { self.extern_get(index) }
}
pub unsafe fn get_unchecked(&self, index: size_t) -> T {
self.extern_get(index).unwrap()
}
pub fn iter(&self) -> VectorRefIterator<T> {
VectorRefIterator::new(self)
}
pub fn to_slice(&self) -> &[T] where Self: VectorExternCopyNonBool<T> {
unsafe {
::std::slice::from_raw_parts(self.extern_data(), self.len())
}
}
pub fn to_vec(&self) -> Vec<T> {
T::convert_to_vec(self)
}
}
impl<T: VectorElement> Drop for Vector<T> where Self: VectorExtern<T> {
fn drop(&mut self) {
unsafe { self.extern_delete() }
}
}
impl<T: VectorElement> IntoIterator for Vector<T> where Vector<T>: VectorExtern<T> {
type Item = T;
type IntoIter = VectorIterator<T>;
#[inline]
fn into_iter(self) -> Self::IntoIter {
Self::IntoIter::new(self)
}
}
impl<'i, T: VectorElement> IntoIterator for &'i Vector<T> where Vector<T>: VectorExtern<T> {
type Item = T;
type IntoIter = VectorRefIterator<'i, T>;
#[inline]
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
pub trait VectorTrait<'i>: Sized {
type Arg;
fn with_capacity(capacity: size_t) -> Self;
fn from_iter(s: impl IntoIterator<Item=Self::Arg>) -> Self {
let s = s.into_iter();
let (lo, hi) = s.size_hint();
let mut out = Self::with_capacity(hi.unwrap_or(lo));
s.for_each(|x| out.push(x));
out
}
fn push(&mut self, val: Self::Arg);
fn insert(&mut self, index: size_t, val: Self::Arg) -> crate::Result<()>;
fn set(&mut self, index: size_t, val: Self::Arg) -> crate::Result<()>;
unsafe fn set_unchecked(&mut self, index: size_t, val: Self::Arg);
}
#[inline(always)]
pub(crate) fn vector_index_check(index: size_t, len: size_t) -> crate::Result<()> {
if index >= len {
Err(crate::Error::new(crate::core::StsOutOfRange, format!("Index: {} out of bounds: 0..{}", index, len)))
} else {
Ok(())
}
}