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 tokio::{
  task,
  try_join,
};

use crate::internal::{
  base::{
    unsafe_create_session,
    unsafe_run_session,
    AppendContext,
    Context,
    Empty,
    PartialSession,
    Protocol,
    Slot,
  },
  functional::{
    App,
    Nat,
  },
};

pub enum L {}

pub enum R {}

pub enum AllLeft {}

pub enum AllRight {}

pub trait SplitContext<C>
where
  C: Context,
{
  type Left: Context;

  type Right: Context;

  fn split_endpoints(
    ctx: C::Endpoints
  ) -> (
    <Self::Left as Context>::Endpoints,
    <Self::Right as Context>::Endpoints,
  );
}

impl SplitContext<()> for ()
{
  type Left = ();
  type Right = ();

  fn split_endpoints(_: ()) -> ((), ())
  {
    ((), ())
  }
}

impl<C> SplitContext<C> for AllLeft
where
  C: Context,
{
  type Left = C;
  type Right = ();

  fn split_endpoints(ctx: C::Endpoints) -> (C::Endpoints, ())
  {
    (ctx, ())
  }
}

impl<C> SplitContext<C> for AllRight
where
  C: Context,
{
  type Left = ();
  type Right = C;

  fn split_endpoints(ctx: C::Endpoints) -> ((), C::Endpoints)
  {
    ((), ctx)
  }
}

impl<X, C, C1, C2> SplitContext<(Empty, C)> for (Empty, X)
where
  C: Context,
  C1: Context,
  C2: Context,
  X: SplitContext<C, Left = C1, Right = C2>,
{
  type Left = (Empty, C1);
  type Right = (Empty, C2);

  fn split_endpoints(
    (a, ctx): ((), C::Endpoints)
  ) -> (((), C1::Endpoints), ((), C2::Endpoints))
  {
    let (ctx1, ctx2) = X::split_endpoints(ctx);

    ((a, ctx1), ((), ctx2))
  }
}

impl<X, A, C, C1, C2> SplitContext<(A, C)> for (L, X)
where
  A: Slot,
  C: Context,
  C1: Context,
  C2: Context,
  X: SplitContext<C, Left = C1, Right = C2>,
{
  type Left = (A, C1);
  type Right = (Empty, C2);

  fn split_endpoints(
    (a, ctx): (A::Endpoint, C::Endpoints)
  ) -> ((A::Endpoint, C1::Endpoints), ((), C2::Endpoints))
  {
    let (ctx1, ctx2) = X::split_endpoints(ctx);

    ((a, ctx1), ((), ctx2))
  }
}

impl<X, A, C, C1, C2> SplitContext<(A, C)> for (R, X)
where
  A: Slot,
  C: Context,
  C1: Context,
  C2: Context,
  X: SplitContext<C, Left = C1, Right = C2>,
{
  type Left = (Empty, C1);
  type Right = (A, C2);

  fn split_endpoints(
    (a, ctx): (A::Endpoint, C::Endpoints)
  ) -> (((), C1::Endpoints), (A::Endpoint, C2::Endpoints))
  {
    let (ctx1, ctx2) = X::split_endpoints(ctx);

    (((), ctx1), (a, ctx2))
  }
}

pub trait Cut<C>: SplitContext<C>
where
  C: Context,
{
  fn cut<A, B>(
    cont1: PartialSession<Self::Left, A>,
    cont2: impl FnOnce(
      <Self::Right as Context>::Length,
    ) -> PartialSession<
      <Self::Right as AppendContext<(A, ())>>::Appended,
      B,
    >,
  ) -> PartialSession<C, B>
  where
    A: Protocol,
    B: Protocol,
    Self::Right: AppendContext<(A, ())>;
}

impl<X, C> Cut<C> for X
where
  C: Context,
  X: SplitContext<C>,
{
  fn cut<A, B>(
    cont1: PartialSession<Self::Left, A>,
    cont2: impl FnOnce(
      <Self::Right as Context>::Length,
    ) -> PartialSession<
      <Self::Right as AppendContext<(A, ())>>::Appended,
      B,
    >,
  ) -> PartialSession<C, B>
  where
    A: Protocol,
    B: Protocol,
    Self::Right: AppendContext<(A, ())>,
  {
    cut::<X, _, _, _, _, _, _>(cont1, cont2)
  }
}

pub fn cut<X, C, C1, C2, A, B, Func>(
  cont1: PartialSession<C1, A>,
  cont2: Func,
) -> PartialSession<C, B>
where
  A: Protocol,
  B: Protocol,
  C: Context,
  C1: Context,
  C2: Context,
  X: SplitContext<C, Left = C1, Right = C2>,
  C2: AppendContext<(A, ())>,
  Func: FnOnce(C2::Length) -> PartialSession<C2::Appended, B>,
{
  let cont3 = cont2(C2::Length::nat());

  unsafe_create_session(move |ctx, sender1| async move {
    let (ctx1, ctx2) = X::split_endpoints(ctx);

    let (provider_end_a, client_end_a) = A::create_endpoints();

    let ctx3 = C2::append_context(ctx2, (App::new(client_end_a), ()));

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

    let child2 = task::spawn(async {
      unsafe_run_session(cont1, ctx1, provider_end_a).await;
    });

    try_join!(child1, child2).unwrap();
  })
}

/*
 Cut (Communication)

   cont1 :: Δ1, Q, Δ2 ⊢ P    cont2 :: Δ3 ⊢ Q
 ==============================================
      link(cont1, cont2) :: Δ1, Δ2, Δ3 ⊢ P
*/

pub fn cut_append<C1, C2, C3, C4, A, B>(
  cont1: PartialSession<C3, B>,
  cont2: PartialSession<C2, A>,
) -> PartialSession<C4, B>
where
  A: Protocol,
  B: Protocol,
  C1: Context,
  C2: Context,
  C3: Context,
  C4: Context,
  C1: AppendContext<(A, ()), Appended = C3>,
  C1: AppendContext<C2, Appended = C4>,
{
  unsafe_create_session(move |ctx1, b_sender| async move {
    let (ctx2, ctx3) = <C1 as AppendContext<C2>>::split_context(ctx1);

    let (provider_end_a, client_end_a) = A::create_endpoints();

    let ctx4 = <C1 as AppendContext<(A, ())>>::append_context(
      ctx2,
      (App::new(client_end_a), ()),
    );

    let child1 = task::spawn(async {
      unsafe_run_session(cont1, ctx4, b_sender).await;
    });

    let child2 = task::spawn(async {
      unsafe_run_session(cont2, ctx3, provider_end_a).await;
    });

    try_join!(child1, child2).unwrap();
  })
}