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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
use hocon::Hocon;
use std::{
cell::{RefCell, UnsafeCell},
fmt,
ops::DerefMut,
panic,
sync::{atomic::AtomicU64, Arc, Mutex, Weak},
time::Duration,
};
use uuid::Uuid;
use super::*;
use crate::{
actors::TypedMsgQueue,
net::buffers::EncodeBuffer,
supervision::*,
timer::timer_manager::{ExecuteAction, ScheduledTimer, Timer, TimerManager, TimerRefFactory},
};
use rustc_hash::FxHashMap;
#[cfg(all(nightly, feature = "type_erasure"))]
use crate::utils::erased::CreateErased;
use owning_ref::{Erased, OwningRefMut};
use std::any::Any;
mod context;
pub use context::*;
mod actual_component;
pub(crate) mod lifecycle;
pub use actual_component::*;
mod system_handle;
pub use system_handle::*;
mod definition;
pub use definition::*;
mod core;
pub use self::core::*;
mod future_task;
pub use future_task::*;
#[must_use = "The Handled value must be returned from a handle or receive function in order to take effect."]
#[derive(Debug)]
pub enum Handled {
Ok,
BlockOn(BlockingFuture),
DieNow,
}
impl Handled {
pub fn block_on<CD, F>(
component: &mut CD,
fun: impl FnOnce(ComponentDefinitionAccess<CD>) -> F,
) -> Self
where
CD: ComponentDefinition + 'static,
F: std::future::Future + Send + 'static,
{
let blocking = future_task::blocking(component, fun);
Handled::BlockOn(blocking)
}
pub fn is_ok(&self) -> bool {
matches!(self, Handled::Ok)
}
}
impl Default for Handled {
fn default() -> Self {
Handled::Ok
}
}
pub trait ComponentTraits: ComponentDefinition + ActorRaw + Sized + 'static {}
impl<CD> ComponentTraits for CD where CD: ComponentDefinition + ActorRaw + Sized + 'static {}
pub trait CoreContainer: Send + Sync {
fn id(&self) -> Uuid;
fn core(&self) -> &ComponentCore;
fn execute(&self) -> SchedulingDecision;
fn system(&self) -> &KompactSystem {
self.core().system()
}
fn schedule(&self) -> ();
fn type_name(&self) -> &'static str;
fn dyn_message_queue(&self) -> &dyn DynMsgQueue;
fn enqueue_control(&self, event: ControlEvent) -> ();
}
impl fmt::Debug for dyn CoreContainer {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "CoreContainer({})", self.id())
}
}
pub trait UniqueRegistrable: DynActorRefFactory {
fn component_id(&self) -> Uuid;
}
pub trait MsgQueueContainer: CoreContainer {
type Message: MessageBounds;
fn message_queue(&self) -> &TypedMsgQueue<Self::Message>;
fn downgrade_dyn(self: Arc<Self>) -> Weak<dyn CoreContainer>;
}
pub(crate) struct FakeCoreContainer;
impl CoreContainer for FakeCoreContainer {
fn id(&self) -> Uuid {
unreachable!("FakeCoreContainer should only be used as a Sized type for `Weak::new()`!");
}
fn core(&self) -> &ComponentCore {
unreachable!("FakeCoreContainer should only be used as a Sized type for `Weak::new()`!");
}
fn execute(&self) -> SchedulingDecision {
unreachable!("FakeCoreContainer should only be used as a Sized type for `Weak::new()`!");
}
fn system(&self) -> &KompactSystem {
unreachable!("FakeCoreContainer should only be used as a Sized type for `Weak::new()`!");
}
fn schedule(&self) -> () {
unreachable!("FakeCoreContainer should only be used as a Sized type for `Weak::new()`!");
}
fn type_name(&self) -> &'static str {
unreachable!("FakeCoreContainer should only be used as a Sized type for `Weak::new()`!");
}
fn dyn_message_queue(&self) -> &dyn DynMsgQueue {
unreachable!("FakeCoreContainer should only be used as a Sized type for `Weak::new()`!");
}
fn enqueue_control(&self, _event: ControlEvent) -> () {
unreachable!("FakeCoreContainer should only be used as a Sized type for `Weak::new()`!");
}
}
pub(crate) struct ComponentMutableCore<C> {
pub(crate) definition: C,
skip: usize,
}
impl<C> ComponentMutableCore<C> {
fn from(definition: C) -> Self {
ComponentMutableCore {
definition,
skip: 0,
}
}
}
pub struct ExecuteResult {
blocking: bool,
count: usize,
skip: usize,
}
impl ExecuteResult {
pub fn new(blocking: bool, count: usize, skip: usize) -> ExecuteResult {
ExecuteResult {
blocking,
count,
skip,
}
}
}
pub trait ComponentLogging {
fn log(&self) -> &KompactLogger;
}
impl<CD> ComponentLogging for CD
where
CD: ComponentTraits + ComponentLifecycle,
{
fn log(&self) -> &KompactLogger {
self.ctx().log()
}
}
pub trait Provide<P: Port + 'static> {
fn handle(&mut self, event: P::Request) -> Handled;
}
pub trait Require<P: Port + 'static> {
fn handle(&mut self, event: P::Indication) -> Handled;
}
pub trait ProvideRef<P: Port + 'static> {
fn provided_ref(&mut self) -> ProvidedRef<P>;
fn connect_to_required(&mut self, req: RequiredRef<P>) -> ();
fn disconnect(&mut self, req: RequiredRef<P>) -> ();
}
pub trait RequireRef<P: Port + 'static> {
fn required_ref(&mut self) -> RequiredRef<P>;
fn connect_to_provided(&mut self, prov: ProvidedRef<P>) -> ();
fn disconnect(&mut self, prov: ProvidedRef<P>) -> ();
}
pub trait LockingProvideRef<P, C>
where
P: Port + 'static,
C: ComponentDefinition + Sized + 'static + Provide<P> + ProvideRef<P>,
{
fn provided_ref(&self) -> ProvidedRef<P>;
fn connect_to_required(&self, req: RequiredRef<P>) -> ProviderChannel<P, C>;
}
pub trait LockingRequireRef<P, C>
where
P: Port + 'static,
C: ComponentDefinition + Sized + 'static + Require<P> + RequireRef<P>,
{
fn required_ref(&self) -> RequiredRef<P>;
fn connect_to_provided(&self, prov: ProvidedRef<P>) -> RequirerChannel<P, C>;
}
impl<P, CD> LockingProvideRef<P, CD> for Arc<Component<CD>>
where
P: Port + 'static,
CD: ComponentTraits + ComponentLifecycle + Provide<P> + ProvideRef<P>,
{
fn provided_ref(&self) -> ProvidedRef<P> {
self.on_definition(|cd| ProvideRef::provided_ref(cd))
}
fn connect_to_required(&self, req: RequiredRef<P>) -> ProviderChannel<P, CD> {
self.on_definition(|cd| ProvideRef::connect_to_required(cd, req.clone()));
ProviderChannel::new(self, req)
}
}
impl<P, CD> LockingRequireRef<P, CD> for Arc<Component<CD>>
where
P: Port + 'static,
CD: ComponentTraits + ComponentLifecycle + Require<P> + RequireRef<P>,
{
fn required_ref(&self) -> RequiredRef<P> {
self.on_definition(|cd| RequireRef::required_ref(cd))
}
fn connect_to_provided(&self, prov: ProvidedRef<P>) -> RequirerChannel<P, CD> {
self.on_definition(|cd| RequireRef::connect_to_provided(cd, prov.clone()));
RequirerChannel::new(self, prov)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum SchedulingDecision {
Schedule,
AlreadyScheduled,
NoWork,
Blocked,
Resume,
}
impl SchedulingDecision {
pub fn or_use(self, other: SchedulingDecision) -> SchedulingDecision {
match self {
SchedulingDecision::Schedule
| SchedulingDecision::AlreadyScheduled
| SchedulingDecision::Blocked
| SchedulingDecision::Resume => self,
SchedulingDecision::NoWork => match other {
SchedulingDecision::Schedule
| SchedulingDecision::Resume
| SchedulingDecision::AlreadyScheduled => SchedulingDecision::Resume,
x => x,
},
}
}
pub fn or_from(self, other: impl Fn() -> SchedulingDecision) -> SchedulingDecision {
match self {
SchedulingDecision::Schedule
| SchedulingDecision::AlreadyScheduled
| SchedulingDecision::Blocked
| SchedulingDecision::Resume => self,
SchedulingDecision::NoWork => match other() {
SchedulingDecision::Schedule
| SchedulingDecision::Resume
| SchedulingDecision::AlreadyScheduled => SchedulingDecision::Resume,
x => x,
},
}
}
}
#[cfg(test)]
mod tests {
use crate::{component::AbstractComponent, prelude::*};
use futures::channel::oneshot;
use std::{sync::Arc, thread, time::Duration};
use std::ops::Deref;
const TIMEOUT: Duration = Duration::from_millis(3000);
#[derive(ComponentDefinition, Actor)]
struct TestComponent {
ctx: ComponentContext<TestComponent>,
}
impl TestComponent {
fn new() -> TestComponent {
TestComponent {
ctx: ComponentContext::uninitialised(),
}
}
}
ignore_lifecycle!(TestComponent);
#[test]
fn component_core_send() -> () {
let system = KompactConfig::default().build().expect("KompactSystem");
let cc = system.create(TestComponent::new);
let core = cc.core();
is_send(&core.id);
is_send(&core.system);
is_send(&core.state);
is_sync(&core.id);
is_sync(&core.system);
is_sync(&core.state);
}
fn is_send<T: Send>(_v: &T) -> () {
}
fn is_sync<T: Sync>(_v: &T) -> () {
}
#[derive(Debug, Copy, Clone)]
struct TestMessage;
impl Serialisable for TestMessage {
fn ser_id(&self) -> SerId {
Self::SER_ID
}
fn size_hint(&self) -> Option<usize> {
Some(0)
}
fn serialise(&self, _buf: &mut dyn BufMut) -> Result<(), SerError> {
Ok(())
}
fn local(self: Box<Self>) -> Result<Box<dyn Any + Send>, Box<dyn Serialisable>> {
Ok(self)
}
}
impl Deserialiser<TestMessage> for TestMessage {
const SER_ID: SerId = 42;
fn deserialise(_buf: &mut dyn Buf) -> Result<TestMessage, SerError> {
Ok(TestMessage)
}
}
#[derive(ComponentDefinition)]
struct ChildComponent {
ctx: ComponentContext<Self>,
got_message: bool,
}
impl ChildComponent {
fn new() -> Self {
ChildComponent {
ctx: ComponentContext::uninitialised(),
got_message: false,
}
}
}
ignore_lifecycle!(ChildComponent);
impl NetworkActor for ChildComponent {
type Deserialiser = TestMessage;
type Message = TestMessage;
fn receive(&mut self, _sender: Option<ActorPath>, _msg: Self::Message) -> Handled {
info!(self.log(), "Child got message");
self.got_message = true;
Handled::Ok
}
}
#[derive(Debug)]
enum ParentMessage {
GetChild(KPromise<Arc<Component<ChildComponent>>>),
}
#[derive(ComponentDefinition)]
struct ParentComponent {
ctx: ComponentContext<Self>,
alias_opt: Option<String>,
child: Option<Arc<Component<ChildComponent>>>,
}
impl ParentComponent {
fn unique() -> Self {
ParentComponent {
ctx: ComponentContext::uninitialised(),
alias_opt: None,
child: None,
}
}
fn alias(s: String) -> Self {
ParentComponent {
ctx: ComponentContext::uninitialised(),
alias_opt: Some(s),
child: None,
}
}
}
impl ComponentLifecycle for ParentComponent {
fn on_start(&mut self) -> Handled {
let child = self.ctx.system().create(ChildComponent::new);
let f = match self.alias_opt.take() {
Some(s) => self.ctx.system().register_by_alias(&child, s),
None => self.ctx.system().register(&child),
};
self.child = Some(child);
Handled::block_on(self, move |async_self| async move {
let path = f.await.expect("actor path").expect("actor path");
info!(async_self.log(), "Child was registered");
if let Some(ref child) = async_self.child {
async_self.ctx.system().start(child);
path.tell(TestMessage, async_self.deref());
} else {
unreachable!();
}
})
}
fn on_stop(&mut self) -> Handled {
let _ = self.child.take();
Handled::Ok
}
fn on_kill(&mut self) -> Handled {
let _ = self.child.take();
Handled::Ok
}
}
impl Actor for ParentComponent {
type Message = ParentMessage;
fn receive_local(&mut self, msg: Self::Message) -> Handled {
match msg {
ParentMessage::GetChild(promise) => {
if let Some(ref child) = self.child {
promise.fulfil(child.clone()).expect("fulfilled");
} else {
drop(promise);
}
}
}
Handled::Ok
}
fn receive_network(&mut self, _msg: NetMessage) -> Handled {
unimplemented!("Shouldn't be used");
}
}
#[test]
fn child_unique_registration_test() -> () {
let mut conf = KompactConfig::default();
conf.system_components(DeadletterBox::new, NetworkConfig::default().build());
let system = conf.build().expect("system");
let parent = system.create(ParentComponent::unique);
system.start(&parent);
thread::sleep(TIMEOUT);
let (p, f) = promise::<Arc<Component<ChildComponent>>>();
parent.actor_ref().tell(ParentMessage::GetChild(p));
let child = f.wait_timeout(TIMEOUT).expect("child");
let stop_f = system.stop_notify(&child);
system.stop(&parent);
stop_f.wait_timeout(TIMEOUT).expect("child didn't stop");
child.on_definition(|cd| {
assert!(cd.got_message, "child didn't get the message");
});
system.shutdown().expect("shutdown");
}
const TEST_ALIAS: &str = "test";
#[test]
fn child_alias_registration_test() -> () {
let mut conf = KompactConfig::default();
conf.system_components(DeadletterBox::new, NetworkConfig::default().build());
let system = conf.build().expect("system");
let parent = system.create(|| ParentComponent::alias(TEST_ALIAS.into()));
system.start(&parent);
thread::sleep(TIMEOUT);
let (p, f) = promise::<Arc<Component<ChildComponent>>>();
parent.actor_ref().tell(ParentMessage::GetChild(p));
let child = f.wait_timeout(TIMEOUT).expect("child");
let stop_f = system.stop_notify(&child);
system.stop(&parent);
stop_f.wait_timeout(TIMEOUT).expect("child didn't stop");
child.on_definition(|cd| {
assert!(cd.got_message, "child didn't get the message");
});
system.shutdown().expect("shutdown");
}
#[test]
fn test_dynamic_port_access() -> () {
struct A;
impl Port for A {
type Indication = u64;
type Request = String;
}
struct B;
impl Port for B {
type Indication = &'static str;
type Request = i8;
}
#[derive(ComponentDefinition, Actor)]
struct TestComp {
ctx: ComponentContext<Self>,
req_a: RequiredPort<A>,
prov_b: ProvidedPort<B>,
}
impl TestComp {
fn new() -> TestComp {
TestComp {
ctx: ComponentContext::uninitialised(),
req_a: RequiredPort::uninitialised(),
prov_b: ProvidedPort::uninitialised(),
}
}
}
ignore_lifecycle!(TestComp);
ignore_requests!(B, TestComp);
ignore_indications!(A, TestComp);
let system = KompactConfig::default().build().expect("System");
let comp = system.create(TestComp::new);
let dynamic: Arc<dyn AbstractComponent<Message = Never>> = comp;
dynamic.on_dyn_definition(|def| {
assert!(def.get_required_port::<A>().is_some());
assert!(def.get_provided_port::<A>().is_none());
assert!(def.get_required_port::<B>().is_none());
assert!(def.get_provided_port::<B>().is_some());
});
system.shutdown().expect("shutdown");
}
#[derive(Debug)]
enum BlockMe {
Now,
OnChannel(oneshot::Receiver<String>),
SpawnOff(String),
OnShutdown,
}
#[derive(ComponentDefinition)]
struct BlockingComponent {
ctx: ComponentContext<Self>,
test_string: String,
block_on_shutdown: bool,
}
impl BlockingComponent {
fn new() -> Self {
BlockingComponent {
ctx: ComponentContext::uninitialised(),
test_string: "started".to_string(),
block_on_shutdown: false,
}
}
}
impl ComponentLifecycle for BlockingComponent {
fn on_kill(&mut self) -> Handled {
if self.block_on_shutdown {
info!(self.log(), "Cleaning up before shutdown");
Handled::block_on(self, move |mut async_self| async move {
async_self.test_string = "done".to_string();
info!(async_self.log(), "Ran BlockMe::OnShutdown future");
})
} else {
Handled::Ok
}
}
}
impl Actor for BlockingComponent {
type Message = BlockMe;
fn receive_local(&mut self, msg: Self::Message) -> Handled {
match msg {
BlockMe::Now => {
info!(self.log(), "Got BlockMe::Now");
Handled::block_on(self, move |mut async_self| async move {
async_self.test_string = "done".to_string();
info!(async_self.log(), "Ran BlockMe::Now future");
})
}
BlockMe::OnChannel(receiver) => {
info!(self.log(), "Got BlockMe::OnChannel");
Handled::block_on(self, move |mut async_self| async move {
info!(async_self.log(), "Started BlockMe::OnChannel future");
let s = receiver.await;
async_self.test_string = s.expect("Some string");
info!(async_self.log(), "Completed BlockMe::OnChannel future");
})
}
BlockMe::SpawnOff(s) => {
let handle = self.spawn_off(async move { s });
Handled::block_on(self, move |mut async_self| async move {
let res = handle.await.expect("result");
async_self.test_string = res;
})
}
BlockMe::OnShutdown => {
self.block_on_shutdown = true;
Handled::Ok
}
}
}
fn receive_network(&mut self, _msg: NetMessage) -> Handled {
unimplemented!("No networking here!");
}
}
#[test]
fn test_immediate_blocking() {
let system = KompactConfig::default().build().expect("System");
let comp = system.create(BlockingComponent::new);
system
.start_notify(&comp)
.wait_timeout(TIMEOUT)
.expect("Component didn't start");
comp.actor_ref().tell(BlockMe::Now);
thread::sleep(TIMEOUT);
system
.kill_notify(comp.clone())
.wait_timeout(TIMEOUT)
.expect("Component didn't die");
comp.on_definition(|cd| {
assert_eq!(cd.test_string, "done");
});
system.shutdown().expect("shutdown");
}
#[test]
fn test_channel_blocking() {
let system = KompactConfig::default().build().expect("System");
let comp = system.create(BlockingComponent::new);
system
.start_notify(&comp)
.wait_timeout(TIMEOUT)
.expect("Component didn't start");
let (sender, receiver) = oneshot::channel();
comp.actor_ref().tell(BlockMe::OnChannel(receiver));
thread::sleep(TIMEOUT);
sender.send("gotcha".to_string()).expect("Should have sent");
thread::sleep(TIMEOUT);
system
.kill_notify(comp.clone())
.wait_timeout(TIMEOUT)
.expect("Component didn't die");
comp.on_definition(|cd| {
assert_eq!(cd.test_string, "gotcha");
});
system.shutdown().expect("shutdown");
}
#[test]
fn test_mixed_blocking() {
let system = KompactConfig::default().build().expect("System");
let comp = system.create(BlockingComponent::new);
system
.start_notify(&comp)
.wait_timeout(TIMEOUT)
.expect("Component didn't start");
let (sender, receiver) = oneshot::channel();
comp.actor_ref().tell(BlockMe::OnChannel(receiver));
thread::sleep(TIMEOUT);
comp.actor_ref().tell(BlockMe::Now);
sender.send("gotcha".to_string()).expect("Should have sent");
thread::sleep(TIMEOUT);
system
.kill_notify(comp.clone())
.wait_timeout(TIMEOUT)
.expect("Component didn't die");
comp.on_definition(|cd| {
assert_eq!(cd.test_string, "done");
});
system.shutdown().expect("shutdown");
}
#[test]
fn test_shutdown_blocking() {
let system = KompactConfig::default().build().expect("System");
let comp = system.create(BlockingComponent::new);
system
.start_notify(&comp)
.wait_timeout(TIMEOUT)
.expect("Component didn't start");
comp.actor_ref().tell(BlockMe::OnShutdown);
thread::sleep(TIMEOUT);
system
.kill_notify(comp.clone())
.wait_timeout(TIMEOUT)
.expect("Component didn't die");
comp.on_definition(|cd| {
assert_eq!(cd.test_string, "done");
});
system.shutdown().expect("shutdown");
}
#[test]
fn test_component_spawn_off() -> () {
let system = KompactConfig::default().build().expect("System");
let comp = system.create(BlockingComponent::new);
system
.start_notify(&comp)
.wait_timeout(TIMEOUT)
.expect("Component didn't start");
comp.actor_ref()
.tell(BlockMe::SpawnOff("gotcha".to_string()));
thread::sleep(TIMEOUT);
system
.kill_notify(comp.clone())
.wait_timeout(TIMEOUT)
.expect("Component didn't die");
comp.on_definition(|cd| {
assert_eq!(cd.test_string, "gotcha");
});
system.shutdown().expect("shutdown");
}
#[derive(Debug)]
enum AsyncMe {
Now,
OnChannel(oneshot::Receiver<String>),
ConcurrentMessage(oneshot::Receiver<String>),
JustAMessage(String),
}
#[derive(ComponentDefinition)]
struct AsyncComponent {
ctx: ComponentContext<Self>,
test_string: String,
}
impl AsyncComponent {
fn new() -> Self {
AsyncComponent {
ctx: ComponentContext::uninitialised(),
test_string: "started".to_string(),
}
}
}
ignore_lifecycle!(AsyncComponent);
impl Actor for AsyncComponent {
type Message = AsyncMe;
fn receive_local(&mut self, msg: Self::Message) -> Handled {
match msg {
AsyncMe::Now => {
info!(self.log(), "Got AsyncMe::Now");
self.spawn_local(move |mut async_self| async move {
async_self.test_string = "done".to_string();
info!(async_self.log(), "Ran AsyncMe::Now future");
Handled::Ok
});
Handled::Ok
}
AsyncMe::OnChannel(receiver) => {
info!(self.log(), "Got AsyncMe::OnChannel");
self.spawn_local(move |mut async_self| async move {
info!(async_self.log(), "Started AsyncMe::OnChannel future");
let s = receiver.await;
async_self.test_string = s.expect("Some string");
info!(async_self.log(), "Completed Async::OnChannel future");
Handled::Ok
});
Handled::Ok
}
AsyncMe::ConcurrentMessage(receiver) => {
info!(self.log(), "Got AsyncMe::OnChannel");
self.spawn_local(move |mut async_self| async move {
info!(async_self.log(), "Started AsyncMe::ConcurrentMessag future");
let s = receiver.await.expect("Some string");
info!(
async_self.log(),
"Got message {} as state={}", s, async_self.test_string
);
assert_eq!(
s, async_self.test_string,
"Message was not processed before future!"
);
async_self.test_string = "done".to_string();
info!(
async_self.log(),
"Completed AsyncMe::ConcurrentMessage future with state={}",
async_self.test_string
);
Handled::Ok
});
Handled::Ok
}
AsyncMe::JustAMessage(s) => {
info!(self.log(), "Got AsyncMe::JustAMessage({})", s);
self.test_string = s;
Handled::Ok
}
}
}
fn receive_network(&mut self, _msg: NetMessage) -> Handled {
unimplemented!("No networking here!");
}
}
#[test]
fn test_immediate_non_blocking() {
let system = KompactConfig::default().build().expect("System");
let comp = system.create(AsyncComponent::new);
system
.start_notify(&comp)
.wait_timeout(TIMEOUT)
.expect("Component didn't start");
comp.actor_ref().tell(AsyncMe::Now);
thread::sleep(TIMEOUT);
system
.kill_notify(comp.clone())
.wait_timeout(TIMEOUT)
.expect("Component didn't die");
comp.on_definition(|cd| {
assert_eq!(cd.test_string, "done");
});
system.shutdown().expect("shutdown");
}
#[test]
fn test_channel_non_blocking() {
let system = KompactConfig::default().build().expect("System");
let comp = system.create(AsyncComponent::new);
system
.start_notify(&comp)
.wait_timeout(TIMEOUT)
.expect("Component didn't start");
let (sender, receiver) = oneshot::channel();
comp.actor_ref().tell(AsyncMe::OnChannel(receiver));
thread::sleep(TIMEOUT);
sender.send("gotcha".to_string()).expect("Should have sent");
thread::sleep(TIMEOUT);
system
.kill_notify(comp.clone())
.wait_timeout(TIMEOUT)
.expect("Component didn't die");
comp.on_definition(|cd| {
assert_eq!(cd.test_string, "gotcha");
});
system.shutdown().expect("shutdown");
}
#[test]
fn test_concurrent_non_blocking() {
let system = KompactConfig::default().build().expect("System");
let comp = system.create(AsyncComponent::new);
system
.start_notify(&comp)
.wait_timeout(TIMEOUT)
.expect("Component didn't start");
let (sender, receiver) = oneshot::channel();
comp.actor_ref().tell(AsyncMe::ConcurrentMessage(receiver));
thread::sleep(TIMEOUT);
let msg = "gotcha";
comp.actor_ref()
.tell(AsyncMe::JustAMessage(msg.to_string()));
thread::sleep(TIMEOUT);
sender.send(msg.to_string()).expect("Should have sent");
thread::sleep(TIMEOUT);
system
.kill_notify(comp.clone())
.wait_timeout(TIMEOUT)
.expect("Component didn't die");
comp.on_definition(|cd| {
assert_eq!(cd.test_string, "done");
});
system.shutdown().expect("shutdown");
}
#[derive(Debug, Clone, Copy)]
struct CountMe;
#[derive(Debug, Clone, Copy)]
struct Counted;
#[derive(Debug, Clone, Copy)]
struct SendCount;
struct CounterPort;
impl Port for CounterPort {
type Indication = CountMe;
type Request = Counted;
}
#[derive(ComponentDefinition)]
struct CountSender {
ctx: ComponentContext<Self>,
count_port: ProvidedPort<CounterPort>,
counted: usize,
}
impl Default for CountSender {
fn default() -> Self {
CountSender {
ctx: ComponentContext::uninitialised(),
count_port: ProvidedPort::uninitialised(),
counted: 0,
}
}
}
ignore_lifecycle!(CountSender);
impl Provide<CounterPort> for CountSender {
fn handle(&mut self, _event: Counted) -> Handled {
self.counted += 1;
Handled::Ok
}
}
impl Actor for CountSender {
type Message = SendCount;
fn receive_local(&mut self, _msg: Self::Message) -> Handled {
self.count_port.trigger(CountMe);
Handled::Ok
}
fn receive_network(&mut self, _msg: NetMessage) -> Handled {
unimplemented!("No networking in this test");
}
}
#[derive(ComponentDefinition)]
struct Counter {
ctx: ComponentContext<Self>,
count_port: RequiredPort<CounterPort>,
count: usize,
}
impl Default for Counter {
fn default() -> Self {
Counter {
ctx: ComponentContext::uninitialised(),
count_port: RequiredPort::uninitialised(),
count: 0,
}
}
}
ignore_lifecycle!(Counter);
impl Require<CounterPort> for Counter {
fn handle(&mut self, _event: CountMe) -> Handled {
self.count += 1;
self.count_port.trigger(Counted);
Handled::Ok
}
}
impl Actor for Counter {
type Message = Never;
fn receive_local(&mut self, _msg: Self::Message) -> Handled {
unreachable!("Never type is empty")
}
fn receive_network(&mut self, _msg: NetMessage) -> Handled {
unimplemented!("No networking in this test");
}
}
#[test]
fn test_channel_disconnection() {
let system = KompactConfig::default().build().expect("System");
let sender = system.create(CountSender::default);
let counter1 = system.create(Counter::default);
let counter2 = system.create(Counter::default);
let channel1: Box<(dyn Channel + Send + 'static)> =
biconnect_components::<CounterPort, _, _>(&sender, &counter1)
.expect("connection")
.boxed();
let channel2 =
biconnect_components::<CounterPort, _, _>(&sender, &counter2).expect("connection");
let start_all = || {
let sender_start_f = system.start_notify(&sender);
let counter1_start_f = system.start_notify(&counter1);
let counter2_start_f = system.start_notify(&counter2);
sender_start_f
.wait_timeout(TIMEOUT)
.expect("sender started");
counter1_start_f
.wait_timeout(TIMEOUT)
.expect("counter1 started");
counter2_start_f
.wait_timeout(TIMEOUT)
.expect("counter2 started");
};
start_all();
sender.actor_ref().tell(SendCount);
thread::sleep(TIMEOUT);
let stop_all = || {
let sender_stop_f = system.stop_notify(&sender);
let counter1_stop_f = system.stop_notify(&counter1);
let counter2_stop_f = system.stop_notify(&counter2);
sender_stop_f.wait_timeout(TIMEOUT).expect("sender stopped");
counter1_stop_f
.wait_timeout(TIMEOUT)
.expect("counter1 stopped");
counter2_stop_f
.wait_timeout(TIMEOUT)
.expect("counter2 stopped");
};
stop_all();
let check_counts = |sender_expected, counter1_expected, counter2_expected| {
let sender_count = sender.on_definition(|cd| cd.counted);
assert_eq!(sender_expected, sender_count);
let counter1_count = counter1.on_definition(|cd| cd.count);
assert_eq!(counter1_expected, counter1_count);
let counter2_count = counter2.on_definition(|cd| cd.count);
assert_eq!(counter2_expected, counter2_count);
};
check_counts(2, 1, 1);
channel2.disconnect().expect("disconnect");
start_all();
sender.actor_ref().tell(SendCount);
thread::sleep(TIMEOUT);
stop_all();
check_counts(3, 2, 1);
channel1.disconnect().expect("disconnect");
start_all();
sender.actor_ref().tell(SendCount);
thread::sleep(TIMEOUT);
stop_all();
check_counts(3, 2, 1);
let sender_port: ProvidedRef<CounterPort> = sender.provided_ref();
let counter1_port: RequiredRef<CounterPort> = counter1.required_ref();
let channel1: Box<(dyn Channel + Send + 'static)> =
sender.connect_to_required(counter1_port).boxed();
let channel2 = counter2.connect_to_provided(sender_port);
start_all();
sender.actor_ref().tell(SendCount);
thread::sleep(TIMEOUT);
stop_all();
check_counts(3, 3, 1);
let counter2_port: RequiredRef<CounterPort> = counter2.required_ref();
let channel3 = sender.connect_to_required(counter2_port);
start_all();
sender.actor_ref().tell(SendCount);
thread::sleep(TIMEOUT);
stop_all();
check_counts(4, 4, 2);
channel1.disconnect().expect("disconnected");
channel2.disconnect().expect("disconnected");
channel3.disconnect().expect("disconnected");
start_all();
sender.actor_ref().tell(SendCount);
thread::sleep(TIMEOUT);
stop_all();
check_counts(4, 4, 2);
system.shutdown().expect("shutdown");
}
}