gameServer2/src/protocol/mod.rs
author alfadur
Mon, 18 Jun 2018 09:22:53 -0400
changeset 13416 cdf69667593b
parent 12136 e25a82ce2374
child 13438 da71e0d88a1c
permissions -rw-r--r--
partial room implementation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12129
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
     1
use netbuf;
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
     2
use std::io::Read;
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
     3
use std::io::Result;
12136
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
     4
use nom::IResult;
12129
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
     5
12136
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
     6
pub mod messages;
13416
cdf69667593b partial room implementation
alfadur
parents: 12136
diff changeset
     7
pub mod test;
12133
81df2e1f9ae9 Some parsing using nom
unc0rr
parents: 12132
diff changeset
     8
mod parser;
12129
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
     9
12136
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    10
pub struct ProtocolDecoder {
12129
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    11
    buf: netbuf::Buf,
12136
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    12
    consumed: usize,
12129
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    13
}
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    14
12136
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    15
impl ProtocolDecoder {
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    16
    pub fn new() -> ProtocolDecoder {
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    17
        ProtocolDecoder {
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    18
            buf: netbuf::Buf::new(),
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    19
            consumed: 0,
12129
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    20
        }
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    21
    }
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    22
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    23
    pub fn read_from<R: Read>(&mut self, stream: &mut R) -> Result<usize> {
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    24
        self.buf.read_from(stream)
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    25
    }
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    26
12136
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    27
    pub fn extract_messages(&mut self) -> Vec<messages::HWProtocolMessage> {
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    28
        let parse_result = parser::extract_messages(&self.buf[..]);
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    29
        match parse_result {
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    30
            IResult::Done(tail, msgs) => {
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    31
                self.consumed = self.buf.len() - self.consumed - tail.len();
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    32
                msgs
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    33
            },
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    34
            IResult::Incomplete(_) => unreachable!(),
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    35
            IResult::Error(_) => unreachable!(),
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    36
        }
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    37
    }
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    38
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    39
    pub fn sweep(&mut self) {
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    40
        self.buf.consume(self.consumed);
e25a82ce2374 - Render messages to string
unc0rr
parents: 12133
diff changeset
    41
        self.consumed = 0;
12129
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    42
    }
07972a8c2433 - Start protocol parser implementation
unc0rr
parents:
diff changeset
    43
}