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
//! As the name suggests, a "function" process can be spawned just from a
//! function. Opposite of a `AbstractProcess` that requires a `struct`.

use std::any::type_name;
use std::marker::PhantomData;
use std::time::Duration;

use serde::{Deserialize, Serialize};

use crate::host::{self, node_id, process_id};
use crate::mailbox::{MailboxError, MessageSignal, TIMEOUT};
use crate::protocol::ProtocolCapture;
use crate::serializer::{Bincode, CanSerialize};
use crate::time::TimerRef;
use crate::{LunaticError, MailboxResult, ProcessConfig, ProcessName, Tag};

/// Decides what can be turned into a process.
///
/// It's only implemented for two types: Mailbox & Protocol.
pub trait IntoProcess<M, S> {
    type Process;

    fn spawn<C>(
        capture: C,
        entry: fn(C, Self),
        name: Option<&str>,
        link: Option<Tag>,
        config: Option<&ProcessConfig>,
        node: Option<u64>,
    ) -> Result<Self::Process, LunaticError>
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>;
}

/// A marker trait expressing that a process can be spawned from this type
/// without linking.
///
/// This is used to forbid [`Protocol`](crate::protocol::Protocol) to use the
/// `spawn` functions and only allow usage of `spawn_link` functions.
pub trait NoLink {}

/// Processes are isolated units of compute.
///
/// In lunatic, all code runs inside processes. Processes run concurrently and
/// communicate via message passing.
///
/// Lunatic's processes should not be confused with operating system processes.
/// Processes in lunatic are extremely lightweight in terms of memory and CPU
/// (even compared to threads as used in many other programming languages).
/// Because of this, it is not uncommon to have tens or even hundreds of
/// thousands of processes running simultaneously.
///
/// The `Process` type allows us to spawn new processes from rust functions.
/// There are two kinds of processes:
/// 1. Mailbox based processes
/// 2. Protocol based processes
///
/// They are differentiated by the second argument of the entry function.
///
/// ### Mailbox based processes
///
/// A mailbox process takes a [`Mailbox`](crate::Mailbox) that can only receive
/// messages of one type.
///
/// # Example
///
/// ```
/// let child = Process::spawn(1, |capture, mailbox: Mailbox<i32>| {
///    assert_eq!(capture, 1);
///    assert_eq!(mailbox.receive(), 2);
/// });
///
/// child.send(2);
/// ```
///
/// Processes don't share any memory and messages sent between them need to be
/// serialized. By default, the [`Bincode`] serializer is used, but other
/// serializers that implement the [`CanSerialize`] trait can be used instead.
/// The serializer just needs to be added to the [`Mailbox`](crate::Mailbox)
/// type (e.g. `Mailbox<i32, MessagePack>`).
///
/// Processes can also be linked together using the
/// [`spawn_link`](Self::spawn_link`) function. This means that if one of them
/// fails (panics) the other will be killed too. It is always recommended to
/// spawn linked processes when they depend on each other. That way we can avoid
/// one process forever waiting on a message from another process that doesn't
/// exist anymore.
///
/// ### Protocol based processes
///
/// A protocol process takes a [`Protocol`](crate::protocol::Protocol) that can
/// define a sequence of messages that will be exchanged between two processes.
/// This is also known as a session type. The child will get a reference to the
/// protocol and the parent will get a reference to the opposite protocol.
///
/// # Example
///
/// ```
/// type AddProtocol = Recv<i32, Recv<i32, Send<i32, End>>>;
/// let child = Process::spawn(1, |capture: i32, protocol: Protocol<AddProtocol>| {
///     assert_eq!(capture, 1);
///     let (protocol, a) = protocol.receive();
///     let (protocol, b) = protocol.receive();
///     let _ = protocol.send(capture + a + b);
/// });
///
/// let child = child.send(2);
/// let child = child.send(2);
/// let (_, result) = child.receive();
/// assert_eq!(result, 5);
/// ```
///
/// The rust type system guarantees that the all messages are sent in the
/// correct order and are of correct type. Code that doesn't follow the protocol
/// would not compile.
///
/// Same as the mailbox, the protocol based process can choose another
/// serializer (e.g. `Protocol<AddProtocol, MessagePack>`).
///
/// If a protocol based process is dropped before the `End` state is reached,
/// the drop will panic.
#[derive(Serialize, Deserialize)]
pub struct Process<M, S = Bincode> {
    node_id: u64,
    id: u64,
    #[serde(skip_serializing, default)]
    serializer_type: PhantomData<(M, S)>,
}

impl<M, S> Process<M, S> {
    /// Creates a new process reference from a node_id and process_id.
    ///
    /// # Safety
    ///
    /// When creating a process from raw IDs you will need to manually specify
    /// the right types.
    pub unsafe fn new(node_id: u64, process_id: u64) -> Self {
        Self {
            node_id,
            id: process_id,
            serializer_type: PhantomData,
        }
    }

    /// Return reference to self.
    ///
    /// # Safety
    ///
    /// The right type needs to be manually specified for the deserializer to
    /// know what messages to expect.
    pub unsafe fn this() -> Self {
        Self::new(node_id(), process_id())
    }

    /// Returns `true` for processes on the local node that are running.
    ///
    /// Panics if called on a remote process.
    pub fn is_alive(&self) -> bool {
        assert_eq!(
            self.node_id(),
            host::node_id(),
            "is_alive() can only be used with local processes"
        );
        unsafe { host::api::process::exists(self.id()) != 0 }
    }

    /// Spawn a process.
    #[track_caller]
    pub fn spawn<C, T>(capture: C, entry: fn(C, T)) -> T::Process
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
        T: NoLink,
    {
        T::spawn(capture, entry, None, None, None, None).unwrap()
    }

    /// Spawn a named process.
    pub(crate) fn name_spawn<C, T>(
        name: &str,
        capture: C,
        entry: fn(C, T),
    ) -> Result<T::Process, LunaticError>
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
        T: NoLink,
    {
        T::spawn(capture, entry, Some(name), None, None, None)
    }

    /// Spawn a process on a remote node.
    #[track_caller]
    pub fn spawn_node<C, T>(node_id: u64, capture: C, entry: fn(C, T)) -> T::Process
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
        T: NoLink,
    {
        T::spawn(capture, entry, None, None, None, Some(node_id)).unwrap()
    }

    /// Spawn a named process on a remote node.
    pub(crate) fn name_spawn_node<C, T>(
        name: &str,
        node_id: u64,
        capture: C,
        entry: fn(C, T),
    ) -> Result<T::Process, LunaticError>
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
        T: NoLink,
    {
        T::spawn(capture, entry, Some(name), None, None, Some(node_id))
    }

    /// Spawn a process on a remote node.
    #[track_caller]
    pub fn spawn_node_config<C, T>(
        node_id: u64,
        config: &ProcessConfig,
        capture: C,
        entry: fn(C, T),
    ) -> T::Process
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
        T: NoLink,
    {
        T::spawn(capture, entry, None, None, Some(config), Some(node_id)).unwrap()
    }

    /// Spawn a named process on a remote node.
    pub(crate) fn name_spawn_node_config<C, T>(
        name: &str,
        node_id: u64,
        config: &ProcessConfig,
        capture: C,
        entry: fn(C, T),
    ) -> Result<T::Process, LunaticError>
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
        T: NoLink,
    {
        T::spawn(
            capture,
            entry,
            Some(name),
            None,
            Some(config),
            Some(node_id),
        )
    }

    /// Spawn a linked process.
    #[track_caller]
    pub fn spawn_link<C, T>(capture: C, entry: fn(C, T)) -> T::Process
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
    {
        T::spawn(capture, entry, None, Some(Tag::new()), None, None).unwrap()
    }

    /// Spawn a linked process with a tag.
    ///
    /// Allows the caller to provide a tag for the link.
    #[track_caller]
    pub fn spawn_link_tag<C, T>(capture: C, tag: Tag, entry: fn(C, T)) -> T::Process
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
    {
        T::spawn(capture, entry, None, Some(tag), None, None).unwrap()
    }

    /// Spawn a named linked process with a tag.
    ///
    /// Allows the caller to provide a tag for the link.
    pub(crate) fn name_spawn_link_tag<C, T>(
        name: &str,
        capture: C,
        tag: Tag,
        entry: fn(C, T),
    ) -> Result<T::Process, LunaticError>
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
    {
        T::spawn(capture, entry, Some(name), Some(tag), None, None)
    }

    /// Spawn a process with a custom configuration.
    #[track_caller]
    pub fn spawn_config<C, T>(config: &ProcessConfig, capture: C, entry: fn(C, T)) -> T::Process
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
        T: NoLink,
    {
        T::spawn(capture, entry, None, None, Some(config), None).unwrap()
    }

    /// Spawn a named process with a custom configuration.
    pub(crate) fn name_spawn_config<C, T>(
        name: &str,
        config: &ProcessConfig,
        capture: C,
        entry: fn(C, T),
    ) -> Result<T::Process, LunaticError>
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
        T: NoLink,
    {
        T::spawn(capture, entry, Some(name), None, Some(config), None)
    }

    /// Spawn a linked process with a custom configuration.
    #[track_caller]
    pub fn spawn_link_config<C, T>(
        config: &ProcessConfig,
        capture: C,
        entry: fn(C, T),
    ) -> T::Process
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
    {
        T::spawn(capture, entry, None, Some(Tag::new()), Some(config), None).unwrap()
    }

    /// Spawn a linked process with a custom configuration & provide tag for
    /// linking.
    #[track_caller]
    pub fn spawn_link_config_tag<C, T>(
        config: &ProcessConfig,
        capture: C,
        tag: Tag,
        entry: fn(C, T),
    ) -> T::Process
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
    {
        T::spawn(capture, entry, None, Some(tag), Some(config), None).unwrap()
    }

    /// Spawn a named linked process with a custom configuration & provide tag
    /// for linking.
    pub(crate) fn name_spawn_link_config_tag<C, T>(
        name: &str,
        config: &ProcessConfig,
        capture: C,
        tag: Tag,
        entry: fn(C, T),
    ) -> Result<T::Process, LunaticError>
    where
        S: CanSerialize<C> + CanSerialize<ProtocolCapture<C>>,
        T: IntoProcess<M, S>,
    {
        T::spawn(capture, entry, Some(name), Some(tag), Some(config), None)
    }

    /// Returns the process ID for the local node.
    pub fn id(&self) -> u64 {
        self.id
    }

    /// Returns the node ID.
    pub fn node_id(&self) -> u64 {
        self.node_id
    }

    /// Link process to the one currently running.
    pub fn link(&self) {
        // Don't use tags because a process' [`Mailbox`] can't differentiate between
        // regular messages and signals. Both processes should almost always die
        // when a link is broken.
        unsafe { host::api::process::link(0, self.id) };
    }

    /// Unlink processes from the caller.
    pub fn unlink(&self) {
        unsafe { host::api::process::unlink(self.id) };
    }

    /// Kill this process
    pub fn kill(&self) {
        unsafe { host::api::process::kill(self.id) };
    }

    /// Register process under a name.
    pub fn register<N: ProcessName>(&self, name: &N) {
        // Encode type information in name
        let name = process_name::<M, S>(ProcessType::Process, name.process_name());
        unsafe { host::api::registry::put(name.as_ptr(), name.len(), self.node_id, self.id) };
    }

    /// Look up a process.
    pub fn lookup<N: ProcessName + ?Sized>(name: &N) -> Option<Self> {
        let name = process_name::<M, S>(ProcessType::Process, name.process_name());
        let mut id = 0;
        let mut node_id = 0;
        let result =
            unsafe { host::api::registry::get(name.as_ptr(), name.len(), &mut node_id, &mut id) };
        if result == 0 {
            Some(Self {
                node_id,
                id,
                serializer_type: PhantomData,
            })
        } else {
            None
        }
    }
}

impl<M, S> Process<M, S>
where
    S: CanSerialize<M>,
{
    /// Send a message to the process.
    ///
    /// # Panics
    ///
    /// This function will panic if the received message can't be serialized
    /// into `M` with serializer `S`.
    pub fn send(&self, message: M) {
        // Create new message.
        unsafe { host::api::message::create_data(Tag::none().id(), 0) };
        // During serialization resources will add themselves to the message.
        S::encode(&message).unwrap();
        // Send it!
        host::send(self.node_id, self.id);
    }

    /// Send a message to the process after the specified duration has passed.
    ///
    /// # Panics
    ///
    /// This function will panic if the received message can't be serialized
    /// into `M` with serializer `S`.
    pub fn send_after(&self, message: M, duration: Duration) -> TimerRef {
        // Create new message.
        unsafe { host::api::message::create_data(Tag::none().id(), 0) };
        // During serialization resources will add themselves to the message.
        S::encode(&message).unwrap();
        // Send it!
        let timer_id =
            unsafe { host::api::timer::send_after(self.id, duration.as_millis() as u64) };
        TimerRef::new(timer_id)
    }

    /// Send message to process with a specific tag.
    ///
    /// # Panics
    ///
    /// This function will panic if the received message can't be serialized
    /// into `M` with serializer `S`.
    pub fn tag_send(&self, tag: Tag, message: M) {
        // Create new message.
        unsafe { host::api::message::create_data(tag.id(), 0) };
        // During serialization resources will add themselves to the message.
        S::encode(&message).unwrap();
        // Send it!
        host::send(self.node_id, self.id);
    }

    /// Send a message to the process with a specific tag, after the specified
    /// duration has passed.
    ///
    /// # Panics
    ///
    /// This function will panic if the received message can't be serialized
    /// into `M` with serializer `S`.
    pub fn tag_send_after(&self, tag: Tag, message: M, duration: Duration) -> TimerRef {
        // Create new message.
        unsafe { host::api::message::create_data(tag.id(), 0) };
        // During serialization resources will add themselves to the message.
        S::encode(&message).unwrap();
        // Send it!
        let timer_id =
            unsafe { host::api::timer::send_after(self.id, duration.as_millis() as u64) };
        TimerRef::new(timer_id)
    }

    /// Sends message and waits on response until timeout (if specified).
    ///
    /// # Safety
    ///
    /// The other side needs to be aware that the response needs to be sent back
    /// with the `receive_tag`. There is no way to enforce this with the type
    /// system at this level.
    ///
    /// # Panics
    ///
    /// This function will panic if the received message can't be serialized
    /// into `M` with serializer `S` or the `Response` can't be deserialized.
    #[track_caller]
    pub(crate) unsafe fn tag_send_receive<Response>(
        &self,
        send_tag: Tag,
        receive_tag: Tag,
        message: M,
        timeout: Option<Duration>,
    ) -> MailboxResult<Response>
    where
        S: CanSerialize<M>,
        S: CanSerialize<Response>,
    {
        unsafe { host::api::message::create_data(send_tag.id(), 0) };

        S::encode(&message).unwrap();
        let timeout_ms = match timeout {
            Some(timeout) => timeout.as_millis() as u64,
            None => u64::MAX,
        };

        let result =
            host::send_receive_skip_search(self.node_id, self.id, receive_tag.id(), timeout_ms);
        if result == TIMEOUT {
            MailboxResult::Err(MailboxError::TimedOut)
        } else {
            match S::decode() {
                Ok(msg) => MailboxResult::Ok(MessageSignal::Message(msg)),
                Err(_) => panic!("Could not deserialize message: {}", type_name::<Response>()),
            }
        }
    }
}

/// Processes are equal if their process id and node id are equal.
impl<M, S> PartialEq for Process<M, S> {
    fn eq(&self, other: &Self) -> bool {
        self.id() == other.id() && self.node_id() == other.node_id()
    }
}

/// Process equality comparison is an equivalence relation
impl<M, S> Eq for Process<M, S> {}

// Implement Hash explicitly to match the behavior of PartialEq
impl<M, S> std::hash::Hash for Process<M, S> {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.node_id.hash(state);
        self.id.hash(state);
    }
}

impl<M, S> std::fmt::Debug for Process<M, S> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Process")
            .field("id", &self.id())
            .field("node_id", &self.node_id())
            .finish()
    }
}

impl<M, S> Clone for Process<M, S> {
    fn clone(&self) -> Self {
        Self {
            node_id: self.node_id,
            id: self.id,
            serializer_type: self.serializer_type,
        }
    }
}

impl<M, S> Copy for Process<M, S> {}

#[derive(Clone, Copy, Debug)]
pub(crate) enum ProcessType {
    Process,
    ProcessRef,
}

impl std::fmt::Display for ProcessType {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            ProcessType::Process => write!(f, "Process"),
            ProcessType::ProcessRef => write!(f, "ProcessRef"),
        }
    }
}

pub(crate) fn process_name<M, S>(pt: ProcessType, name: &str) -> String {
    format!(
        "{}/{}/{pt}/{name}",
        std::any::type_name::<M>(),
        std::any::type_name::<S>(),
    )
}