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
use log::debug;
use zmq::Message;
use zmq::Socket;
#[cfg(feature = "debugger")]
use crate::debug::Event as DebugEvent;
#[cfg(feature = "debugger")]
use crate::debug::Response as DebugResponse;
use crate::errors::*;
use crate::runtime::{Event, Response};
impl From<Event> for Message {
fn from(event: Event) -> Self {
match serde_json::to_string(&event) {
Ok(message_string) => Message::from(&message_string),
_ => Message::new()
}
}
}
impl From<Message> for Event {
fn from(msg: Message) -> Self {
match msg.as_str() {
Some(message_string) => {
match serde_json::from_str(message_string) {
Ok(message) => message,
_ => Event::Invalid
}
}
_ => Event::Invalid
}
}
}
impl From<Response> for Message {
fn from(msg: Response) -> Self {
match serde_json::to_string(&msg) {
Ok(message_string) => Message::from(&message_string),
_ => Message::new()
}
}
}
impl From<Message> for Response {
fn from(msg: Message) -> Self {
match msg.as_str() {
Some(message_string) => {
match serde_json::from_str(message_string) {
Ok(message) => message,
_ => Response::Invalid
}
}
_ => Response::Invalid
}
}
}
#[cfg(feature = "debugger")]
impl From<DebugEvent> for Message {
fn from(debug_event: DebugEvent) -> Self {
match serde_json::to_string(&debug_event) {
Ok(message_string) => Message::from(&message_string),
_ => Message::new()
}
}
}
#[cfg(feature = "debugger")]
impl From<Message> for DebugEvent {
fn from(msg: Message) -> Self {
match msg.as_str() {
Some(message_string) => {
match serde_json::from_str(message_string) {
Ok(message) => message,
_ => DebugEvent::Invalid
}
}
_ => DebugEvent::Invalid
}
}
}
#[cfg(feature = "debugger")]
impl From<DebugResponse> for Message {
fn from(msg: DebugResponse) -> Self {
match serde_json::to_string(&msg) {
Ok(message_string) => Message::from(&message_string),
_ => Message::new()
}
}
}
#[cfg(feature = "debugger")]
impl From<Message> for DebugResponse {
fn from(msg: Message) -> Self {
match msg.as_str() {
Some(message_string) => {
match serde_json::from_str(message_string) {
Ok(message) => message,
_ => DebugResponse::Invalid
}
}
_ => DebugResponse::Invalid
}
}
}
pub struct RuntimeClientConnection {
host: String,
port: usize,
requester: Option<Socket>,
}
impl RuntimeClientConnection {
pub fn new(runtime_server_connection: &RuntimeServerConnection) -> Self {
RuntimeClientConnection {
host: runtime_server_connection.host.clone(),
port: runtime_server_connection.port,
requester: None,
}
}
pub fn start(&mut self) -> Result<()> {
let context = zmq::Context::new();
self.requester = Some(context.socket(zmq::REQ)
.chain_err(|| "Runtime client could not connect to server")?);
if let Some(ref requester) = self.requester {
requester.connect(&format!("tcp://{}:{}", self.host, self.port))
.chain_err(|| "Could not connect to server")?;
}
debug!("Runtime client connected to Server on {}:{}", self.host, self.port);
Ok(())
}
pub fn client_recv(&self) -> Result<Event> {
if let Some(ref requester) = self.requester {
let msg = requester.recv_msg(0)
.map_err(|e| format!("Error receiving from Server: {}", e))?;
Ok(Event::from(msg))
} else {
bail!("Client runtime connection has not been started")
}
}
pub fn client_send(&self, response: Response) -> Result<()> {
if let Some(ref requester) = self.requester {
requester.send(response, 0).chain_err(|| "Error sending to Runtime server")
} else {
bail!("Runtime client connection has not been started")
}
}
}
#[cfg(feature = "debugger")]
pub struct DebugClientConnection {
host: String,
port: usize,
requester: Option<Socket>,
}
#[cfg(feature = "debugger")]
impl DebugClientConnection {
pub fn new(debug_server_context: &DebugServerConnection) -> Self {
DebugClientConnection {
host: debug_server_context.host.clone(),
port: debug_server_context.port,
requester: None,
}
}
pub fn start(&mut self) -> Result<()> {
let context = zmq::Context::new();
self.requester = Some(context.socket(zmq::REQ)
.chain_err(|| "Debug client could not connect to server")?);
if let Some(ref requester) = self.requester {
requester.connect(&format!("tcp://{}:{}", self.host, self.port))
.chain_err(|| "Could not connect to server")?;
}
debug!("Debug client connected to debugger on {}:{}", self.host, self.port);
self.client_send(DebugResponse::Ack)
}
pub fn client_recv(&self) -> Result<DebugEvent> {
if let Some(ref requester) = self.requester {
let msg = requester.recv_msg(0)
.map_err(|e| format!("Error receiving from Debug server: {}", e))?;
Ok(DebugEvent::from(msg))
} else {
bail!("Client debug connection has not been started")
}
}
pub fn client_send(&self, response: DebugResponse) -> Result<()> {
if let Some(ref requester) = self.requester {
requester.send(response, 0).chain_err(|| "Error sending to debug server")
} else {
bail!("Debug client connection has not been started")
}
}
}
pub struct RuntimeServerConnection {
host: String,
port: usize,
responder: Option<zmq::Socket>,
}
impl RuntimeServerConnection {
pub fn new(server_hostname: Option<&str>) -> Self {
RuntimeServerConnection {
host: server_hostname.unwrap_or("localhost").into(),
port: 5555,
responder: None,
}
}
pub fn start(&mut self) -> Result<()> {
let context = zmq::Context::new();
self.responder = Some(context.socket(zmq::REP)
.chain_err(|| "Runtime Server not start connection")?);
if let Some(ref responder) = self.responder {
responder.bind(&format!("tcp://*:{}", self.port))
.chain_err(|| "Runtime Server could not bind connection")?;
}
debug!("Runtime Server Connection started on port: {}", self.port);
Ok(())
}
pub fn get_response(&self) -> Result<Response> {
let responder = self.responder.as_ref()
.chain_err(|| "Runtime server connection not started")?;
let msg = responder.recv_msg(0)
.map_err(|e| format!("Runtime server error getting response: '{}'", e))?;
Ok(Response::from(msg))
}
pub fn send_event(&mut self, event: Event) -> Result<Response> {
let responder = self.responder.as_ref()
.chain_err(|| "Runtime server connection not started")?;
responder.send(event, 0)
.map_err(|e| format!("Runtime server error sending to client: '{}'", e))?;
self.get_response()
}
}
#[cfg(feature = "debugger")]
pub struct DebugServerConnection {
host: String,
port: usize,
responder: Option<zmq::Socket>,
}
#[cfg(feature = "debugger")]
impl DebugServerConnection {
pub fn new(server_hostname: Option<&str>) -> Self {
DebugServerConnection {
host: server_hostname.unwrap_or("localhost").into(),
port: 5556,
responder: None,
}
}
pub fn start(&mut self) -> Result<()> {
let context = zmq::Context::new();
self.responder = Some(context.socket(zmq::REP)
.chain_err(|| "Debug Server not start connection")?);
if let Some(ref responder) = self.responder {
responder.bind(&format!("tcp://*:{}", self.port))
.chain_err(|| "Debug Server could not bind connection")?;
}
debug!("Debug Server Connection started on port: {}", self.port);
Ok(())
}
pub fn get_response(&self) -> Result<DebugResponse> {
let responder = self.responder.as_ref()
.chain_err(|| "Runtime server connection not started")?;
let msg = responder.recv_msg(0)
.chain_err(|| "Runtime server could not receive response")?;
Ok(DebugResponse::from(msg))
}
pub fn send_event(&self, event: DebugEvent) -> Result<()> {
let responder = self.responder.as_ref()
.chain_err(|| "Runtime server connection not started")?;
responder.send(event, 0)
.map_err(|e| format!("Error sending debug event to runtime client: {}", e))?;
Ok(())
}
}