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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
use super::id::{MachineID, RawID, TypedID};
use super::inbox::{DispatchablePacket, Inbox};
use super::messaging::{Fate, Message, Packet};
use super::networking::Networking;
use super::swarm::Swarm;
use super::type_registry::{ShortTypeId, TypeRegistry};
use compact::Compact;
use std::mem::size_of;
use std::panic::{catch_unwind, AssertUnwindSafe};
use std::collections::HashMap;
pub trait StorageAware: Sized {
fn typical_size() -> usize {
let size = size_of::<Self>();
if size == 0 {
1
} else {
size
}
}
}
impl<T> StorageAware for T {}
pub trait Actor: Compact + StorageAware + 'static {
type ID: TypedID;
fn id(&self) -> Self::ID;
unsafe fn set_id(&mut self, id: RawID);
fn id_as<TargetID: TraitIDFrom<Self>>(&self) -> TargetID {
TargetID::from(self.id())
}
fn local_first(world: &mut World) -> Self::ID {
unsafe { Self::ID::from_raw(world.local_first::<Self>()) }
}
fn global_first(world: &mut World) -> Self::ID {
unsafe { Self::ID::from_raw(world.global_first::<Self>()) }
}
fn local_broadcast(world: &mut World) -> Self::ID {
unsafe { Self::ID::from_raw(world.local_broadcast::<Self>()) }
}
fn global_broadcast(world: &mut World) -> Self::ID {
unsafe { Self::ID::from_raw(world.global_broadcast::<Self>()) }
}
}
pub trait TraitIDFrom<A: Actor>: TypedID {
fn from(id: <A as Actor>::ID) -> Self {
unsafe { Self::from_raw(id.as_raw()) }
}
}
struct Dispatcher {
function: Box<Fn(*const (), &mut World)>,
critical: bool,
}
const MAX_RECIPIENT_TYPES: usize = 64;
const MAX_MESSAGE_TYPES: usize = 256;
pub struct ActorSystem {
pub panic_happened: bool,
pub shutting_down: bool,
inboxes: [Option<Inbox>; MAX_RECIPIENT_TYPES],
actor_registry: TypeRegistry,
swarms: [Option<*mut u8>; MAX_RECIPIENT_TYPES],
message_registry: TypeRegistry,
dispatchers: [[Option<Dispatcher>; MAX_MESSAGE_TYPES]; MAX_RECIPIENT_TYPES],
actors_as_countables: Vec<(String, *const InstancesCountable)>,
message_statistics: [usize; MAX_MESSAGE_TYPES],
networking: Networking,
}
macro_rules! make_array {
($n:expr, $constructor:expr) => {{
let mut items: [_; $n] = ::std::mem::uninitialized();
for (i, place) in items.iter_mut().enumerate() {
::std::ptr::write(place, $constructor(i));
}
items
}};
}
impl ActorSystem {
pub fn new(networking: Networking) -> ActorSystem {
ActorSystem {
panic_happened: false,
shutting_down: false,
inboxes: unsafe { make_array!(MAX_RECIPIENT_TYPES, |_| None) },
actor_registry: TypeRegistry::new(),
message_registry: TypeRegistry::new(),
swarms: [None; MAX_RECIPIENT_TYPES],
dispatchers: unsafe {
make_array!(MAX_RECIPIENT_TYPES, |_| make_array!(
MAX_MESSAGE_TYPES,
|_| None
))
},
actors_as_countables: Vec::new(),
message_statistics: [0; MAX_MESSAGE_TYPES],
networking,
}
}
pub fn register<A: Actor>(&mut self) {
let actor_id = self.actor_registry.get_or_register::<A>();
assert!(self.inboxes[actor_id.as_usize()].is_none());
let actor_name = unsafe { ::std::intrinsics::type_name::<A>() };
self.inboxes[actor_id.as_usize()] =
Some(Inbox::new(&::chunky::Ident::from(actor_name).sub("inbox")));
assert!(self.swarms[actor_id.as_usize()].is_none());
let actor_pointer = Box::into_raw(Box::new(Swarm::<A>::new()));
self.swarms[actor_id.as_usize()] = Some(actor_pointer as *mut u8);
self.actors_as_countables.push((
self.actor_registry
.get_name(self.actor_registry.get::<A>())
.clone(),
actor_pointer,
));
}
pub fn add_handler<A: Actor, M: Message, F: Fn(&M, &mut A, &mut World) -> Fate + 'static>(
&mut self,
handler: F,
critical: bool,
) {
let actor_id = self.actor_registry.get::<A>();
let message_id = self.message_registry.get_or_register::<M>();
#[cfg_attr(feature = "cargo-clippy", allow(cast_ptr_alignment))]
let swarm_ptr =
self.swarms[actor_id.as_usize()].expect("Actor not added yet") as *mut Swarm<A>;
self.dispatchers[actor_id.as_usize()][message_id.as_usize()] = Some(Dispatcher {
function: Box::new(move |packet_ptr: *const (), world: &mut World| unsafe {
let packet = &*(packet_ptr as *const Packet<M>);
(*swarm_ptr).dispatch_packet(packet, &handler, world);
::std::ptr::drop_in_place(packet_ptr as *mut Packet<M>);
}),
critical,
});
}
pub fn add_spawner<A: Actor, M: Message, F: Fn(&M, &mut World) -> A + 'static>(
&mut self,
constructor: F,
critical: bool,
) {
let actor_id = self.actor_registry.get::<A>();
let message_id = self.message_registry.get_or_register::<M>();
#[cfg_attr(feature = "cargo-clippy", allow(cast_ptr_alignment))]
let swarm_ptr =
self.swarms[actor_id.as_usize()].expect("Actor not added yet") as *mut Swarm<A>;
self.dispatchers[actor_id.as_usize()][message_id.as_usize()] = Some(Dispatcher {
function: Box::new(move |packet_ptr: *const (), world: &mut World| unsafe {
let packet = &*(packet_ptr as *const Packet<M>);
let mut instance = constructor(&packet.message, world);
(*swarm_ptr).add_manually_with_id(&mut instance, instance.id().as_raw());
::std::mem::forget(instance);
::std::ptr::drop_in_place(packet_ptr as *mut Packet<M>);
}),
critical,
});
}
pub fn send<M: Message>(&mut self, recipient: RawID, message: M) {
let packet = Packet {
recipient_id: recipient,
message,
};
let to_here = recipient.machine == self.networking.machine_id;
let global = recipient.is_global_broadcast();
if !to_here || global {
self.networking
.enqueue(self.message_registry.get::<M>(), packet.clone());
}
if to_here || global {
if let Some(inbox) = self.inboxes[recipient.type_id.as_usize()].as_mut() {
inbox.put(packet, &self.message_registry);
} else {
panic!(
"{} has no inbox for {}",
self.actor_registry.get_name(recipient.type_id),
self.message_registry
.get_name(self.message_registry.get::<M>(),)
);
}
}
}
pub fn id<A: Actor>(&mut self) -> RawID {
RawID::new(self.short_id::<A>(), 0, self.networking.machine_id, 0)
}
fn short_id<A: Actor>(&mut self) -> ShortTypeId {
self.actor_registry.get_or_register::<A>()
}
fn single_message_cycle(&mut self) {
let mut world = World(self as *const Self as *mut Self);
for (recipient_type_idx, maybe_inbox) in self.inboxes.iter_mut().enumerate() {
if let Some(recipient_type) = ShortTypeId::new(recipient_type_idx as u16) {
if let Some(inbox) = maybe_inbox.as_mut() {
for DispatchablePacket {
message_type,
packet_ptr,
} in inbox.drain()
{
if let Some(handler) = self.dispatchers[recipient_type.as_usize()]
[message_type.as_usize()]
.as_mut()
{
if handler.critical || !self.panic_happened {
(handler.function)(packet_ptr, &mut world);
self.message_statistics[message_type.as_usize()] += 1;
}
} else {
panic!(
"Dispatcher not found ({} << {})",
self.actor_registry.get_name(recipient_type),
self.message_registry.get_name(message_type)
);
}
}
}
}
}
}
pub fn process_all_messages(&mut self) {
let result = catch_unwind(AssertUnwindSafe(|| {
for _i in 0..1000 {
self.single_message_cycle();
}
}));
if result.is_err() {
self.panic_happened = true;
}
}
pub fn world(&mut self) -> World {
World(self as *mut Self)
}
pub fn networking_connect(&mut self) {
self.networking.connect();
}
pub fn networking_send_and_receive(&mut self) {
self.networking.send_and_receive(&mut self.inboxes);
}
pub fn networking_finish_turn(&mut self) -> Option<usize> {
self.networking.finish_turn()
}
pub fn networking_machine_id(&self) -> MachineID {
self.networking.machine_id
}
pub fn networking_n_turns(&self) -> usize {
self.networking.n_turns
}
pub fn networking_debug_all_n_turns(&self) -> HashMap<MachineID, isize> {
self.networking.debug_all_n_turns()
}
pub fn get_instance_counts(&self) -> HashMap<String, usize> {
self.actors_as_countables
.iter()
.map(|&(ref actor_name, countable_ptr)| {
(actor_name.split("::").last().unwrap().replace(">", ""),
unsafe { (*countable_ptr).instance_count()})
})
.collect()
}
pub fn get_message_statistics(&self) -> HashMap<String, usize> {
self.message_statistics.iter().enumerate().filter_map(|(i, n_sent)|
if *n_sent > 0 {
let name = self.message_registry.get_name(ShortTypeId::new(i as u16).unwrap());
Some((name.to_owned(), *n_sent))
} else {
None
}
).collect()
}
pub fn reset_message_statistics(&mut self) {
self.message_statistics = [0; MAX_MESSAGE_TYPES]
}
pub fn get_queue_lengths(&self) -> HashMap<String, usize> {
#[cfg(feature = "server")]
let connection_queue_length = None;
#[cfg(feature = "browser")]
let connection_queue_length = self.networking.main_out_connection().map(|connection|
("NETWORK QUEUE".to_owned(), connection.in_queue_len())
);
self.inboxes.iter().enumerate().filter_map(|(i, maybe_inbox)| maybe_inbox.as_ref().map(|inbox| {
let actor_name = self.actor_registry.get_name(ShortTypeId::new(i as u16).unwrap());
(actor_name.to_owned(), inbox.len())
}))
.chain(connection_queue_length).collect()
}
}
pub struct World(*mut ActorSystem);
unsafe impl Sync for World {}
unsafe impl Send for World {}
impl World {
pub fn send<M: Message>(&mut self, receiver: RawID, message: M) {
unsafe { &mut *self.0 }.send(receiver, message);
}
pub fn local_first<A: Actor>(&mut self) -> RawID {
unsafe { &mut *self.0 }.id::<A>()
}
pub fn global_first<A: Actor>(&mut self) -> RawID {
let mut id = unsafe { &mut *self.0 }.id::<A>();
id.machine = MachineID(0);
id
}
pub fn local_broadcast<A: Actor>(&mut self) -> RawID {
unsafe { &mut *self.0 }.id::<A>().local_broadcast()
}
pub fn global_broadcast<A: Actor>(&mut self) -> RawID {
unsafe { &mut *self.0 }.id::<A>().global_broadcast()
}
pub fn allocate_instance_id<A: 'static + Actor>(&mut self) -> RawID {
let system: &mut ActorSystem = unsafe { &mut *self.0 };
let swarm = unsafe {
#[cfg_attr(feature = "cargo-clippy", allow(cast_ptr_alignment))]
&mut *(system.swarms[system.actor_registry.get::<A>().as_usize()]
.expect("Subactor type not found.") as *mut Swarm<A>)
};
unsafe { swarm.allocate_id(self.local_broadcast::<A>()) }
}
pub fn local_machine_id(&mut self) -> MachineID {
let system: &mut ActorSystem = unsafe { &mut *self.0 };
system.networking.machine_id
}
pub fn shutdown(&mut self) {
let system: &mut ActorSystem = unsafe { &mut *self.0 };
system.shutting_down = true;
}
}
pub trait InstancesCountable {
fn instance_count(&self) -> usize;
}
impl<T> InstancesCountable for T {
default fn instance_count(&self) -> usize {
1
}
}