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
use async_std::task;
use async_macros::join;
use async_std::sync::{
  channel
};

use crate::functional::nat::*;
use crate::protocol::{ SendChannel };

use crate::base::{
  Protocol,
  Empty,
  Context,
  AppendContext,
  ContextLens,
  PartialSession,
  unsafe_run_session,
  unsafe_create_session,
};

/*
    Additive Conjunction, Right Rule

              cont :: Δ  ⊢ Q
    =======================================
      send_channel_from (cont) :: P, Δ  ⊢ P ⊗ Q
 */
pub fn send_channel_from
  < C, A, B, N >
  ( _ : N,
    cont:
      PartialSession <
        N :: Target,
        B
      >
  ) ->
    PartialSession <
      C,
      SendChannel < A, B >
    >
where
  A : Protocol,
  B : Protocol,
  C : Context,
  N :
    ContextLens <
      C,
      A,
      Empty
    >
{
  unsafe_create_session (
    move | ctx1, sender1 | async move {
      let (p_chan, ctx2) =
        N :: extract_source (ctx1);

      let (sender2, receiver2) = channel(1);
      let (sender3, receiver3) = channel(1);

      let ctx3 =
        N :: insert_target ((), ctx2);

      let child1 = task::spawn(async move {
        let p = p_chan.recv().await.unwrap();
        sender2.send(p).await;
      });

      let child2 = task::spawn(async move {
        sender1.send(
          SendChannel ( receiver2, receiver3 )
        ).await;
      });

      let child3 = task::spawn(async {
        unsafe_run_session
          ( cont, ctx3, sender3
          ).await;
      });

      join!(child1, child2, child3).await;
  })
}

/*
  Additive Conjunction, Left Rule

            cont :: P, Q, Δ  ⊢ S
  ==========================================
    receive_channel_from(cont) :: P ⊗ Q, Δ  ⊢ S
 */
pub fn receive_channel_from
  < C1, C2, A1, A2, B, N >
  ( _ : N,
    cont_builder: impl
      FnOnce
        ( C2 :: Length
        ) ->
          PartialSession <
            C2 :: Appended,
            B
          >
  ) ->
    PartialSession < C1, B >
where
  A1 : Protocol,
  A2 : Protocol,
  B : Protocol,
  C1 : Context,
  C2 :
    AppendContext <
      ( A1, () )
    >,
  N :
    ContextLens <
      C1,
      SendChannel < A1, A2 >,
      A2,
      Target = C2
    >,
{
  let cont = cont_builder (
    C2 :: Length :: nat ()
  );

  unsafe_create_session (
    move | ctx1, sender1 | async move {
      let ( pair_chan, ctx2 ) =
        N :: extract_source ( ctx1 );

      let SendChannel ( p_chan, y_chan )
        = pair_chan.recv().await.unwrap();

      let ctx3 =
        N :: insert_target ( y_chan, ctx2 );

      let ctx4 =
        < N :: Target as
          AppendContext <
            ( A1, () )
          >
        > :: append_context (ctx3, (p_chan, ()));

        unsafe_run_session
          ( cont, ctx4, sender1
          ).await;
    })
}

/*
    Multiplicative Conjunction, Alternative Parallel Version


       cont1 :: Δ ⊢ P    cont2 :: Δ'  ⊢ Q
    ========================================
      fork(cont1, cont2) :: Δ, Δ' ⊢ P ⊗ Q

    Takes in two session builders and return a new session builder
    with its inputs combined and outputs a parallel context
 */
pub fn fork <P, Q, CP, CQ>
  (
    cont1:  PartialSession <CP, P>,
    cont2:  PartialSession <CQ, Q>
  ) ->
     PartialSession <
      < CP as AppendContext<CQ> >::Appended,
      SendChannel<P, Q>
    >
where
  P: Protocol,
  Q: Protocol,
  CP: Context,
  CQ: Context,
  CP: AppendContext<CQ>,
  P: 'static,
  Q: 'static,
  CP: 'static,
  CQ: 'static
{
  unsafe_create_session (
    move | ctx, sender | async move {
      let (ctx1, ctx2) = CP :: split_context(ctx);

      let (sender1, receiver1) = channel(1);
      let (sender2, receiver2) = channel(1);

      // the first thread spawns immediately

      let child1 = task::spawn(async move {
        unsafe_run_session
          ( cont1, ctx1, sender1
          ).await;
      });

      // the sender here blocks until the inner channel pairs
      // are received on the other side
      let child2 = task::spawn(async move {
        sender.send(
          SendChannel ( receiver1, receiver2 )
        ).await;
      });

      // the second thread is blocked until the first channel is being accessed

      let child3 = task::spawn(async move {
        unsafe_run_session
          ( cont2, ctx2, sender2
          ).await;
      });

      join!(child1, child2, child3).await;
    })
}

pub fn receive_channel_from_slot
  < I, P1, P2, Q,
    TargetLens, SourceLens
  >
  (
    _ : SourceLens,
    _ : TargetLens,
    cont:
      PartialSession <
        TargetLens :: Target,
        Q
      >
  ) ->
    PartialSession < I, Q >
where
  P1 : Protocol,
  P2 : Protocol,
  Q : Protocol,
  I : Context,
  SourceLens :
    ContextLens <
      I,
      SendChannel < P1, P2 >,
      P2
    >,
  TargetLens :
    ContextLens <
      SourceLens :: Target,
      Empty,
      P1
    >,
{
  unsafe_create_session (
    move | ctx1, sender1 | async move {
      let ( pair_chan, ctx2 ) =
        SourceLens :: extract_source ( ctx1 );

      let SendChannel ( p_chan, y_chan ) =
        pair_chan.recv().await.unwrap();

      let ctx3 = SourceLens :: insert_target ( y_chan, ctx2 );

      let ((), ctx4) = TargetLens :: extract_source ( ctx3 );

      let ctx5 = TargetLens :: insert_target ( p_chan, ctx4 );

        unsafe_run_session
          ( cont, ctx5, sender1
          ).await;
    })
}