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
use std::convert::{From, Into};
use std::fmt;
use std::result::Result as StdResult;
use std::str::from_utf8;
use protocol::OpCode;
use result::Result;
use self::Message::*;
#[derive(Debug, Eq, PartialEq, Clone)]
pub enum Message {
Text(String),
Binary(Vec<u8>),
}
impl Message {
pub fn text<S>(string: S) -> Message
where
S: Into<String>,
{
Message::Text(string.into())
}
pub fn binary<B>(bin: B) -> Message
where
B: Into<Vec<u8>>,
{
Message::Binary(bin.into())
}
pub fn is_text(&self) -> bool {
match *self {
Text(_) => true,
Binary(_) => false,
}
}
pub fn is_binary(&self) -> bool {
match *self {
Text(_) => false,
Binary(_) => true,
}
}
pub fn len(&self) -> usize {
match *self {
Text(ref string) => string.len(),
Binary(ref data) => data.len(),
}
}
pub fn is_empty(&self) -> bool {
match *self {
Text(ref string) => string.is_empty(),
Binary(ref data) => data.is_empty(),
}
}
#[doc(hidden)]
pub fn opcode(&self) -> OpCode {
match *self {
Text(_) => OpCode::Text,
Binary(_) => OpCode::Binary,
}
}
pub fn into_data(self) -> Vec<u8> {
match self {
Text(string) => string.into_bytes(),
Binary(data) => data,
}
}
pub fn into_text(self) -> Result<String> {
match self {
Text(string) => Ok(string),
Binary(data) => Ok(String::from_utf8(data).map_err(|err| err.utf8_error())?),
}
}
pub fn as_text(&self) -> Result<&str> {
match *self {
Text(ref string) => Ok(string),
Binary(ref data) => Ok(from_utf8(data)?),
}
}
}
impl From<String> for Message {
fn from(string: String) -> Message {
Message::text(string)
}
}
impl<'s> From<&'s str> for Message {
fn from(string: &'s str) -> Message {
Message::text(string)
}
}
impl<'b> From<&'b [u8]> for Message {
fn from(data: &'b [u8]) -> Message {
Message::binary(data)
}
}
impl From<Vec<u8>> for Message {
fn from(data: Vec<u8>) -> Message {
Message::binary(data)
}
}
impl fmt::Display for Message {
fn fmt(&self, f: &mut fmt::Formatter) -> StdResult<(), fmt::Error> {
if let Ok(string) = self.as_text() {
write!(f, "{}", string)
} else {
write!(f, "Binary Data<length={}>", self.len())
}
}
}
mod test {
#![allow(unused_imports, unused_variables, dead_code)]
use super::*;
#[test]
fn display() {
let t = Message::text(format!("test"));
assert_eq!(t.to_string(), "test".to_owned());
let bin = Message::binary(vec![0, 1, 3, 4, 241]);
assert_eq!(bin.to_string(), "Binary Data<length=5>".to_owned());
}
#[test]
fn binary_convert() {
let bin = [6u8, 7, 8, 9, 10, 241];
let msg = Message::from(&bin[..]);
assert!(msg.is_binary());
assert!(msg.into_text().is_err());
}
#[test]
fn binary_convert_vec() {
let bin = vec![6u8, 7, 8, 9, 10, 241];
let msg = Message::from(bin);
assert!(msg.is_binary());
assert!(msg.into_text().is_err());
}
#[test]
fn text_convert() {
let s = "kiwotsukete";
let msg = Message::from(s);
assert!(msg.is_text());
}
}