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;

/// Wrapper for C++ [std::vector](https://en.cppreference.com/w/cpp/container/vector)
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> {
	/// Create a new Vector
	pub fn new() -> Self {
		unsafe { Self::from_raw(Self::extern_new()) }
	}

	/// Create a Vector with pre-defined capacity
	pub fn with_capacity(capacity: size_t) -> Self {
		let mut out = Self::new();
		out.reserve(capacity);
		out
	}

	/// Return Vector length
	pub fn len(&self) -> size_t {
		unsafe { self.extern_len() }
	}

	/// Return true if Vector is empty
	pub fn is_empty(&self) -> bool {
		unsafe { self.extern_is_empty() }
	}

	/// Return Vector current capacity
	pub fn capacity(&self) -> size_t {
		unsafe { self.extern_capacity() }
	}

	/// Free extra capacity
	pub fn shrink_to_fit(&mut self) {
		unsafe { self.extern_shrink_to_fit() }
	}

	/// Reserve capacity for `additional` new elements
	pub fn reserve(&mut self, additional: size_t) {
		unsafe { self.extern_reserve(additional) }
	}

	/// Remove all elements
	pub fn clear(&mut self) {
		unsafe { self.extern_clear() }
	}

	/// Remove the element at the specified `index`
	pub fn remove(&mut self, index: size_t) -> Result<()> {
		vector_index_check(index, self.len())?;
		unsafe { self.extern_remove(index) }
		Ok(())
	}

	/// Swap 2 elements in the Vector
	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 push(&mut self, val: T::ArgFuncDecl) {
	// 	unsafe { self.extern_push(val.as_extern()) }
	// }
	//
	// pub fn insert(&mut self, index: size_t, val: T::ArgFuncDecl) -> crate::Result<()> {
	// 	vector_index_check(index, self.len() + 1)?;
	// 	unsafe { self.extern_insert(index, val.as_extern()) }
	// 	Ok(())
	// }
	//
	// pub fn set(&mut self, index: size_t, val: T::ArgFuncDecl) -> Result<()> {
	// 	vector_index_check(index, self.len())?;
	// 	unsafe { self.extern_set(index, val.as_extern()) }
	// 	Ok(())
	// }
	//
	// pub unsafe fn set_unchecked(&mut self, index: size_t, val: T::ArgFuncDecl) {
	// 	self.extern_set(index, val.as_extern())
	// }
	//
	/// Get element at the specified `index`
	pub fn get(&self, index: size_t) -> Result<T> {
		vector_index_check(index, self.len())?;
		unsafe { self.extern_get(index) }
	}

	/// Same as `get()` but without bounds checking
	pub unsafe fn get_unchecked(&self, index: size_t) -> T {
		self.extern_get(index).unwrap() // fixme
	}

	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()
	}
}

/// Common interface for all C++ vector types generated by the crate
///
/// You'll need to import this trait to use any of the C++ vector wrappers, usually imported as
/// part of the prelude.
pub trait VectorTrait<'i>: Sized {
	type Arg;

	fn with_capacity(capacity: size_t) -> Self;

	/// Create a Vector from iterator
	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
	}

	/// Add new element
	fn push(&mut self, val: Self::Arg);

	/// Insert a new element at the specified `index`
	fn insert(&mut self, index: size_t, val: Self::Arg) -> crate::Result<()>;

	/// Set element at the specified `index`
	fn set(&mut self, index: size_t, val: Self::Arg) -> crate::Result<()>;

	/// Same as `set()` but without bounds checking
	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(())
	}
}