author | Wuzzy <almikes@aol.com> |
Mon, 17 Apr 2017 18:47:56 +0200 | |
changeset 12281 | 12f28d866c76 |
parent 12147 | 4d7d41be1993 |
child 13124 | 1e39b8749072 |
permissions | -rw-r--r-- |
12138 | 1 |
use nom::*; |
2 |
||
3 |
use std::str; |
|
4 |
use std::str::FromStr; |
|
5 |
use super::messages::HWProtocolMessage; |
|
6 |
use super::messages::HWProtocolMessage::*; |
|
7 |
||
8 |
named!(end_of_message, tag!("\n\n")); |
|
12147
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
9 |
named!(str_line<&[u8], &str>, map_res!(not_line_ending, str::from_utf8)); |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
10 |
named!( a_line<&[u8], String>, map!(str_line, String::from)); |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
11 |
named!( u8_line<&[u8], u8>, map_res!(str_line, FromStr::from_str)); |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
12 |
named!(u32_line<&[u8], u32>, map_res!(str_line, FromStr::from_str)); |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
13 |
named!(opt_param<&[u8], Option<String> >, opt!(map!(flat_map!(preceded!(eol, str_line), non_empty), String::from))); |
12139 | 14 |
|
12138 | 15 |
named!(basic_message<&[u8], HWProtocolMessage>, alt!( |
12140 | 16 |
do_parse!(tag!("PING") >> (Ping)) |
12138 | 17 |
| do_parse!(tag!("PONG") >> (Pong)) |
18 |
| do_parse!(tag!("LIST") >> (List)) |
|
12140 | 19 |
| do_parse!(tag!("BANLIST") >> (BanList)) |
12138 | 20 |
| do_parse!(tag!("GET_SERVER_VAR") >> (GetServerVar)) |
12140 | 21 |
| do_parse!(tag!("TOGGLE_READY") >> (ToggleReady)) |
22 |
| do_parse!(tag!("START_GAME") >> (StartGame)) |
|
23 |
| do_parse!(tag!("ROUNDFINISHED") >> (RoundFinished)) |
|
24 |
| do_parse!(tag!("TOGGLE_RESTRICT_JOINS") >> (ToggleRestrictJoin)) |
|
25 |
| do_parse!(tag!("TOGGLE_RESTRICT_TEAMS") >> (ToggleRestrictTeams)) |
|
12138 | 26 |
| do_parse!(tag!("TOGGLE_REGISTERED_ONLY") >> (ToggleRegisteredOnly)) |
27 |
)); |
|
28 |
||
29 |
named!(one_param_message<&[u8], HWProtocolMessage>, alt!( |
|
12140 | 30 |
do_parse!(tag!("NICK") >> eol >> n: a_line >> (Nick(n))) |
31 |
| do_parse!(tag!("INFO") >> eol >> n: a_line >> (Info(n))) |
|
32 |
| do_parse!(tag!("CHAT") >> eol >> m: a_line >> (Chat(m))) |
|
33 |
| do_parse!(tag!("FOLLOW") >> eol >> n: a_line >> (Follow(n))) |
|
34 |
| do_parse!(tag!("KICK") >> eol >> n: a_line >> (Kick(n))) |
|
35 |
| do_parse!(tag!("UNBAN") >> eol >> n: a_line >> (Unban(n))) |
|
36 |
| do_parse!(tag!("EM") >> eol >> m: a_line >> (EngineMessage(m))) |
|
37 |
| do_parse!(tag!("TEAMCHAT") >> eol >> m: a_line >> (TeamChat(m))) |
|
38 |
| do_parse!(tag!("ROOM_NAME") >> eol >> n: a_line >> (RoomName(n))) |
|
39 |
| do_parse!(tag!("REMOVE_TEAM") >> eol >> n: a_line >> (RemoveTeam(n))) |
|
40 |
||
41 |
| do_parse!(tag!("PROTO") >> eol >> d: u32_line >> (Proto(d))) |
|
42 |
||
43 |
| do_parse!(tag!("QUIT") >> msg: opt_param >> (Quit(msg))) |
|
44 |
)); |
|
45 |
||
46 |
named!(cmd_message<&[u8], HWProtocolMessage>, preceded!(tag!("CMD\n"), alt!( |
|
47 |
do_parse!(tag_no_case!("STATS") >> (Stats)) |
|
48 |
| do_parse!(tag_no_case!("FIX") >> (Fix)) |
|
49 |
| do_parse!(tag_no_case!("UNFIX") >> (Unfix)) |
|
50 |
| do_parse!(tag_no_case!("RESTART_SERVER") >> eol >> tag!("YES") >> (RestartServer)) |
|
51 |
| do_parse!(tag_no_case!("REGISTERED_ONLY") >> (ToggleServerRegisteredOnly)) |
|
52 |
| do_parse!(tag_no_case!("SUPER_POWER") >> (SuperPower)) |
|
53 |
| do_parse!(tag_no_case!("PART") >> eol >> m: opt_param >> (Quit(m))) |
|
54 |
| do_parse!(tag_no_case!("QUIT") >> eol >> m: opt_param >> (Part(m))) |
|
55 |
| do_parse!(tag_no_case!("DELEGATE") >> eol >> n: a_line >> (Delegate(n))) |
|
56 |
| do_parse!(tag_no_case!("SAVEROOM") >> eol >> r: a_line >> (SaveRoom(r))) |
|
57 |
| do_parse!(tag_no_case!("LOADROOM") >> eol >> r: a_line >> (LoadRoom(r))) |
|
58 |
| do_parse!(tag_no_case!("DELETE") >> eol >> r: a_line >> (Delete(r))) |
|
59 |
| do_parse!(tag_no_case!("GLOBAL") >> eol >> m: a_line >> (Global(m))) |
|
60 |
| do_parse!(tag_no_case!("WATCH") >> eol >> i: a_line >> (Watch(i))) |
|
61 |
| do_parse!(tag_no_case!("GREETING") >> eol >> m: a_line >> (Greeting(m))) |
|
62 |
| do_parse!(tag_no_case!("VOTE") >> eol >> m: a_line >> (Vote(m))) |
|
63 |
| do_parse!(tag_no_case!("FORCE") >> eol >> m: a_line >> (ForceVote(m))) |
|
64 |
| do_parse!(tag_no_case!("INFO") >> eol >> n: a_line >> (Info(n))) |
|
65 |
| do_parse!(tag_no_case!("MAXTEAMS") >> eol >> n: u8_line >> (MaxTeams(n))) |
|
66 |
))); |
|
67 |
||
68 |
named!(complex_message<&[u8], HWProtocolMessage>, alt!( |
|
69 |
do_parse!(tag!("PASSWORD") >> eol >> |
|
70 |
p: a_line >> eol >> |
|
71 |
s: a_line >> |
|
72 |
(Password(p, s))) |
|
73 |
| do_parse!(tag!("CHECKER") >> eol >> |
|
74 |
i: u32_line >> eol >> |
|
75 |
n: a_line >> eol >> |
|
76 |
p: a_line >> |
|
77 |
(Checker(i, n, p))) |
|
78 |
| do_parse!(tag!("CREATE_ROOM") >> eol >> |
|
79 |
n: a_line >> |
|
80 |
p: opt_param >> |
|
81 |
(CreateRoom(n, p))) |
|
82 |
| do_parse!(tag!("JOIN") >> eol >> |
|
83 |
n: a_line >> |
|
84 |
p: opt_param >> |
|
85 |
(Join(n, p))) |
|
86 |
| do_parse!(tag!("BAN") >> eol >> |
|
87 |
n: a_line >> eol >> |
|
88 |
r: a_line >> eol >> |
|
89 |
t: u32_line >> |
|
90 |
(Ban(n, r, t))) |
|
91 |
| do_parse!(tag!("BAN_IP") >> eol >> |
|
92 |
n: a_line >> eol >> |
|
93 |
r: a_line >> eol >> |
|
94 |
t: u32_line >> |
|
95 |
(BanIP(n, r, t))) |
|
96 |
| do_parse!(tag!("BAN_NICK") >> eol >> |
|
97 |
n: a_line >> eol >> |
|
98 |
r: a_line >> eol >> |
|
99 |
t: u32_line >> |
|
100 |
(BanNick(n, r, t))) |
|
12138 | 101 |
)); |
102 |
||
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
103 |
named!(malformed_message<&[u8], HWProtocolMessage>, |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
104 |
do_parse!(separated_list!(eol, a_line) >> (Malformed))); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
105 |
|
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
106 |
named!(empty_message<&[u8], HWProtocolMessage>, |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
107 |
do_parse!(alt!(end_of_message | eol) >> (Empty))); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
108 |
|
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
109 |
named!(message<&[u8], HWProtocolMessage>, alt!(terminated!( |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
110 |
alt!( |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
111 |
basic_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
112 |
| one_param_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
113 |
| cmd_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
114 |
| complex_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
115 |
), end_of_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
116 |
) |
12145 | 117 |
| terminated!(malformed_message, end_of_message) |
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
118 |
| empty_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
119 |
) |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
120 |
); |
12138 | 121 |
|
12141 | 122 |
named!(pub extract_messages<&[u8], Vec<HWProtocolMessage> >, many0!(complete!(message))); |
12138 | 123 |
|
124 |
#[test] |
|
125 |
fn parse_test() { |
|
12139 | 126 |
assert_eq!(message(b"PING\n\n"), IResult::Done(&b""[..], Ping)); |
127 |
assert_eq!(message(b"START_GAME\n\n"), IResult::Done(&b""[..], StartGame)); |
|
12147
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
128 |
assert_eq!(message(b"NICK\nit's me\n\n"), IResult::Done(&b""[..], Nick("it's me".to_string()))); |
12139 | 129 |
assert_eq!(message(b"PROTO\n51\n\n"), IResult::Done(&b""[..], Proto(51))); |
12147
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
130 |
assert_eq!(message(b"QUIT\nbye-bye\n\n"), IResult::Done(&b""[..], Quit(Some("bye-bye".to_string())))); |
12139 | 131 |
assert_eq!(message(b"QUIT\n\n"), IResult::Done(&b""[..], Quit(None))); |
12147
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
132 |
assert_eq!(message(b"CMD\nwatch\ndemo\n\n"), IResult::Done(&b""[..], Watch("demo".to_string()))); |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
133 |
assert_eq!(message(b"BAN\nme\nbad\n77\n\n"), IResult::Done(&b""[..], Ban("me".to_string(), "bad".to_string(), 77))); |
12141 | 134 |
|
12145 | 135 |
assert_eq!(extract_messages(b"QUIT\n1\n2\n\n"), IResult::Done(&b""[..], vec![Malformed])); |
136 |
||
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
137 |
assert_eq!(extract_messages(b"PING\n\nPING\n\nP"), IResult::Done(&b"P"[..], vec![Ping, Ping])); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
138 |
assert_eq!(extract_messages(b"SING\n\nPING\n\n"), IResult::Done(&b""[..], vec![Malformed, Ping])); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
139 |
assert_eq!(extract_messages(b"\n\n\n\nPING\n\n"), IResult::Done(&b""[..], vec![Empty, Empty, Ping])); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
140 |
assert_eq!(extract_messages(b"\n\n\nPING\n\n"), IResult::Done(&b""[..], vec![Empty, Empty, Ping])); |
12138 | 141 |
} |