sc2 0.1.3

organelle networks for StarCraft II Client API
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

use std::collections::VecDeque;
use std::io;
use std::rc::Rc;
use std::time;

use bytes::{ Buf, BufMut };
use organelle;
use organelle::{ ResultExt, Handle, Protocol, Constraint, Nucleus };
use futures::prelude::*;
use futures::sync::{ oneshot, mpsc };
use protobuf;
use protobuf::{ Message as ProtobufMessage, parse_from_reader };
use sc2_proto::sc2api::{ Request, Response };
use tokio_timer::{ Timer };
use tokio_tungstenite::{ connect_async };
use tungstenite;
use url::Url;
use uuid::Uuid;

use super::{ Result, Error, ErrorKind, Message, Soma, Role, Eukaryote };

/// keeps a record of a req/rsp transaction between the game instance
pub struct Transactor {
    client:         Handle,
    transaction:    Uuid,
    kind:           ClientMessageKind,
}

impl Transactor {
    /// send a client request to the client cell
    pub fn send(soma: &Soma, req: ClientRequest) -> Result<Self> {
        let transaction = req.transaction;
        let kind = req.kind;

        let client = soma.req_output(Role::Client)?;

        soma.effector()?.send(client, Message::ClientRequest(req));

        Ok(
            Self {
                client: client,
                transaction: transaction,
                kind: kind,
            }
        )
    }

    /// expect the result to contain the response expected by this transactor
    pub fn expect(self, src: Handle, result: ClientResult)
        -> Result<Response>
    {
        match result {
            ClientResult::Success(rsp) => {
                if self.client != src {
                    bail!("unexpected source for client response")
                }

                if self.transaction != rsp.transaction {
                    bail!("transaction id mismatch")
                }

                if self.kind != rsp.kind {
                    bail!("expected {:?} message, got {:?}", self.kind, rsp.kind)
                }

                if rsp.response.get_error().len() != 0 {
                    bail!(
                        ErrorKind::GameErrors(
                            rsp.response.get_error().iter()
                                .map(|e| e.clone())
                                .collect()
                        )
                    )
                }

                Ok(rsp.response)
            },
            ClientResult::Timeout(transaction) => {
                if self.transaction != transaction {
                    bail!("transaction id mismatch")
                }
                else {
                    bail!("transaction timed out")
                }
            }
        }
    }
}

#[derive(PartialEq, Copy, Clone, Debug)]
enum ClientMessageKind {
    Unknown,
    CreateGame,
    JoinGame,
    RestartGame,
    StartReplay,
    LeaveGame,
    QuickSave,
    QuickLoad,
    Quit,
    GameInfo,
    Observation,
    Action,
    Step,
    Data,
    Query,
    SaveReplay,
    ReplayInfo,
    AvailableMaps,
    SaveMap,
    Ping,
    Debug
}

/// a request to send to the game instance
#[derive(Debug)]
pub struct ClientRequest {
    transaction: Uuid,
    request: Request,
    timeout: time::Duration,
    kind: ClientMessageKind,
}

impl ClientRequest {
    /// create a new request with the default timeout
    pub fn new(request: Request) -> Self {
        Self::with_timeout(request, time::Duration::from_secs(5))
    }

    /// create a new request with a custom timeout
    pub fn with_timeout(request: Request, timeout: time::Duration)
        -> Self
    {
        let kind = Self::get_kind(&request);

        Self {
            transaction: Uuid::new_v4(),
            request: request,
            timeout: timeout,
            kind: kind
        }
    }

    fn get_kind(req: &Request) -> ClientMessageKind {
        if req.has_create_game() {
            ClientMessageKind::CreateGame
        }
        else if req.has_join_game() {
            ClientMessageKind::JoinGame
        }
        else if req.has_restart_game() {
            ClientMessageKind::RestartGame
        }
        else if req.has_start_replay() {
            ClientMessageKind::StartReplay
        }
        else if req.has_leave_game() {
            ClientMessageKind::LeaveGame
        }
        else if req.has_quick_save() {
            ClientMessageKind::QuickSave
        }
        else if req.has_quick_load() {
            ClientMessageKind::QuickLoad
        }
        else if req.has_quit() {
            ClientMessageKind::Quit
        }
        else if req.has_game_info() {
            ClientMessageKind::GameInfo
        }
        else if req.has_observation() {
            ClientMessageKind::Observation
        }
        else if req.has_action() {
            ClientMessageKind::Action
        }
        else if req.has_step() {
            ClientMessageKind::Step
        }
        else if req.has_data() {
            ClientMessageKind::Data
        }
        else if req.has_query() {
            ClientMessageKind::Query
        }
        else if req.has_save_replay() {
            ClientMessageKind::SaveReplay
        }
        else if req.has_replay_info() {
            ClientMessageKind::ReplayInfo
        }
        else if req.has_available_maps() {
            ClientMessageKind::AvailableMaps
        }
        else if req.has_save_map() {
            ClientMessageKind::SaveMap
        }
        else if req.has_ping() {
            ClientMessageKind::Ping
        }
        else if req.has_debug() {
            ClientMessageKind::Debug
        }
        else {
            ClientMessageKind::Unknown
        }
    }
}

/// a successful response from the game instance
#[derive(Debug)]
pub struct ClientResponse {
    transaction: Uuid,
    response: Response,
    kind: ClientMessageKind,
}

/// the result of a transaction with the game instance
#[derive(Debug)]
pub enum ClientResult {
    /// transaction succeeded
    Success(ClientResponse),
    /// transaction timed out
    Timeout(Uuid),
}

impl ClientResult {
    fn success(transaction: Uuid, response: Response) -> Self {
        let kind = Self::get_kind(&response);

        ClientResult::Success(
            ClientResponse {
                transaction: transaction,
                response: response,
                kind: kind,
            }
        )
    }

    fn get_kind(rsp: &Response) -> ClientMessageKind {
        if rsp.has_create_game() {
            ClientMessageKind::CreateGame
        }
        else if rsp.has_join_game() {
            ClientMessageKind::JoinGame
        }
        else if rsp.has_restart_game() {
            ClientMessageKind::RestartGame
        }
        else if rsp.has_start_replay() {
            ClientMessageKind::StartReplay
        }
        else if rsp.has_leave_game() {
            ClientMessageKind::LeaveGame
        }
        else if rsp.has_quick_save() {
            ClientMessageKind::QuickSave
        }
        else if rsp.has_quick_load() {
            ClientMessageKind::QuickLoad
        }
        else if rsp.has_quit() {
            ClientMessageKind::Quit
        }
        else if rsp.has_game_info() {
            ClientMessageKind::GameInfo
        }
        else if rsp.has_observation() {
            ClientMessageKind::Observation
        }
        else if rsp.has_action() {
            ClientMessageKind::Action
        }
        else if rsp.has_step() {
            ClientMessageKind::Step
        }
        else if rsp.has_data() {
            ClientMessageKind::Data
        }
        else if rsp.has_query() {
            ClientMessageKind::Query
        }
        else if rsp.has_save_replay() {
            ClientMessageKind::SaveReplay
        }
        else if rsp.has_replay_info() {
            ClientMessageKind::ReplayInfo
        }
        else if rsp.has_available_maps() {
            ClientMessageKind::AvailableMaps
        }
        else if rsp.has_save_map() {
            ClientMessageKind::SaveMap
        }
        else if rsp.has_ping() {
            ClientMessageKind::Ping
        }
        else if rsp.has_debug() {
            ClientMessageKind::Debug
        }
        else {
            ClientMessageKind::Unknown
        }
    }
}

const NUM_RETRIES: u32 = 10;

pub enum ClientCell {
    Init(Init),
    AwaitInstance(AwaitInstance),
    Connect(Connect),

    Open(Open),

    Disconnect(Disconnect),
}

impl ClientCell {
    pub fn new() -> Result<Eukaryote<ClientCell>> {
        Ok(
            Eukaryote::new(
                ClientCell::Init(Init { }),
                vec![
                    Constraint::RequireOne(Role::InstanceProvider),
                    Constraint::Variadic(Role::Client)
                ],
                vec![ ],
            )?
        )
    }
}

impl Nucleus for ClientCell {
    type Message = Message;
    type Role = Role;

    fn update(self, soma: &Soma, msg: Protocol<Message, Role>)
        -> organelle::Result<Self>
    {
        match self {
            ClientCell::Init(state) => state.update(soma, msg),
            ClientCell::AwaitInstance(state) => state.update(soma, msg),
            ClientCell::Connect(state) => state.update(soma, msg),
            ClientCell::Open(state) => state.update(soma, msg),
            ClientCell::Disconnect(state) => state.update(soma, msg),
        }.chain_err(
            || organelle::ErrorKind::CellError
        )
    }
}

pub struct Init { }

impl Init {
    fn update(self, _: &Soma, msg: Protocol<Message, Role>)
        -> Result<ClientCell>
    {
        match msg {
            Protocol::Start => self.start(),

            Protocol::Message(_, msg) => {
                bail!("unexpected message {:#?}", msg)
            },
            _ => bail!("unexpected protocol message")
        }
    }

    fn start(self) -> Result<ClientCell> {
        AwaitInstance::await()
    }
}

pub struct AwaitInstance { }

impl AwaitInstance {
    fn await() -> Result<ClientCell> {
        Ok(ClientCell::AwaitInstance(AwaitInstance { }))
    }

    fn reset(soma: &Soma) -> Result<ClientCell> {
        for c in soma.var_input(Role::Client)? {
            soma.effector()?.send(*c, Message::ClientClosed);
        }

        Self::await()
    }

    fn reset_error(soma: &Soma, e: Rc<Error>) -> Result<ClientCell> {
        for c in soma.var_input(Role::Client)? {
            soma.effector()?.send_in_order(
                *c,
                vec![
                    Message::ClientError(Rc::clone(&e)),
                    Message::ClientClosed
                ]
            );
        }

        Self::await()
    }

    fn update(self, soma: &Soma, msg: Protocol<Message, Role>)
        -> Result<ClientCell>
    {
        match msg {
            Protocol::Message(
                src, Message::ProvideInstance(instance, url)
            ) => {
                self.assign_instance(soma, src, instance, url)
            },

            Protocol::Message(_, msg) => {
                bail!("unexpected message {:#?}", msg)
            },
            _ => bail!("unexpected protocol message")
        }
    }

    fn assign_instance(self, soma: &Soma, src: Handle, _: Uuid, url: Url)
        -> Result<ClientCell>
    {
        assert_eq!(src, soma.req_input(Role::InstanceProvider)?);

        Connect::connect(soma, url)
    }
}

pub struct Connect {
    timer:              Timer,
    retries:            u32,
}

impl Connect {
    fn connect(soma: &Soma, url: Url) -> Result<ClientCell> {
        let this_cell = soma.effector()?.this_cell();
        soma.effector()?.send(
            this_cell, Message::ClientAttemptConnect(url)
        );

        Ok(
            ClientCell::Connect(
                Connect {
                    timer: Timer::default(),
                    retries: NUM_RETRIES,
                }
            )
        )
    }

    fn update(self, soma: &Soma, msg: Protocol<Message, Role>)
        -> Result<ClientCell>
    {
        match msg {
            Protocol::Message(src, Message::ClientAttemptConnect(url)) => {
                self.attempt_connect(soma, src, url)
            },
            Protocol::Message(src, Message::ClientConnected(sender)) => {
                self.on_connected(soma, src, sender)
            },

            Protocol::Message(_, msg) => {
                bail!("unexpected message {:#?}", msg)
            },
            _ => bail!("unexpected protocol message")
        }
    }

    fn attempt_connect(mut self, soma: &Soma, src: Handle, url: Url)
        -> Result<ClientCell>
    {
        assert_eq!(src, soma.effector()?.this_cell());

        let connected_effector = soma.effector()?.clone();
        let retry_effector = soma.effector()?.clone();
        let timer_effector = soma.effector()?.clone();

        let client_remote = soma.effector()?.remote();

        if self.retries == 0 {
            bail!("unable to connect to instance")
        }
        else {
            println!(
                "attempting to connect to instance {} - retries {}",
                url,
                self.retries
            );

            self.retries -= 1;
        }

        let retry_url = url.clone();

        soma.effector()?.spawn(
            self.timer.sleep(time::Duration::from_secs(5))
                .and_then(move |_| connect_async(url, client_remote)
                    .and_then(move |(ws_stream, _)| {
                        let this_cell = connected_effector.this_cell();

                        let (send_tx, send_rx) = mpsc::channel(10);

                        let (sink, stream) = ws_stream.split();

                        connected_effector.spawn(
                            sink.send_all(
                                send_rx.map_err(
                                    |_| tungstenite::Error::Io(
                                        io::ErrorKind::BrokenPipe
                                            .into()
                                    )
                                )
                            )
                                .then(|_| Ok(()))
                        );

                        let recv_eff = connected_effector.clone();
                        let close_eff = connected_effector.clone();
                        let error_eff = connected_effector.clone();

                        connected_effector.spawn(
                            stream.for_each(move |msg| {
                                recv_eff.send(
                                    this_cell, Message::ClientReceive(msg)
                                );

                                Ok(())
                            })
                                .and_then(move |_| {
                                    close_eff.send(
                                        this_cell, Message::ClientClosed
                                    );

                                    Ok(())
                                })
                                .or_else(move |e| {
                                    error_eff.send(
                                        this_cell,
                                        Message::ClientError(
                                            Rc::from(
                                                Error::with_chain(
                                                    e,
                                                    ErrorKind::ClientRecvFailed
                                                )
                                            )
                                        )
                                    );

                                    Ok(())
                                })
                        );
                        connected_effector.send(
                            this_cell,
                            Message::ClientConnected(send_tx)
                        );

                        Ok(())
                    })
                    .or_else(move |_| {
                        let this_cell = retry_effector.this_cell();
                        retry_effector.send(
                            this_cell,
                            Message::ClientAttemptConnect(retry_url)
                        );

                        Ok(())
                    })
                )
                .or_else(move |e| {
                    timer_effector.error(
                        organelle::Error::with_chain(
                            e, organelle::ErrorKind::CellError
                        )
                    );

                    Ok(())
                })
        );

        Ok(ClientCell::Connect(self))
    }

    fn on_connected(
        self,
        soma: &Soma,
        src: Handle,
        sender: mpsc::Sender<tungstenite::Message>
    )
        -> Result<ClientCell>
    {
        assert_eq!(src, soma.effector()?.this_cell());

        Open::open(soma, sender, self.timer)
    }
}

pub struct Open {
    sender:         mpsc::Sender<tungstenite::Message>,
    timer:          Timer,

    transactions:   VecDeque<
                        (Uuid, Handle, oneshot::Sender<()>)
                    >,
}

impl Open {
    fn open(
        soma: &Soma, sender: mpsc::Sender<tungstenite::Message>, timer: Timer
    )
        -> Result<ClientCell>
    {
        for c in soma.var_input(Role::Client)? {
            soma.effector()?.send(*c, Message::Ready);
        }

        Ok(
            ClientCell::Open(
                Open {
                    sender: sender,
                    timer: timer,

                    transactions: VecDeque::new(),
                }
            )
        )
    }

    fn update(self, soma: &Soma, msg: Protocol<Message, Role>)
        -> Result<ClientCell>
    {
        match msg {
            Protocol::Message(src, Message::ClientRequest(req)) => {
                self.send(soma, src, req)
            },
            Protocol::Message(src, Message::ClientReceive(msg)) => {
                self.recv(soma, src, msg)
            },
            Protocol::Message(
                src, Message::ClientTimeout(transaction)
            ) => {
                self.on_timeout(soma, src, transaction)
            },
            Protocol::Message(_, Message::ClientDisconnect) => {
                Disconnect::disconnect()
            },
            Protocol::Message(src, Message::ClientClosed) => {
                self.on_close(soma, src)
            },
            Protocol::Message(src, Message::ClientError(e)) => {
                self.on_error(soma, src, e)
            },

            Protocol::Message(_, msg) => {
                bail!("unexpected message {:#?}", msg)
            },
            _ => bail!("unexpected protocol message")
        }
    }

    fn send(mut self, soma: &Soma, src: Handle, req: ClientRequest)
        -> Result<ClientCell>
    {
        let buf = Vec::new();
        let mut writer = buf.writer();

        let (tx, rx) = oneshot::channel();
        let transaction = req.transaction;

        self.transactions.push_back((transaction, src, tx));

        {
            let mut cos = protobuf::CodedOutputStream::new(&mut writer);

            req.request.write_to(&mut cos)?;
            cos.flush()?;
        }

        let timeout_effector = soma.effector()?.clone();

        soma.effector()?.spawn(
            self.timer.timeout(
                self.sender.clone().send(
                    tungstenite::Message::Binary(writer.into_inner())
                )
                    .map_err(|_| ())
                    .and_then(|_| rx.map_err(|_| ())),
                req.timeout
            )
            .and_then(|_| Ok(()))
            .or_else(move |_| {
                let this_cell = timeout_effector.this_cell();

                timeout_effector.send(
                    this_cell, Message::ClientTimeout(transaction)
                );

                Ok(())
            })
        );

        Ok(ClientCell::Open(self))
    }

    fn recv(mut self, soma: &Soma, src: Handle, msg: tungstenite::Message)
        -> Result<ClientCell>
    {
        assert_eq!(src, soma.effector()?.this_cell());

        let rsp = match msg {
            tungstenite::Message::Binary(buf) => {
                let cursor = io::Cursor::new(buf);

                parse_from_reader::<Response>(&mut cursor.reader())?
            }
            _ => bail!("unexpected non-binary message"),
        };

        let (transaction, dest, tx) = match self.transactions.pop_front() {
            Some(transaction) => transaction,
            None => bail!("no pending transactions for this response"),
        };

        if let Err(_) = tx.send(()) {
            // rx must be closed
        }

        soma.effector()?.send(
            dest,
            Message::ClientResult(ClientResult::success(transaction, rsp))
        );

        Ok(ClientCell::Open(self))
    }

    fn on_timeout(mut self, soma: &Soma, src: Handle, transaction: Uuid)
        -> Result<ClientCell>
    {
        assert_eq!(src, soma.effector()?.this_cell());

        if let Some(i) = self.transactions.iter()
            .position(|&(ref t, _, _)| *t == transaction)
        {
            let dest = self.transactions[i].1;

            self.transactions.remove(i);
            soma.effector()?.send(
                dest, Message::ClientTimeout(transaction)
            );
        }

        Ok(ClientCell::Open(self))
    }

    fn on_close(self, soma: &Soma, src: Handle) -> Result<ClientCell> {
        assert_eq!(src, soma.effector()?.this_cell());

        AwaitInstance::reset(soma)
    }

    fn on_error(self, soma: &Soma, src: Handle, e: Rc<Error>) -> Result<ClientCell> {
        assert_eq!(src, soma.effector()?.this_cell());

        AwaitInstance::reset_error(soma, e)
    }
}

pub struct Disconnect { }

impl Disconnect {
    fn disconnect() -> Result<ClientCell> {
        Ok(ClientCell::Disconnect(Disconnect { }))
    }
    fn update(self, soma: &Soma, msg: Protocol<Message, Role>)
        -> Result<ClientCell>
    {
        match msg {
            Protocol::Message(_, Message::ClientClosed) => {
                AwaitInstance::reset(soma)
            },
            Protocol::Message(_, Message::ClientError(e)) => {
                AwaitInstance::reset_error(soma, e)
            },

            Protocol::Message(_, msg) => {
                bail!("unexpected msg {:#?}", msg)
            },
            _ => bail!("unexpected protocol message")
        }
    }
}