dvcompute 2.0.0

Discrete event simulation library (sequential simulation)
Documentation
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
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
// Copyright (c) 2020-2022  David Sorokin <davsor@mail.ru>, based in Yoshkar-Ola, Russia
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

use std::marker::PhantomData;

#[cfg(feature="cons_mode")]
use std::mem;

#[cfg(feature="cons_mode")]
use std::ptr;

#[cfg(feature="cons_mode")]
use libc::*;

use crate::simulation;
use crate::simulation::Point;
use crate::simulation::Run;

use crate::simulation::simulation::Simulation;
use crate::simulation::process::is_process_cancelled;
use crate::simulation::process::revoke_process;
use crate::simulation::process::revoke_process_boxed;
use crate::simulation::process::Process;
use crate::simulation::process::ProcessId;
use crate::simulation::process::ProcessBoxCont;
use crate::simulation::observable::disposable::*;
use crate::simulation::composite::*;

#[cfg(feature="cons_mode")]
use crate::simulation::error::*;

#[cfg(feature="cons_mode")]
use crate::simulation::internal::event_queue::*;

use dvcompute_utils::grc::Grc;

/// Additional operations.
pub mod ops;

/// Return a new `Event` computation by the specified pure value.
#[inline]
pub fn return_event<T>(val: T) -> Return<T> {
    Return { val: val }
}

/// Delay the `Event` computation.
#[inline]
pub fn delay_event<F, M>(f: F) -> Delay<F, M>
    where F: FnOnce() -> M,
          M: Event
{
    Delay { f: f, _phantom: PhantomData }
}

/// Construct a new `Event` computation by the specified function.
#[inline]
pub fn cons_event<F, T>(f: F) -> Cons<F, T>
    where F: FnOnce(&Point) -> simulation::Result<T>
{
     Cons { f: f, _phantom: PhantomData }
}

/// Enqueue an event which handler should be activated at the specified time.
#[inline]
pub fn enqueue_event(time: f64, comp: EventBox<()>) -> Enqueue {
    Enqueue { time: time, comp: comp }
}

/// Enqueue an event which handler should be activated at the specified time with the given priority.
#[inline]
pub fn enqueue_event_with_priority(time: f64, priority: isize, comp: EventBox<()>) -> EnqueueWithPriority {
    EnqueueWithPriority { time: time, priority: priority, comp: comp }
}

/// Enqueue events which handlers should be activated in the integration time points.
#[inline]
pub fn enqueue_events_with_integ_times<F>(f: F) -> EnqueueWithIntegTimes<F>
    where F: Fn() -> EventBox<()> + 'static
{
    EnqueueWithIntegTimes { f: f }
}

/// Enqueue an IO-based event which handler should be activated at the specified time.
#[inline]
pub fn enqueue_io_event(time: f64, comp: EventBox<()>) -> EnqueueIO {
    EnqueueIO { time: time, comp: comp }
}

/// Enqueue an IO-based event which handler should be activated at the specified time with the given priority.
#[inline]
pub fn enqueue_io_event_with_priority(time: f64, priority: isize, comp: EventBox<()>) -> EnqueueIOWithPriority {
    EnqueueIOWithPriority { time: time, priority: priority, comp: comp }
}

/// Enqueue IO-based events which handlers should be activated in the integration time points.
#[inline]
pub fn enqueue_io_events_with_integ_times<F>(f: F) -> EnqueueIOWithIntegTimes<F>
    where F: Fn() -> EventBox<()> + 'static
{
    EnqueueIOWithIntegTimes { f: f }
}

/// Enqueue the event which must be actuated with the current modeling time but later.
#[inline]
pub fn yield_event<M>(comp: M) -> Yield<M>
    where M: Event<Item = ()> + 'static
{
    Yield { comp: comp }
}

/// Return the current modeling time.
#[inline]
pub fn time_event() -> Time {
    Time {}
}

/// Return the current modeling time priority.
#[inline]
pub fn priority_event() -> Priority {
    Priority {}
}

/// Create a sequence of computations.
#[inline]
pub fn event_sequence<I, M>(comps: I) -> Sequence<I::IntoIter, M>
    where I: IntoIterator<Item = M>,
          M: Event
{
    Sequence { comps: comps.into_iter(), _phantom: PhantomData }
}

/// Create a sequence of computations, where the result is ignored.
#[inline]
pub fn event_sequence_<I, M>(comps: I) -> Sequence_<I::IntoIter, M>
    where I: IntoIterator<Item = M>,
          M: Event
{
    Sequence_ { comps: comps.into_iter(), _phantom: PhantomData }
}

/// Trace the computation.
#[inline]
pub fn trace_event<M>(msg: String, comp: M) -> Trace<M>
    where M: Event
{
    Trace { comp: comp, msg: msg}
}

/// The computation synchronized with the event queue.
pub trait Event {

    /// The type of the item that is returned in the current modeling time.
    type Item;

    /// Call the `Event` computation in the current modeling time.
    #[doc(hidden)]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item>;

    /// Convert to the `Process` computation.
    fn into_process(self) -> EventIntoProcess<Self>
        where Self: Sized
    {
        EventIntoProcess { comp: self }
    }

    /// Convert to the `Composite` computation.
    fn into_composite(self) -> EventIntoComposite<Self>
        where Self: Sized
    {
        EventIntoComposite { comp: self }
    }

    /// Bind the current computation with its continuation within the resulting computation.
    #[inline]
    fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
        where Self: Sized,
              U: Event,
              F: FnOnce(Self::Item) -> U,
    {
        AndThen { comp: self, f: f, _phantom: PhantomData }
    }

    /// Map the current computation using the specified transform.
    #[inline]
    fn map<B, F>(self, f: F) -> Map<Self, B, F>
        where Self: Sized,
              F: FnOnce(Self::Item) -> B,
    {
        Map { comp: self, f: f, _phantom: PhantomData }
    }

    /// Zip the current computation with another one within the resulting computation.
    #[inline]
    fn zip<U>(self, other: U) -> Zip<Self, U>
        where Self: Sized,
              U: Event
    {
        Zip { comp: self, other: other }
    }

    /// The function application.
    #[inline]
    fn ap<U, B>(self, other: U) -> Ap<Self, U, B>
        where Self: Sized,
              Self::Item: FnOnce(U::Item) -> B,
              U: Event
    {
        Ap { comp: self, other: other, _phantom: PhantomData }
    }

    /// Run the computation in the start time.
    #[inline]
    fn run_in_start_time(self) -> RunInStartTime<Self>
        where Self: Sized
    {
        RunInStartTime { comp: self, including_current_events: true }
    }

    /// Run the computation in the start time by processing the current events or not.
    #[inline]
    fn run_in_start_time_by(self, including_current_events: bool) -> RunInStartTime<Self>
        where Self: Sized
    {
        RunInStartTime { comp: self, including_current_events: including_current_events }
    }

    /// Run the computation in the stop time.
    #[inline]
    fn run_in_stop_time(self) -> RunInStopTime<Self>
        where Self: Sized
    {
        RunInStopTime { comp: self, including_current_events: true }
    }

    /// Run the computation in the stop time by processing the current events or not.
    #[inline]
    fn run_in_stop_time_by(self, including_current_events: bool) -> RunInStopTime<Self>
        where Self: Sized
    {
        RunInStopTime { comp: self, including_current_events: including_current_events }
    }

    /// Convert into a boxed value.
    #[inline]
    fn into_boxed(self) -> EventBox<Self::Item>
        where Self: Sized + 'static
    {
        EventBox::new(move |p: &Point| { self.call_event(p) })
    }
}

/// Allows converting to `Event` computations.
pub trait IntoEvent {

    /// The target computation.
    type Event: Event<Item = Self::Item>;

    /// The type of item that is returned by the computation.
    type Item;

    /// Convert to the `Event` computation.
    fn into_event(self) -> Self::Event;
}

impl<M: Event> IntoEvent for M {

    type Event = M;

    type Item = M::Item;

    #[inline]
    fn into_event(self) -> Self::Event {
        self
    }
}

/// It represents the boxed `Event` computation.
#[must_use = "computations are lazy and do nothing unless to be run"]
pub struct EventBox<T> {
    f: Box<dyn EventFnBox<T>>
}

impl<T> EventBox<T> {

    /// Create a new boxed computation.
    #[doc(hidden)]
    #[inline]
    fn new<F>(f: F) -> Self
        where F: FnOnce(&Point) -> simulation::Result<T> + 'static
    {
        EventBox {
            f: Box::new(f)
        }
    }

    /// Call the boxed function.
    #[doc(hidden)]
    #[inline]
    pub fn call_box(self, arg: (&Point,)) -> simulation::Result<T> {
        let EventBox { f } = self;
        f.call_box(arg)
    }
}

impl<T> Event for EventBox<T> {

    type Item = T;

    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item> {
        self.call_box((p,))
    }

    #[inline]
    fn into_boxed(self) -> EventBox<Self::Item>
        where Self: Sized + 'static
    {
        self
    }
}

/// A trait to support the stable version of Rust, where there is no `FnBox`.
trait EventFnBox<T> {

    /// Call the corresponding function.
    fn call_box(self: Box<Self>, args: (&Point,)) -> simulation::Result<T>;
}

impl<T, F> EventFnBox<T> for F
    where F: for<'a> FnOnce(&'a Point) -> simulation::Result<T>
{
    fn call_box(self: Box<Self>, args: (&Point,)) -> simulation::Result<T> {
        let this: Self = *self;
        this(args.0)
    }
}

/// It represents a raw trait object.
#[cfg(feature="cons_mode")]
#[repr(C)]
#[derive(Copy, Clone)]
struct EventTraitObject {

    field1: *mut c_void,
    field2: *mut c_void
}

/// A C-friendly representaton of the `Event` action.
#[cfg(feature="cons_mode")]
#[repr(C)]
pub struct EventRepr {

    /// Delete the object.
    delete: unsafe extern "C" fn(obj: *mut EventTraitObject),

    /// The callback.
    callback: unsafe extern "C" fn(obj: *mut EventTraitObject, p: *const Point) -> *mut ErrorRepr,

    /// The trait object.
    trait_object: EventTraitObject
}

#[cfg(feature="cons_mode")]
impl Drop for EventRepr {

    fn drop(&mut self) {
        unsafe {
            (self.delete)(&mut self.trait_object);
        }
    }
}

#[cfg(feature="cons_mode")]
impl EventRepr {

    /// Convert to a C-friendly representation.
    #[inline]
    pub fn into_repr(comp: EventBox<()>) -> EventRepr {
        unsafe {
            EventRepr {
                delete: delete_event_repr,
                callback: call_event_repr,
                trait_object: mem::transmute(comp)
            }
        }
    }

    /// Call the representation.
    #[inline]
    fn call_repr(mut self, p: &Point) -> *mut ErrorRepr {
        unsafe {
            let x = (self.callback)(&mut self.trait_object, p);
            mem::forget(self);
            x
        }
    }
}

/// Call the `EventBox` representation.
#[cfg(feature="cons_mode")]
unsafe extern "C" fn call_event_repr(comp: *mut EventTraitObject, p: *const Point) -> *mut ErrorRepr {
    let comp: EventBox<()> = mem::transmute(*comp);
    match comp.call_box((&*p,)) {
        Result::Ok(()) => ptr::null_mut(),
        Result::Err(e) => {
            let e = ErrorRepr::new(e);
            Box::into_raw(Box::new(e))
        }
    }
}

/// Delete the `EventBox` representation.
#[cfg(feature="cons_mode")]
unsafe extern "C" fn delete_event_repr(comp: *mut EventTraitObject) {
    let _: EventBox<()> = mem::transmute(*comp);
}

#[cfg(feature="cons_mode")]
impl Event for EventRepr {

    type Item = ();

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item> {
        unsafe {
            let e = self.call_repr(p);
            if e == ptr::null_mut() {
                Result::Ok(())
            } else {
                let e = ffi_error_repr_into_error(e);
                Result::Err(e)
            }
        }
    }
}

/// A thin wrapper representaton of the `Event` action.
#[cfg(any(feature="seq_mode", feature="wasm_mode"))]
pub struct EventRepr {

    /// The computation itself.
    comp: EventBox<()>
}

#[cfg(any(feature="seq_mode", feature="wasm_mode"))]
impl EventRepr {

    /// Convert to the representation.
    #[inline]
    pub fn into_repr(comp: EventBox<()>) -> EventRepr {
        EventRepr { comp: comp }
    }

    /// Call the representation.
    #[inline]
    fn call_repr(self, p: &Point) -> simulation::Result<()> {
        self.comp.call_event(p)
    }
}

#[cfg(any(feature="seq_mode", feature="wasm_mode"))]
impl Event for EventRepr {

    type Item = ();

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item> {
        self.call_repr(p)
    }
}

/// It represents a raw trait object.
#[cfg(feature="cons_mode")]
#[repr(C)]
#[derive(Copy, Clone)]
struct DisposableEventTraitObject {

    field1: *mut c_void,
    field2: *mut c_void
}

/// A C-friendly representaton of the `Event<DisposableBox>` computation.
#[cfg(feature="cons_mode")]
#[repr(C)]
pub struct DisposableEventRepr {

    /// Delete the object.
    delete: unsafe extern "C" fn(obj: *mut DisposableEventTraitObject),

    /// The callback.
    callback: unsafe extern "C" fn(obj: *mut DisposableEventTraitObject, p: *const Point, e: *mut *mut ErrorRepr) -> DisposableRepr,

    /// The trait object.
    trait_object: DisposableEventTraitObject
}

#[cfg(feature="cons_mode")]
impl Drop for DisposableEventRepr {

    fn drop(&mut self) {
        unsafe {
            (self.delete)(&mut self.trait_object);
        }
    }
}

#[cfg(feature="cons_mode")]
impl DisposableEventRepr {

    /// Convert to a C-friendly representation.
    #[inline]
    pub fn into_repr(comp: EventBox<DisposableRepr>) -> DisposableEventRepr {
        unsafe {
            DisposableEventRepr {
                delete: delete_disposable_event_repr,
                callback: call_disposable_event_repr,
                trait_object: mem::transmute(comp)
            }
        }
    }

    /// Call the representation.
    #[inline]
    fn call_repr(mut self, p: &Point, e: *mut *mut ErrorRepr) -> DisposableRepr {
        unsafe {
            let x = (self.callback)(&mut self.trait_object, p, e);
            mem::forget(self);
            x
        }
    }
}

/// Call the `EventBox<DisposableRepr>` representation.
#[cfg(feature="cons_mode")]
unsafe extern "C" fn call_disposable_event_repr(comp: *mut DisposableEventTraitObject, p: *const Point, e: *mut *mut ErrorRepr) -> DisposableRepr {
    let comp: EventBox<DisposableRepr> = mem::transmute(*comp);
    match comp.call_box((&*p,)) {
        Result::Ok(x) => {
            *e = ptr::null_mut();
            x
        },
        Result::Err(e0) => {
            let e0 = ErrorRepr::new(e0);
            let e0 = Box::new(e0);
            let e0 = Box::into_raw(e0);
            *e = e0;

            let x = empty_disposable();
            let x = x.into_boxed();
            let x = DisposableRepr::into_repr(x);
            x
        }
    }
}

/// Delete the `EventBox<DisposableRepr>` representation.
#[cfg(feature="cons_mode")]
unsafe extern "C" fn delete_disposable_event_repr(comp: *mut DisposableEventTraitObject) {
    let _: EventBox<DisposableRepr> = mem::transmute(*comp);
}

#[cfg(feature="cons_mode")]
impl Event for DisposableEventRepr {

    type Item = DisposableRepr;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item> {
        unsafe {
            let mut e: *mut ErrorRepr = ptr::null_mut();
            let x = self.call_repr(p, &mut e);
            if e == ptr::null_mut() {
                Result::Ok(x)
            } else {
                let e = ffi_error_repr_into_error(e);
                Result::Err(e)
            }
        }
    }
}

/// Allows creating the `Event` computation from a pure value.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Return<T> {

    /// Return a pure value, which is then transformed to the computation.
    val: T
}

impl<T> Event for Return<T> {

    type Item = T;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, _: &Point) -> simulation::Result<T> {
        let Return { val } = self;
        Result::Ok(val)
    }
}

/// Allows delaying the `Event` computation by the specified function.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Delay<F, M> {

    /// Return the computation.
    f: F,

    /// To keep the type parameter.
    _phantom: PhantomData<M>
}

impl<F, M> Event for Delay<F, M>
    where F: FnOnce() -> M,
          M: Event
{
    type Item = M::Item;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<M::Item> {
        let Delay { f, _phantom } = self;
        f().call_event(p)
    }
}

/// Allows constructing the `Event` computation by the specified function.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Cons<F, T> {

    /// The function of time point.
    f: F,

    /// To keep the type parameter.
    _phantom: PhantomData<T>
}

impl<F, T> Event for Cons<F, T>
    where F: FnOnce(&Point) -> simulation::Result<T>
{
    type Item = T;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<T> {
        let Cons { f, _phantom } = self;
        f(p)
    }
}

/// Enqueues the event which handler should be actuated at the specified time.
#[must_use = "computations are lazy and do nothing unless to be run"]
pub struct Enqueue {

    /// The time of activating the event.
    time: f64,

    /// The event handler.
    comp: EventBox<()>
}

impl Event for Enqueue {

    type Item = ();

    #[cfg(any(feature="seq_mode", feature="wasm_mode"))]
    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let Enqueue { time, comp } = self;
        let run   = p.run;
        let queue = &run.event_queue;
        let comp  = EventRepr::into_repr(comp);
        queue.enqueue_event(time, p.priority, comp, p);
        Result::Ok(())
    }

    #[cfg(feature="cons_mode")]
    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let Enqueue { time, comp } = self;
        let run   = p.run;
        let queue = run.event_queue;
        let comp  = EventRepr::into_repr(comp);
        unsafe {
            enqueue_extern_event(queue, time, p.priority, comp, p);
        }
        Result::Ok(())
    }
}

/// Enqueues the event which handler should be actuated at the specified time with the given priority.
#[must_use = "computations are lazy and do nothing unless to be run"]
pub struct EnqueueWithPriority {

    /// The time of activating the event.
    time: f64,

    /// The time priority.
    priority: isize,

    /// The event handler.
    comp: EventBox<()>
}

impl Event for EnqueueWithPriority {

    type Item = ();

    #[cfg(any(feature="seq_mode", feature="wasm_mode"))]
    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueWithPriority { time, priority, comp } = self;
        let run   = p.run;
        let queue = &run.event_queue;
        let comp  = EventRepr::into_repr(comp);
        queue.enqueue_event(time, priority, comp, p);
        Result::Ok(())
    }

    #[cfg(feature="cons_mode")]
    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueWithPriority { time, priority, comp } = self;
        let run   = p.run;
        let queue = run.event_queue;
        let comp  = EventRepr::into_repr(comp);
        unsafe {
            enqueue_extern_event(queue, time, priority, comp, p);
        }
        Result::Ok(())
    }
}

/// Enqueues the events which handlers should be actuated in the integration time points.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct EnqueueWithIntegTimes<F> {

    /// The generator of event handlers.
    f: F
}

impl<F> Event for EnqueueWithIntegTimes<F>
    where F: Fn() -> EventBox<()> + 'static
{
    type Item = ();

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueWithIntegTimes { f } = self;
        let n  = p.iteration;
        let p2 = p.with_iteration(n);
        let b  = p2.time < p.time;
        let n3 = if b { 1 + n } else { n };
        let p3 = if b { p.with_iteration(n3) } else { p2 };
        let comp = EnqueueWithIntegTimesLoop { f, iteration: p3.iteration };
        enqueue_event(p3.time, comp.into_boxed())
            .call_event(p)
    }
}

/// Enqueues the events with the integration time points in a loop.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
struct EnqueueWithIntegTimesLoop<F> {

    /// The generator of event handlers.
    f: F,

    /// The iteration number.
    iteration: usize
}

impl<F> Event for EnqueueWithIntegTimesLoop<F>
    where F: Fn() -> EventBox<()> + 'static
{
    type Item = ();

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueWithIntegTimesLoop { f, iteration } = self;
        let comp = f();
        comp.call_event(&p)?;
        let p2 = p.with_iteration(1 + iteration);
        let comp = EnqueueWithIntegTimesLoop { f, iteration: p2.iteration };
        enqueue_event(p2.time, comp.into_boxed())
            .call_event(p)
    }
}

/// Enqueues the IO-based event which handler should be actuated at the specified time.
#[must_use = "computations are lazy and do nothing unless to be run"]
pub struct EnqueueIO {

    /// The time of activating the event.
    time: f64,

    /// The event handler.
    comp: EventBox<()>
}

impl Event for EnqueueIO {

    type Item = ();

    #[cfg(any(feature="seq_mode", feature="wasm_mode"))]
    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueIO { time, comp } = self;
        let run   = p.run;
        let queue = &run.event_queue;
        let comp  = EventRepr::into_repr(comp);
        queue.enqueue_io_event(time, p.priority, comp, p);
        Result::Ok(())
    }

    #[cfg(feature="cons_mode")]
    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueIO { time, comp } = self;
        let run   = p.run;
        let queue = run.event_queue;
        let comp  = EventRepr::into_repr(comp);
        unsafe {
            enqueue_extern_io_event(queue, time, p.priority, comp, p);
        }
        Result::Ok(())
    }
}

/// Enqueues the IO-based event which handler should be actuated at the specified time with the given priority.
#[must_use = "computations are lazy and do nothing unless to be run"]
pub struct EnqueueIOWithPriority {

    /// The time of activating the event.
    time: f64,

    /// The time priority.
    priority: isize,

    /// The event handler.
    comp: EventBox<()>
}

impl Event for EnqueueIOWithPriority {

    type Item = ();

    #[cfg(any(feature="seq_mode", feature="wasm_mode"))]
    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueIOWithPriority { time, priority, comp } = self;
        let run   = p.run;
        let queue = &run.event_queue;
        let comp  = EventRepr::into_repr(comp);
        queue.enqueue_io_event(time, priority, comp, p);
        Result::Ok(())
    }

    #[cfg(feature="cons_mode")]
    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueIOWithPriority { time, priority, comp } = self;
        let run   = p.run;
        let queue = run.event_queue;
        let comp  = EventRepr::into_repr(comp);
        unsafe {
            enqueue_extern_io_event(queue, time, priority, comp, p);
        }
        Result::Ok(())
    }
}

/// Enqueues the IO-based events which handlers should be actuated in the integration time points.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct EnqueueIOWithIntegTimes<F> {

    /// The generator of event handlers.
    f: F
}

impl<F> Event for EnqueueIOWithIntegTimes<F>
    where F: Fn() -> EventBox<()> + 'static
{
    type Item = ();

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueIOWithIntegTimes { f } = self;
        let n  = p.iteration;
        let p2 = p.with_iteration(n);
        let b  = p2.time < p.time;
        let n3 = if b { 1 + n } else { n };
        let p3 = if b { p.with_iteration(n3) } else { p2 };
        let comp = EnqueueIOWithIntegTimesLoop { f, iteration: p3.iteration };
        enqueue_io_event(p3.time, comp.into_boxed())
            .call_event(p)
    }
}

/// Enqueues the IO-based events with the integration time points in a loop.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
struct EnqueueIOWithIntegTimesLoop<F> {

    /// The generator of event handlers.
    f: F,

    /// The iteration number.
    iteration: usize
}

impl<F> Event for EnqueueIOWithIntegTimesLoop<F>
    where F: Fn() -> EventBox<()> + 'static
{
    type Item = ();

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<()> {
        let EnqueueIOWithIntegTimesLoop { f, iteration } = self;
        let comp = f();
        comp.call_event(&p)?;
        let p2 = p.with_iteration(1 + iteration);
        let comp = EnqueueIOWithIntegTimesLoop { f, iteration: p2.iteration };
        enqueue_io_event(p2.time, comp.into_boxed())
            .call_event(p)
    }
}

/// The monadic bind for the `Event` computation.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct AndThen<M, U, F> {

    /// The current computation.
    comp: M,

    /// The continuation of the current computation.
    f: F,

    /// To keep the type parameter.
    _phantom: PhantomData<U>
}

impl<M, U, F> Event for AndThen<M, U, F>
    where M: Event,
          U: Event,
          F: FnOnce(M::Item) -> U,
{
    type Item = U::Item;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<U::Item> {
        let AndThen { comp, f, _phantom } = self;
        match comp.call_event(p) {
            Result::Ok(a) => {
                let m = f(a);
                m.call_event(p)
            },
            Result::Err(e) => {
                Result::Err(e)
            }
        }
    }
}

/// The functor for the `Event` computation.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Map<M, B, F> {

    /// The current computation.
    comp: M,

    /// The transform.
    f: F,

    /// To keep the type parameter.
    _phantom: PhantomData<B>
}

impl<M, B, F> Event for Map<M, B, F>
    where M: Event,
          F: FnOnce(M::Item) -> B,
{
    type Item = B;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<B> {
        let Map { comp, f, _phantom } = self;
        match comp.call_event(p) {
            Result::Ok(a) => Result::Ok(f(a)),
            Result::Err(e) => Result::Err(e)
        }
    }
}

/// The zip of two `Event` computations.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Zip<M, U> {

    /// The current computation.
    comp: M,

    /// Another computation.
    other: U,
}

impl<M, U> Event for Zip<M, U>
    where M: Event,
          U: Event
{
    type Item = (M::Item, U::Item);

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<(M::Item, U::Item)> {
        let Zip { comp, other } = self;
        comp.and_then(move |a| {
            other.map(move |b| (a, b))
        }).call_event(p)
    }
}

/// The function application for the `Event` computation.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Ap<M, U, B> {

    /// The current computation.
    comp: M,

    /// The continuation of the current computation.
    other: U,

    /// To keep the type parameter.
    _phantom: PhantomData<B>
}

impl<M, U, B> Event for Ap<M, U, B>
    where M: Event,
          U: Event,
          M::Item: FnOnce(U::Item) -> B,
{
    type Item = B;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<B> {
        let Ap { comp, other, _phantom } = self;
        comp.and_then(move |f| {
            other.map(move |a| { f(a) })
        }).call_event(p)
    }
}

/// Run the computation in the start time.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct RunInStartTime<M> {

    /// The current computation.
    comp: M,

    /// Whether to include the current events.
    including_current_events: bool
}

impl<M> Simulation for RunInStartTime<M>
    where M: Event
{
    type Item = M::Item;

    #[cfg(any(feature="seq_mode", feature="wasm_mode"))]
    #[doc(hidden)]
    #[inline]
    fn call_simulation(self, r: &Run) -> simulation::Result<M::Item> {
        let RunInStartTime { comp, including_current_events } = self;
        let p     = r.point_in_start_time();
        let queue = &r.event_queue;
        queue.run_events(including_current_events, &p)?;
        comp.call_event(&p)
    }

    #[cfg(feature="cons_mode")]
    #[doc(hidden)]
    #[inline]
    fn call_simulation(self, r: &Run) -> simulation::Result<M::Item> {
        let RunInStartTime { comp, including_current_events } = self;
        let p     = r.point_in_start_time();
        let including_current_events = if including_current_events { 1 } else { 0 };
        let e = unsafe {
            run_extern_events(including_current_events, &p)
        };
        if e == ptr::null_mut() {
            comp.call_event(&p)
        } else {
            let e = unsafe {
                ffi_error_repr_into_error(e)
            };
            Result::Err(e)
        }
    }
}

/// Run the computation in the stop time.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct RunInStopTime<M> {

    /// The current computation.
    comp: M,

    /// Whether to include the current events.
    including_current_events: bool
}

impl<M> Simulation for RunInStopTime<M>
    where M: Event
{
    type Item = M::Item;

    #[cfg(any(feature="seq_mode", feature="wasm_mode"))]
    #[doc(hidden)]
    #[inline]
    fn call_simulation(self, r: &Run) -> simulation::Result<M::Item> {
        let RunInStopTime { comp, including_current_events } = self;
        let p     = r.point_in_stop_time();
        let queue = &r.event_queue;
        queue.run_events(including_current_events, &p)?;
        comp.call_event(&p)
    }

    #[cfg(feature="cons_mode")]
    #[doc(hidden)]
    #[inline]
    fn call_simulation(self, r: &Run) -> simulation::Result<M::Item> {
        let RunInStopTime { comp, including_current_events } = self;
        let p     = r.point_in_stop_time();
        let including_current_events = if including_current_events { 1 } else { 0 };
        let e = unsafe {
            run_extern_events(including_current_events, &p)
        };
        if e == ptr::null_mut() {
            comp.call_event(&p)
        } else {
            let e = unsafe {
                ffi_error_repr_into_error(e)
            };
            Result::Err(e)
        }
    }
}

/// Returns the current simulation time.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Time {}

impl Event for Time {

    type Item = f64;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<f64> {
        Result::Ok(p.time)
    }
}

/// Returns the current simulation time priority.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Priority {}

impl Event for Priority {

    type Item = isize;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<isize> {
        Result::Ok(p.priority)
    }
}

/// Allows converting to the `Process` computation.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct EventIntoProcess<M> {

    /// The current computation.
    comp: M
}

impl<M> Process for EventIntoProcess<M>
    where M: Event
{
    type Item = M::Item;

    #[doc(hidden)]
    #[inline]
    fn call_process<C>(self, cont: C, pid: Grc<ProcessId>, p: &Point) -> simulation::Result<()>
        where C: FnOnce(simulation::Result<Self::Item>, Grc<ProcessId>, &Point) -> simulation::Result<()> + 'static
    {
        if is_process_cancelled(&pid, p) {
            revoke_process(cont, pid, p)
        } else {
            let EventIntoProcess { comp } = self;
            let t = comp.call_event(p);
            cont(t, pid, p)
        }
    }

    #[doc(hidden)]
    #[inline]
    fn call_process_boxed(self, cont: ProcessBoxCont<Self::Item>, pid: Grc<ProcessId>, p: &Point) -> simulation::Result<()> {
        if is_process_cancelled(&pid, p) {
            revoke_process_boxed(cont, pid, p)
        } else {
            let EventIntoProcess { comp } = self;
            let t = comp.call_event(p);
            cont.call_box((t, pid, p))
        }
    }
}

/// A conversion into the `Composite` computation.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct EventIntoComposite<M> {

    /// The current computation.
    comp: M
}

impl<M> Composite for EventIntoComposite<M>
    where M: Event
{
    type Item = M::Item;

    #[doc(hidden)]
    #[inline]
    fn call_composite(self, disposable: DisposableBox, p: &Point) -> simulation::Result<(M::Item, DisposableBox)> {
        let EventIntoComposite { comp } = self;
        let a = comp.call_event(p)?;
        Result::Ok((a, disposable))
    }
}

/// The sequence of computations.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Sequence<I, M> {

    /// The computations.
    comps: I,

    /// To keep the type parameter.
    _phantom: PhantomData<M>
}

impl<I, M> Event for Sequence<I, M>
    where I: Iterator<Item = M>,
          M: Event
{
    type Item = Vec<M::Item>;

    #[doc(hidden)]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item> {
        let Sequence { comps, _phantom } = self;
        let mut v = {
            match comps.size_hint() {
                (_, Some(n)) => Vec::with_capacity(n),
                (_, None) => Vec::new()
            }
        };
        for m in comps {
            match m.call_event(p) {
                Result::Ok(a) => {
                    v.push(a)
                },
                Result::Err(e) => {
                    return Result::Err(e)
                }
            }
        }
        Result::Ok(v)
    }
}

/// The sequence of computations with ignored result.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Sequence_<I, M> {

    /// The computations.
    comps: I,

    /// To keep the type parameter.
    _phantom: PhantomData<M>
}

impl<I, M> Event for Sequence_<I, M>
    where I: Iterator<Item = M>,
          M: Event
{
    type Item = ();

    #[doc(hidden)]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item> {
        let Sequence_ { comps, _phantom } = self;
        for m in comps {
            match m.call_event(p) {
                Result::Ok(_) => (),
                Result::Err(e) => return Result::Err(e)
            }
        }
        Result::Ok(())
    }
}

/// Enqueue the event which must be actuated with the current modeling time but later.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Yield<M> {

    /// The computation.
    comp: M
}

impl<M> Event for Yield<M>
    where M: Event<Item = ()> + 'static
{
    type Item = ();

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item> {
        let Yield { comp } = self;
        enqueue_event(p.time, comp.into_boxed()).call_event(p)
    }
}

/// Trace the computation.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct Trace<M> {

    /// The computation.
    comp: M,

    /// The message to print.
    msg: String
}

impl<M> Event for Trace<M>
    where M: Event
{
    type Item = M::Item;

    #[doc(hidden)]
    #[inline]
    fn call_event(self, p: &Point) -> simulation::Result<Self::Item> {
        let Trace { comp, msg } = self;
        p.trace(&msg);
        comp.call_event(p)
    }
}