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
use dfir_lang::graph::DfirGraph;

use super::{LocalDeploy, Node, ProcessSpec};

pub struct SingleProcessGraph {}

impl LocalDeploy<'_> for SingleProcessGraph {
    type Process = SingleNode;
    type Cluster = SingleNode;
    type ExternalProcess = SingleNode;
    type Meta = ();
    type GraphId = ();

    fn has_trivial_node() -> bool {
        true
    }

    fn trivial_process(_id: usize) -> Self::Process {
        SingleNode {}
    }

    fn trivial_cluster(_id: usize) -> Self::Cluster {
        SingleNode {}
    }
}

impl ProcessSpec<'_, SingleProcessGraph> for () {
    fn build(self, _id: usize, _name_hint: &str) -> SingleNode {
        SingleNode {}
    }
}

#[derive(Clone)]
pub struct SingleNode {}

impl Node for SingleNode {
    type Port = ();
    type Meta = ();
    type InstantiateEnv = ();

    fn next_port(&self) {
        panic!();
    }

    fn update_meta(&mut self, _meta: &Self::Meta) {}

    fn instantiate(
        &self,
        _env: &mut Self::InstantiateEnv,
        _meta: &mut Self::Meta,
        _graph: DfirGraph,
        _extra_stmts: Vec<syn::Stmt>,
    ) {
    }
}

pub struct MultiGraph {}

impl LocalDeploy<'_> for MultiGraph {
    type Process = MultiNode;
    type Cluster = MultiNode;
    type ExternalProcess = MultiNode;
    type Meta = ();
    type GraphId = usize;

    fn has_trivial_node() -> bool {
        true
    }

    fn trivial_process(_id: usize) -> Self::Process {
        MultiNode {}
    }

    fn trivial_cluster(_id: usize) -> Self::Cluster {
        MultiNode {}
    }
}

impl ProcessSpec<'_, MultiGraph> for () {
    fn build(self, _id: usize, _name_hint: &str) -> MultiNode {
        MultiNode {}
    }
}

#[derive(Clone)]
pub struct MultiNode {}

impl Node for MultiNode {
    type Port = ();
    type Meta = ();
    type InstantiateEnv = ();

    fn next_port(&self) {
        panic!();
    }

    fn update_meta(&mut self, _meta: &Self::Meta) {}

    fn instantiate(
        &self,
        _env: &mut Self::InstantiateEnv,
        _meta: &mut Self::Meta,
        _graph: DfirGraph,
        _extra_stmts: Vec<syn::Stmt>,
    ) {
    }
}