author | alfadur |
Tue, 03 Sep 2019 23:57:06 +0300 | |
changeset 15413 | b387a51705ac |
parent 15408 | 90a79670de52 |
child 15414 | 0ef770a40e75 |
permissions | -rw-r--r-- |
15375 | 1 |
use super::common::GearId; |
2 |
use std::{ |
|
3 |
any::TypeId, |
|
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
4 |
fmt::{Debug, Error, Formatter}, |
15413 | 5 |
marker::PhantomData, |
15375 | 6 |
mem::{size_of, MaybeUninit}, |
7 |
num::NonZeroU16, |
|
15389 | 8 |
ptr::{copy_nonoverlapping, null_mut, NonNull}, |
15375 | 9 |
slice, |
10 |
}; |
|
15326 | 11 |
|
15389 | 12 |
pub trait TypeTuple: Sized { |
15394 | 13 |
fn get_types(types: &mut Vec<TypeId>); |
15413 | 14 |
} |
15 |
||
16 |
impl TypeTuple for () { |
|
17 |
fn get_types(types: &mut Vec<TypeId>) {} |
|
18 |
} |
|
19 |
||
20 |
impl<T: 'static> TypeTuple for &T { |
|
21 |
fn get_types(types: &mut Vec<TypeId>) { |
|
22 |
types.push(TypeId::of::<T>()); |
|
23 |
} |
|
24 |
} |
|
25 |
||
26 |
pub trait TypeIter: TypeTuple { |
|
15408 | 27 |
unsafe fn iter<F: FnMut(GearId, Self)>(slices: &[*mut u8], count: usize, f: F); |
15326 | 28 |
} |
29 |
||
15390 | 30 |
macro_rules! type_tuple_impl { |
31 |
($($n: literal: $t: ident),+) => { |
|
32 |
impl<$($t: 'static),+> TypeTuple for ($(&$t),+,) { |
|
15389 | 33 |
fn get_types(types: &mut Vec<TypeId>) { |
15390 | 34 |
$(types.push(TypeId::of::<$t>()));+ |
15389 | 35 |
} |
15413 | 36 |
} |
15326 | 37 |
|
15413 | 38 |
impl<$($t: 'static),+> TypeIter for ($(&$t),+,) { |
15400 | 39 |
unsafe fn iter<F: FnMut(GearId, Self)>(slices: &[*mut u8], count: usize, mut f: F) { |
15389 | 40 |
for i in 0..count { |
15401 | 41 |
f(*(*slices.get_unchecked(0) as *const GearId).add(i), |
42 |
($(&*(*slices.get_unchecked($n + 1) as *mut $t).add(i)),+,)); |
|
15389 | 43 |
} |
44 |
} |
|
45 |
} |
|
15375 | 46 |
|
15390 | 47 |
impl<$($t: 'static),+> TypeTuple for ($(&mut $t),+,) { |
15389 | 48 |
fn get_types(types: &mut Vec<TypeId>) { |
15390 | 49 |
$(types.push(TypeId::of::<$t>()));+ |
15389 | 50 |
} |
15413 | 51 |
} |
15389 | 52 |
|
15413 | 53 |
impl<$($t: 'static),+> TypeIter for ($(&mut $t),+,) { |
15400 | 54 |
unsafe fn iter<F: FnMut(GearId, Self)>(slices: &[*mut u8], count: usize, mut f: F) { |
15389 | 55 |
for i in 0..count { |
15401 | 56 |
f(*(*slices.get_unchecked(0) as *const GearId).add(i), |
57 |
($(&mut *(*slices.get_unchecked($n + 1) as *mut $t).add(i)),+,)); |
|
15389 | 58 |
} |
59 |
} |
|
15375 | 60 |
} |
61 |
} |
|
15326 | 62 |
} |
63 |
||
15390 | 64 |
type_tuple_impl!(0: A); |
65 |
type_tuple_impl!(0: A, 1: B); |
|
66 |
type_tuple_impl!(0: A, 1: B, 2: C); |
|
67 |
type_tuple_impl!(0: A, 1: B, 2: C, 3: D); |
|
68 |
type_tuple_impl!(0: A, 1: B, 2: C, 3: D, 4: E); |
|
15389 | 69 |
|
15375 | 70 |
const BLOCK_SIZE: usize = 32768; |
71 |
||
72 |
struct DataBlock { |
|
73 |
max_elements: u16, |
|
74 |
elements_count: u16, |
|
75 |
data: Box<[u8; BLOCK_SIZE]>, |
|
15380 | 76 |
component_blocks: [Option<NonNull<u8>>; 64], |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
77 |
element_sizes: Box<[u16]>, |
15326 | 78 |
} |
79 |
||
15375 | 80 |
impl Unpin for DataBlock {} |
81 |
||
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
82 |
impl Debug for DataBlock { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
83 |
fn fmt(&self, f: &mut Formatter) -> Result<(), Error> { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
84 |
write!( |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
85 |
f, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
86 |
"Block ({}/{}) {{\n", |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
87 |
self.elements_count, self.max_elements |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
88 |
)?; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
89 |
write!(f, "\tIDs: [")?; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
90 |
let id_slice = unsafe { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
91 |
slice::from_raw_parts( |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
92 |
self.data.as_ptr() as *const GearId, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
93 |
self.elements_count as usize, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
94 |
) |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
95 |
}; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
96 |
for gear_id in id_slice { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
97 |
write!(f, "{}, ", gear_id)?; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
98 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
99 |
write!(f, "]\n")?; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
100 |
for type_index in 0..self.element_sizes.len() { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
101 |
if let Some(ptr) = self.component_blocks[type_index] { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
102 |
write!(f, "\tC{}: [", type_index)?; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
103 |
let slice = unsafe { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
104 |
slice::from_raw_parts( |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
105 |
ptr.as_ptr(), |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
106 |
(self.elements_count * self.element_sizes[type_index]) as usize, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
107 |
) |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
108 |
}; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
109 |
for byte in slice { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
110 |
write!(f, "{}, ", byte)?; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
111 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
112 |
write!(f, "]\n")?; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
113 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
114 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
115 |
write!(f, "}}\n") |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
116 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
117 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
118 |
|
15375 | 119 |
impl DataBlock { |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
120 |
fn new(mask: u64, element_sizes: &[u16]) -> Self { |
15375 | 121 |
let total_size: u16 = element_sizes |
122 |
.iter() |
|
123 |
.enumerate() |
|
15380 | 124 |
.filter(|(i, _)| mask & (1 << *i as u64) != 0) |
15375 | 125 |
.map(|(_, size)| *size) |
126 |
.sum(); |
|
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
127 |
let max_elements = (BLOCK_SIZE / (total_size as usize + size_of::<GearId>())) as u16; |
15375 | 128 |
|
129 |
let mut data: Box<[u8; BLOCK_SIZE]> = |
|
15379 | 130 |
Box::new(unsafe { MaybeUninit::uninit().assume_init() }); |
15375 | 131 |
let mut blocks = [None; 64]; |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
132 |
let mut offset = size_of::<GearId>() * max_elements as usize; |
15375 | 133 |
|
15393 | 134 |
for i in 0..element_sizes.len() { |
135 |
if mask & (1 << i as u64) != 0 { |
|
15375 | 136 |
blocks[i] = Some(NonNull::new(data[offset..].as_mut_ptr()).unwrap()); |
137 |
offset += element_sizes[i] as usize * max_elements as usize; |
|
138 |
} |
|
139 |
} |
|
15326 | 140 |
Self { |
15375 | 141 |
elements_count: 0, |
142 |
max_elements, |
|
143 |
data, |
|
15380 | 144 |
component_blocks: blocks, |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
145 |
element_sizes: Box::from(element_sizes), |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
146 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
147 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
148 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
149 |
fn gear_ids(&self) -> &[GearId] { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
150 |
unsafe { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
151 |
slice::from_raw_parts( |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
152 |
self.data.as_ptr() as *const GearId, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
153 |
self.max_elements as usize, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
154 |
) |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
155 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
156 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
157 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
158 |
fn gear_ids_mut(&mut self) -> &mut [GearId] { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
159 |
unsafe { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
160 |
slice::from_raw_parts_mut( |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
161 |
self.data.as_mut_ptr() as *mut GearId, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
162 |
self.max_elements as usize, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
163 |
) |
15326 | 164 |
} |
165 |
} |
|
166 |
||
15375 | 167 |
fn is_full(&self) -> bool { |
168 |
self.elements_count == self.max_elements |
|
169 |
} |
|
15326 | 170 |
} |
171 |
||
15375 | 172 |
#[derive(Clone, Copy, Debug, Default)] |
15400 | 173 |
struct LookupEntry { |
15375 | 174 |
index: Option<NonZeroU16>, |
175 |
block_index: u16, |
|
15326 | 176 |
} |
177 |
||
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
178 |
impl LookupEntry { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
179 |
fn new(block_index: u16, index: u16) -> Self { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
180 |
Self { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
181 |
index: unsafe { Some(NonZeroU16::new_unchecked(index + 1)) }, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
182 |
block_index, |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
183 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
184 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
185 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
186 |
|
15408 | 187 |
#[derive(Copy, Clone, Eq, PartialEq, Debug)] |
188 |
struct BlockMask { |
|
189 |
type_mask: u64, |
|
190 |
tag_mask: u64, |
|
191 |
} |
|
192 |
||
193 |
impl BlockMask { |
|
194 |
#[inline] |
|
195 |
fn new(type_mask: u64, tag_mask: u64) -> Self { |
|
196 |
Self { |
|
197 |
type_mask, |
|
198 |
tag_mask, |
|
199 |
} |
|
200 |
} |
|
201 |
||
202 |
#[inline] |
|
203 |
fn with_type(&self, type_bit: u64) -> Self { |
|
204 |
Self::new(self.type_mask | type_bit, self.tag_mask) |
|
205 |
} |
|
206 |
||
207 |
#[inline] |
|
208 |
fn with_tag(&self, tag_bit: u64) -> Self { |
|
209 |
Self::new(self.type_mask, self.tag_mask | tag_bit) |
|
210 |
} |
|
211 |
} |
|
212 |
||
15326 | 213 |
pub struct GearDataManager { |
214 |
types: Vec<TypeId>, |
|
15408 | 215 |
tags: Vec<TypeId>, |
15375 | 216 |
blocks: Vec<DataBlock>, |
15408 | 217 |
block_masks: Vec<BlockMask>, |
15375 | 218 |
element_sizes: Box<[u16; 64]>, |
219 |
lookup: Box<[LookupEntry]>, |
|
15326 | 220 |
} |
221 |
||
222 |
impl GearDataManager { |
|
223 |
pub fn new() -> Self { |
|
224 |
Self { |
|
15408 | 225 |
types: Vec::with_capacity(64), |
226 |
tags: Vec::with_capacity(64), |
|
15375 | 227 |
blocks: vec![], |
228 |
block_masks: vec![], |
|
229 |
element_sizes: Box::new([0; 64]), |
|
230 |
lookup: vec![LookupEntry::default(); u16::max_value() as usize].into_boxed_slice(), |
|
231 |
} |
|
232 |
} |
|
233 |
||
234 |
#[inline] |
|
235 |
fn get_type_index<T: 'static>(&self) -> Option<usize> { |
|
236 |
let type_id = TypeId::of::<T>(); |
|
237 |
self.types.iter().position(|id| *id == type_id) |
|
238 |
} |
|
239 |
||
15408 | 240 |
#[inline] |
241 |
fn get_tag_index<T: 'static>(&self) -> Option<usize> { |
|
242 |
let type_id = TypeId::of::<T>(); |
|
243 |
self.tags.iter().position(|id| *id == type_id) |
|
244 |
} |
|
245 |
||
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
246 |
fn move_between_blocks(&mut self, src_block_index: u16, src_index: u16, dest_block_index: u16) { |
15394 | 247 |
debug_assert!(src_block_index != dest_block_index); |
248 |
let src_mask = self.block_masks[src_block_index as usize]; |
|
249 |
let dest_mask = self.block_masks[dest_block_index as usize]; |
|
15408 | 250 |
debug_assert!(src_mask.type_mask & dest_mask.type_mask == src_mask.type_mask); |
15375 | 251 |
|
15394 | 252 |
let src_block = &self.blocks[src_block_index as usize]; |
253 |
let dest_block = &self.blocks[dest_block_index as usize]; |
|
254 |
debug_assert!(src_index < src_block.elements_count); |
|
255 |
debug_assert!(!dest_block.is_full()); |
|
15379 | 256 |
|
15394 | 257 |
let dest_index = dest_block.elements_count; |
15393 | 258 |
for i in 0..self.types.len() { |
15408 | 259 |
if src_mask.type_mask & (1 << i as u64) != 0 { |
15394 | 260 |
let size = self.element_sizes[i]; |
261 |
let src_ptr = src_block.component_blocks[i].unwrap().as_ptr(); |
|
262 |
let dest_ptr = dest_block.component_blocks[i].unwrap().as_ptr(); |
|
15379 | 263 |
unsafe { |
264 |
copy_nonoverlapping( |
|
15394 | 265 |
src_ptr.add((src_index * size) as usize), |
266 |
dest_ptr.add((dest_index * size) as usize), |
|
267 |
size as usize, |
|
15379 | 268 |
); |
15394 | 269 |
if src_index < src_block.elements_count - 1 { |
270 |
copy_nonoverlapping( |
|
271 |
src_ptr.add((size * (src_block.elements_count - 1)) as usize), |
|
272 |
src_ptr.add((size * src_index) as usize), |
|
273 |
size as usize, |
|
274 |
); |
|
275 |
} |
|
15379 | 276 |
} |
277 |
} |
|
15375 | 278 |
} |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
279 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
280 |
let src_block = &mut self.blocks[src_block_index as usize]; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
281 |
let gear_id = src_block.gear_ids()[src_index as usize]; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
282 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
283 |
if src_index < src_block.elements_count - 1 { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
284 |
let relocated_index = src_block.elements_count as usize - 1; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
285 |
let gear_ids = src_block.gear_ids_mut(); |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
286 |
let relocated_id = gear_ids[relocated_index]; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
287 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
288 |
gear_ids[src_index as usize] = relocated_id; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
289 |
self.lookup[relocated_id.get() as usize - 1] = |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
290 |
LookupEntry::new(src_block_index, src_index); |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
291 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
292 |
src_block.elements_count -= 1; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
293 |
|
15394 | 294 |
let dest_block = &mut self.blocks[dest_block_index as usize]; |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
295 |
let dest_index = dest_block.elements_count; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
296 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
297 |
dest_block.gear_ids_mut()[dest_index as usize] = gear_id; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
298 |
self.lookup[gear_id.get() as usize - 1] = LookupEntry::new(dest_block_index, dest_index); |
15394 | 299 |
dest_block.elements_count += 1; |
15375 | 300 |
} |
301 |
||
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
302 |
fn add_to_block<T: Clone>(&mut self, gear_id: GearId, block_index: u16, value: &T) { |
15408 | 303 |
debug_assert!( |
304 |
self.block_masks[block_index as usize] |
|
305 |
.type_mask |
|
306 |
.count_ones() |
|
307 |
== 1 |
|
308 |
); |
|
15378 | 309 |
|
310 |
let block = &mut self.blocks[block_index as usize]; |
|
311 |
debug_assert!(block.elements_count < block.max_elements); |
|
312 |
||
313 |
unsafe { |
|
314 |
let slice = slice::from_raw_parts_mut( |
|
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
315 |
block.component_blocks[0].unwrap().as_ptr() as *mut T, |
15378 | 316 |
block.max_elements as usize, |
317 |
); |
|
318 |
*slice.get_unchecked_mut(block.elements_count as usize) = value.clone(); |
|
319 |
}; |
|
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
320 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
321 |
let index = block.elements_count; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
322 |
self.lookup[gear_id.get() as usize - 1] = LookupEntry::new(block_index, index); |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
323 |
block.gear_ids_mut()[index as usize] = gear_id; |
15378 | 324 |
block.elements_count += 1; |
15375 | 325 |
} |
326 |
||
327 |
fn remove_from_block(&mut self, block_index: u16, index: u16) { |
|
15378 | 328 |
let block = &mut self.blocks[block_index as usize]; |
329 |
debug_assert!(index < block.elements_count); |
|
330 |
||
331 |
for (i, size) in self.element_sizes.iter().cloned().enumerate() { |
|
332 |
if index < block.elements_count - 1 { |
|
15380 | 333 |
if let Some(ptr) = block.component_blocks[i] { |
15378 | 334 |
unsafe { |
15379 | 335 |
copy_nonoverlapping( |
15378 | 336 |
ptr.as_ptr() |
337 |
.add((size * (block.elements_count - 1)) as usize), |
|
338 |
ptr.as_ptr().add((size * index) as usize), |
|
339 |
size as usize, |
|
340 |
); |
|
341 |
} |
|
342 |
} |
|
343 |
} |
|
344 |
} |
|
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
345 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
346 |
self.lookup[block.gear_ids()[index as usize].get() as usize - 1] = LookupEntry::default(); |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
347 |
if index < block.elements_count - 1 { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
348 |
let relocated_index = block.elements_count as usize - 1; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
349 |
let gear_ids = block.gear_ids_mut(); |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
350 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
351 |
gear_ids[index as usize] = gear_ids[relocated_index]; |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
352 |
self.lookup[gear_ids[relocated_index].get() as usize - 1] = |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
353 |
LookupEntry::new(block_index, index); |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
354 |
} |
15378 | 355 |
block.elements_count -= 1; |
15375 | 356 |
} |
357 |
||
358 |
#[inline] |
|
15408 | 359 |
fn ensure_block(&mut self, mask: BlockMask) -> u16 { |
15375 | 360 |
if let Some(index) = self |
361 |
.block_masks |
|
362 |
.iter() |
|
363 |
.enumerate() |
|
364 |
.position(|(i, m)| *m == mask && !self.blocks[i].is_full()) |
|
365 |
{ |
|
366 |
index as u16 |
|
367 |
} else { |
|
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
368 |
self.blocks.push(DataBlock::new( |
15408 | 369 |
mask.type_mask, |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
370 |
&self.element_sizes[0..self.types.len()], |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
371 |
)); |
15380 | 372 |
self.block_masks.push(mask); |
15375 | 373 |
(self.blocks.len() - 1) as u16 |
374 |
} |
|
375 |
} |
|
376 |
||
377 |
pub fn add<T: Clone + 'static>(&mut self, gear_id: GearId, value: &T) { |
|
378 |
if let Some(type_index) = self.get_type_index::<T>() { |
|
15380 | 379 |
let type_bit = 1 << type_index as u64; |
15375 | 380 |
let entry = self.lookup[gear_id.get() as usize - 1]; |
381 |
||
382 |
if let Some(index) = entry.index { |
|
383 |
let mask = self.block_masks[entry.block_index as usize]; |
|
15408 | 384 |
let new_mask = mask.with_type(type_bit); |
15375 | 385 |
|
386 |
if new_mask != mask { |
|
15380 | 387 |
let dest_block_index = self.ensure_block(new_mask); |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
388 |
self.move_between_blocks(entry.block_index, index.get() - 1, dest_block_index); |
15375 | 389 |
} |
390 |
} else { |
|
15408 | 391 |
let dest_block_index = self.ensure_block(BlockMask::new(type_bit, 0)); |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
392 |
self.add_to_block(gear_id, dest_block_index, value); |
15375 | 393 |
} |
394 |
} else { |
|
395 |
panic!("Unregistered type") |
|
396 |
} |
|
397 |
} |
|
398 |
||
15408 | 399 |
pub fn add_tag<T: 'static>(&mut self, gear_id: GearId) { |
400 |
if let Some(tag_index) = self.get_tag_index::<T>() { |
|
401 |
let tag_bit = 1 << tag_index as u64; |
|
402 |
let entry = self.lookup[gear_id.get() as usize - 1]; |
|
403 |
||
404 |
if let Some(index) = entry.index { |
|
405 |
let mask = self.block_masks[entry.block_index as usize]; |
|
406 |
let new_mask = mask.with_tag(tag_bit); |
|
407 |
||
408 |
if new_mask != mask { |
|
409 |
let dest_block_index = self.ensure_block(new_mask); |
|
410 |
self.move_between_blocks(entry.block_index, index.get() - 1, dest_block_index); |
|
411 |
} |
|
412 |
} else { |
|
413 |
panic!("Cannot tag a gear with no data") |
|
414 |
} |
|
415 |
} else { |
|
416 |
panic!("Unregistered tag") |
|
417 |
} |
|
418 |
} |
|
419 |
||
15375 | 420 |
pub fn remove<T: 'static>(&mut self, gear_id: GearId) { |
421 |
if let Some(type_index) = self.get_type_index::<T>() { |
|
422 |
let entry = self.lookup[gear_id.get() as usize - 1]; |
|
423 |
if let Some(index) = entry.index { |
|
15408 | 424 |
let mut dest_mask = self.block_masks[entry.block_index as usize]; |
425 |
dest_mask.type_mask &= !(1 << type_index as u64); |
|
15379 | 426 |
|
15408 | 427 |
if dest_mask.type_mask == 0 { |
428 |
self.remove_from_block(entry.block_index, index.get() - 1); |
|
15379 | 429 |
} else { |
15394 | 430 |
let dest_block_index = self.ensure_block(dest_mask); |
431 |
self.move_between_blocks(entry.block_index, index.get() - 1, dest_block_index); |
|
15379 | 432 |
} |
15375 | 433 |
} |
15379 | 434 |
} else { |
435 |
panic!("Unregistered type") |
|
436 |
} |
|
437 |
} |
|
438 |
||
439 |
pub fn remove_all(&mut self, gear_id: GearId) { |
|
440 |
let entry = self.lookup[gear_id.get() as usize - 1]; |
|
441 |
if let Some(index) = entry.index { |
|
442 |
self.remove_from_block(entry.block_index, index.get() - 1); |
|
15326 | 443 |
} |
444 |
} |
|
445 |
||
446 |
pub fn register<T: 'static>(&mut self) { |
|
15378 | 447 |
debug_assert!(!std::mem::needs_drop::<T>()); |
448 |
debug_assert!(size_of::<T>() <= u16::max_value() as usize); |
|
15375 | 449 |
|
15326 | 450 |
let id = TypeId::of::<T>(); |
15408 | 451 |
if size_of::<T>() == 0 { |
452 |
if !self.tags.contains(&id) { |
|
453 |
debug_assert!(self.tags.len() <= 64); |
|
454 |
self.tags.push(id) |
|
455 |
} |
|
456 |
} else { |
|
457 |
if !self.types.contains(&id) { |
|
458 |
debug_assert!(self.types.len() <= 64); |
|
459 |
self.element_sizes[self.types.len()] = size_of::<T>() as u16; |
|
460 |
self.types.push(id); |
|
461 |
} |
|
15326 | 462 |
} |
463 |
} |
|
464 |
||
15413 | 465 |
fn run_impl<T: TypeIter + 'static, F: FnMut(GearId, T)>( |
466 |
&mut self, |
|
467 |
type_selector: u64, |
|
468 |
included_tags: u64, |
|
469 |
type_indices: &[i8], |
|
470 |
mut f: F, |
|
471 |
) { |
|
472 |
let mut slices = vec![null_mut(); type_indices.len() + 1]; |
|
15380 | 473 |
|
15375 | 474 |
for (block_index, mask) in self.block_masks.iter().enumerate() { |
15413 | 475 |
if mask.type_mask & type_selector == type_selector |
476 |
&& mask.tag_mask & included_tags == included_tags |
|
477 |
{ |
|
15400 | 478 |
let block = &mut self.blocks[block_index]; |
479 |
slices[0] = block.data.as_mut_ptr(); |
|
480 |
||
15388
d6b4586b271f
make sure component slice order corresponds to the type args
alfadur
parents:
15380
diff
changeset
|
481 |
for (arg_index, type_index) in type_indices.iter().cloned().enumerate() { |
15400 | 482 |
slices[arg_index as usize + 1] = block.component_blocks[type_index as usize] |
15389 | 483 |
.unwrap() |
484 |
.as_ptr() |
|
15375 | 485 |
} |
15380 | 486 |
|
487 |
unsafe { |
|
15400 | 488 |
T::iter(&slices[..], block.elements_count as usize, |id, x| f(id, x)); |
15380 | 489 |
} |
15326 | 490 |
} |
491 |
} |
|
492 |
} |
|
15413 | 493 |
|
494 |
pub fn iter<T: TypeIter + 'static>(&mut self) -> DataIterator<T> { |
|
495 |
let mut arg_types = Vec::with_capacity(64); |
|
496 |
T::get_types(&mut arg_types); |
|
497 |
let mut type_indices = vec![-1i8; arg_types.len()]; |
|
498 |
let mut selector = 0u64; |
|
499 |
||
500 |
for (arg_index, type_id) in arg_types.iter().enumerate() { |
|
501 |
match self.types.iter().position(|t| t == type_id) { |
|
502 |
Some(i) if selector & (1 << i as u64) != 0 => panic!("Duplicate type"), |
|
503 |
Some(i) => { |
|
504 |
type_indices[arg_index] = i as i8; |
|
505 |
selector |= 1 << i as u64; |
|
506 |
} |
|
507 |
None => panic!("Unregistered type"), |
|
508 |
} |
|
509 |
} |
|
510 |
DataIterator::new(self, selector, type_indices) |
|
511 |
} |
|
512 |
} |
|
513 |
||
514 |
pub struct DataIterator<'a, T> { |
|
515 |
data: &'a mut GearDataManager, |
|
516 |
types: u64, |
|
517 |
type_indices: Vec<i8>, |
|
518 |
tags: u64, |
|
519 |
phantom_types: PhantomData<T>, |
|
520 |
} |
|
521 |
||
522 |
impl<'a, T: TypeIter + 'static> DataIterator<'a, T> { |
|
523 |
fn new( |
|
524 |
data: &'a mut GearDataManager, |
|
525 |
types: u64, |
|
526 |
type_indices: Vec<i8>, |
|
527 |
) -> DataIterator<'a, T> { |
|
528 |
Self { |
|
529 |
data, |
|
530 |
types, |
|
531 |
type_indices, |
|
532 |
tags: 0, |
|
533 |
phantom_types: PhantomData, |
|
534 |
} |
|
535 |
} |
|
536 |
||
537 |
pub fn with_tags<U: TypeTuple + 'static>(self) -> Self { |
|
538 |
let mut tag_types = Vec::with_capacity(64); |
|
539 |
U::get_types(&mut tag_types); |
|
540 |
let mut tags = 0; |
|
541 |
||
542 |
for (i, tag) in self.data.tags.iter().enumerate() { |
|
543 |
if tag_types.contains(tag) { |
|
544 |
tags |= 1 << i as u64; |
|
545 |
} |
|
546 |
} |
|
547 |
Self { tags, ..self } |
|
548 |
} |
|
549 |
||
550 |
#[inline] |
|
551 |
pub fn run<F: FnMut(T)>(&mut self, mut f: F) { |
|
552 |
self.run_id(|_, x| f(x)) |
|
553 |
} |
|
554 |
||
555 |
#[inline] |
|
556 |
pub fn run_id<F: FnMut(GearId, T)>(&mut self, f: F) { |
|
557 |
self.data |
|
558 |
.run_impl(self.types, self.tags, &self.type_indices, f); |
|
559 |
} |
|
15326 | 560 |
} |
15375 | 561 |
|
562 |
#[cfg(test)] |
|
563 |
mod test { |
|
15380 | 564 |
use super::{super::common::GearId, GearDataManager}; |
15375 | 565 |
|
15380 | 566 |
#[derive(Clone)] |
15375 | 567 |
struct Datum { |
568 |
value: u32, |
|
569 |
} |
|
570 |
||
15392 | 571 |
#[derive(Clone)] |
15413 | 572 |
struct Tag; |
15392 | 573 |
|
15375 | 574 |
#[test] |
15380 | 575 |
fn single_component_iteration() { |
15375 | 576 |
let mut manager = GearDataManager::new(); |
577 |
manager.register::<Datum>(); |
|
15380 | 578 |
for i in 1..=5 { |
579 |
manager.add(GearId::new(i as u16).unwrap(), &Datum { value: i }); |
|
580 |
} |
|
581 |
||
582 |
let mut sum = 0; |
|
15413 | 583 |
manager.iter().run(|(d,): (&Datum,)| sum += d.value); |
15389 | 584 |
assert_eq!(sum, 15); |
15380 | 585 |
|
15413 | 586 |
manager.iter().run(|(d,): (&mut Datum,)| d.value += 1); |
587 |
manager.iter().run(|(d,): (&Datum,)| sum += d.value); |
|
15389 | 588 |
assert_eq!(sum, 35); |
15375 | 589 |
} |
15392 | 590 |
|
591 |
#[test] |
|
15413 | 592 |
fn tagged_component_iteration() { |
15392 | 593 |
let mut manager = GearDataManager::new(); |
594 |
manager.register::<Datum>(); |
|
595 |
manager.register::<Tag>(); |
|
596 |
for i in 1..=10 { |
|
597 |
let gear_id = GearId::new(i as u16).unwrap(); |
|
598 |
manager.add(gear_id, &Datum { value: i }); |
|
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
599 |
} |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
600 |
|
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
601 |
for i in 1..=10 { |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
602 |
let gear_id = GearId::new(i as u16).unwrap(); |
15392 | 603 |
if i & 1 == 0 { |
15413 | 604 |
manager.add_tag::<Tag>(gear_id); |
15392 | 605 |
} |
606 |
} |
|
607 |
||
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
608 |
let mut sum = 0; |
15413 | 609 |
manager.iter().run(|(d,): (&Datum,)| sum += d.value); |
15396
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
610 |
assert_eq!(sum, 55); |
37b632d38f14
properly update gear id lookup on block modifications
alfadur
parents:
15394
diff
changeset
|
611 |
|
15413 | 612 |
let mut tag_sum = 0; |
613 |
manager |
|
614 |
.iter() |
|
615 |
.with_tags::<&Tag>() |
|
616 |
.run(|(d,): (&Datum,)| tag_sum += d.value); |
|
617 |
assert_eq!(tag_sum, 30); |
|
15392 | 618 |
} |
15375 | 619 |
} |