glop 0.2.5

Glue Language for OPerations
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
extern crate base64;
extern crate bytes;
extern crate futures;
extern crate sodiumoxide;
extern crate serde_json;
extern crate tokio_core;
extern crate tokio_io;
extern crate tokio_proto;
extern crate tokio_process;
extern crate tokio_service;

use std;
use std::error::Error as StdError;
use std::sync::{Arc, Mutex};
use std::process::Command;

use self::bytes::BytesMut;
use self::futures::{future, Future, BoxFuture, Sink, Stream};
use self::sodiumoxide::crypto::secretbox;
use self::tokio_io::{AsyncRead, AsyncWrite};
use self::tokio_io::codec::{Decoder, Encoder, Framed};
use self::tokio_process::CommandExt;
use self::tokio_service::Service;

use super::*;
use self::context::Context;
use self::value::{Identifier, Obj, Value};

#[derive(Serialize, Deserialize)]
#[derive(Debug)]
pub enum Request {
    GetVar { key: String },
    SetVar { key: String, value: String },
    UnsetVar { key: String },
    GetMsg { topic: String, key: String },
    SendMsg {
        dst_agent: String,
        topic: String,
        contents: Obj,
    },
    ReplyMsg {
        src_topic: String,
        topic: String,
        contents: Obj,
    },
}

#[derive(Serialize, Deserialize)]
#[derive(Debug)]
pub enum Response {
    GetVar { key: String, value: String },
    SetVar { key: String, value: String },
    UnsetVar { key: String },
    GetMsg {
        topic: String,
        key: String,
        value: String,
    },
    SendMsg {
        dst_remote: Option<String>,
        dst_agent: String,
        topic: String,
    },
    Error(String),
}

pub struct ServiceCodec;

impl Decoder for ServiceCodec {
    type Item = Request;
    type Error = std::io::Error;

    fn decode(&mut self, buf: &mut BytesMut) -> std::io::Result<Option<Self::Item>> {
        if let Some(i) = buf.iter().position(|&b| b == b'\n') {
            // remove the serialized frame from the buffer.
            let line = buf.split_to(i);

            // Also remove the '\n'
            buf.split_to(1);

            // Turn this data into a UTF string and
            // return it in a Frame.
            let maybe_req: std::result::Result<Self::Item, serde_json::error::Error> =
                serde_json::from_slice(&line[..]);
            match maybe_req {
                Ok(req) => {
                    debug!("service decode {:?}", req);
                    buf.take();
                    Ok(Some(req))
                }
                Err(e) => {
                    error!("decode failed: {}", e);
                    Err(std::io::Error::new(std::io::ErrorKind::Other, e.description()))
                }
            }
        } else {
            Ok(None)
        }
    }
}

impl Encoder for ServiceCodec {
    type Item = Response;
    type Error = std::io::Error;

    fn encode(&mut self, msg: Self::Item, buf: &mut BytesMut) -> std::io::Result<()> {
        match serde_json::to_vec(&msg) {
            Ok(json) => {
                debug!("service encode {:?}", msg);
                buf.extend(&json[..]);
                Ok(())
            }
            Err(e) => {
                error!("service encode failed: {}", e);
                Err(std::io::Error::new(std::io::ErrorKind::Other, e.description()))
            }
        }?;
        buf.extend(&b"\n"[..]);
        Ok(())
    }
}

pub struct ClientCodec;

impl Decoder for ClientCodec {
    type Item = Response;
    type Error = std::io::Error;

    fn decode(&mut self, buf: &mut BytesMut) -> std::io::Result<Option<Self::Item>> {
        if let Some(i) = buf.iter().position(|&b| b == b'\n') {
            // remove the serialized frame from the buffer.
            let line = buf.split_to(i);

            // Also remove the '\n'
            buf.split_to(1);

            // Turn this data into a UTF string and
            // return it in a Frame.
            let maybe_req: std::result::Result<Self::Item, serde_json::error::Error> =
                serde_json::from_slice(&line[..]);
            match maybe_req {
                Ok(req) => {
                    debug!("client decode {:?}", req);
                    buf.take();
                    Ok(Some(req))
                }
                Err(e) => {
                    error!("client decode failed: {}", e);
                    Err(std::io::Error::new(std::io::ErrorKind::Other, e.description()))
                }
            }
        } else {
            Ok(None)
        }
    }
}

impl Encoder for ClientCodec {
    type Item = Request;
    type Error = std::io::Error;

    fn encode(&mut self, msg: Self::Item, buf: &mut BytesMut) -> std::io::Result<()> {
        match serde_json::to_vec(&msg) {
            Ok(json) => {
                debug!("client encode {:?}", msg);
                buf.extend(&json[..]);
                Ok(())
            }
            Err(e) => {
                error!("client encode failed: {}", e);
                Err(std::io::Error::new(std::io::ErrorKind::Other, e.description()))
            }
        }?;
        buf.extend(&b"\n"[..]);
        Ok(())
    }
}

pub struct ClientProto {
    key: secretbox::Key,
}

impl ClientProto {
    pub fn new_from_env() -> Result<ClientProto> {
        let key_str = std::env::var("GLOP_SCRIPT_KEY").map_err(Error::Env)?;
        let key_bytes = base64::decode(&key_str)
            .map_err(|e| Error::InvalidArgument(format!("{}", e)))?;
        let key = match secretbox::Key::from_slice(&key_bytes) {
            Some(k) => k,
            None => return Err(Error::InvalidArgument("GLOP_SCRIPT_KEY".to_string())),
        };
        Ok(ClientProto { key: key })
    }
}

impl<T: AsyncRead + AsyncWrite + 'static> tokio_proto::pipeline::ClientProto<T> for ClientProto {
    type Request = Request;
    type Response = Response;
    type Transport = Framed<T, crypto::SecretBoxCodec<ClientCodec>>;
    type BindTransport = std::io::Result<Self::Transport>;

    fn bind_transport(&self, io: T) -> Self::BindTransport {
        Ok(io.framed(crypto::SecretBoxCodec::new(ClientCodec, self.key.clone())))
    }
}

pub struct ScriptService {
    ctx: Arc<Mutex<Context>>,
    actions: Arc<Mutex<Vec<Action>>>,
}

impl ScriptService {
    fn new(ctx: Arc<Mutex<Context>>, actions: Arc<Mutex<Vec<Action>>>) -> ScriptService {
        ScriptService {
            ctx: ctx,
            actions: actions,
        }
    }
}

impl Service for ScriptService {
    // These types must match the corresponding protocol types:
    type Request = Request;
    type Response = Response;

    // For non-streaming protocols, service errors are always io::Error
    type Error = std::io::Error;

    // The future for computing the response; box it for simplicity.
    type Future = BoxFuture<Self::Response, Self::Error>;

    // Produce a future for computing a response from a request.
    fn call(&self, req: Self::Request) -> Self::Future {
        let mut ctx = self.ctx.lock().unwrap();
        let res = match req {
            Request::GetVar { ref key } => {
                match ctx.get_var(&Identifier::from_str(key)) {
                    Some(ref value) => {
                        Response::GetVar {
                            key: key.to_string(),
                            value: value.to_string(),
                        }
                    }
                    None => {
                        Response::GetVar {
                            key: key.to_string(),
                            value: "".to_string(),
                        }
                    }
                }
            }
            Request::SetVar { ref key, ref value } => {
                let id = Identifier::from_str(key);
                ctx.set_var(&id, Value::from_str(value));
                drop(ctx);
                let mut actions = self.actions.lock().unwrap();
                actions.push(Action::SetVar(id, value.to_string()));
                drop(actions);
                Response::SetVar {
                    key: key.to_string(),
                    value: value.to_string(),
                }
            }
            Request::UnsetVar { ref key } => {
                let id = Identifier::from_str(key);
                ctx.unset_var(&id);
                drop(ctx);
                let mut actions = self.actions.lock().unwrap();
                actions.push(Action::UnsetVar(id));
                drop(actions);
                Response::UnsetVar { key: key.to_string() }
            }
            Request::GetMsg { ref topic, ref key } => {
                match ctx.get_msg(topic, &Identifier::from_str(key)) {
                    Some(ref value) => {
                        Response::GetMsg {
                            topic: topic.to_string(),
                            key: key.to_string(),
                            value: value.to_string(),
                        }
                    }
                    None => {
                        Response::GetMsg {
                            topic: topic.to_string(),
                            key: key.to_string(),
                            value: "".to_string(),
                        }
                    }
                }
            }
            Request::SendMsg {
                ref dst_agent,
                ref topic,
                ref contents,
            } => {
                drop(ctx);
                let mut actions = self.actions.lock().unwrap();
                actions.push(Action::SendMsg {
                                 dst_remote: None,
                                 dst_agent: dst_agent.to_string(),
                                 topic: topic.to_string(),
                                 in_reply_to: None,
                                 contents: contents.clone(),
                             });
                drop(actions);
                Response::SendMsg {
                    dst_remote: None,
                    dst_agent: dst_agent.to_string(),
                    topic: topic.to_string(),
                }
            }
            Request::ReplyMsg {
                ref src_topic,
                ref topic,
                ref contents,
            } => {
                if let Some(ref src_msg) = ctx.msgs.get(src_topic) {
                    let mut actions = self.actions.lock().unwrap();
                    actions.push(Action::SendMsg {
                                     dst_remote: src_msg.src_remote.clone(),
                                     dst_agent: src_msg.src_agent.to_string(),
                                     topic: topic.to_string(),
                                     in_reply_to: Some(src_msg.id.to_string()),
                                     contents: contents.clone(),
                                 });
                    drop(actions);
                    Response::SendMsg {
                        dst_remote: src_msg.src_remote.clone(),
                        dst_agent: src_msg.src_agent.to_string(),
                        topic: topic.to_string(),
                    }
                } else {
                    Response::Error(format!("topic {} not found", topic))
                }
            }
        };
        future::ok(res).boxed()
    }
}

pub fn run_script(ctx: Arc<Mutex<Context>>, script_path: &str) -> Result<Vec<Action>> {
    let mut core = tokio_core::reactor::Core::new()
        .map_err(error::Error::IO)?;
    let handle = core.handle();

    let addr = "127.0.0.1:0".parse().unwrap();
    let listener = tokio_core::net::TcpListener::bind(&addr, &handle)
        .map_err(error::Error::IO)?;
    let listen_addr = &listener.local_addr().map_err(error::Error::IO)?;
    let connections = listener.incoming();
    let mut cmd = &mut Command::new(script_path);
    let src = {
        let ctx = ctx.lock().unwrap();
        ctx.set_env(cmd);
        ctx.src.to_string()
    };
    let key = secretbox::gen_key();
    let actions = Arc::new(Mutex::new(vec![]));
    let server_actions = actions.clone();
    let child = cmd.env("GLOP_SCRIPT_ADDR", format!("{}", listen_addr))
        .env("GLOP_SCRIPT_KEY", base64::encode(&key.0))
        .output_async(&handle)
        .then(|result| match result {
                  Ok(output) => {
            let mut stdout = String::from_utf8(output.stdout).unwrap();
            stdout.pop();
            if !stdout.is_empty() {
                info!("{}: stdout: {}", src, stdout);
            }
            let mut stderr = String::from_utf8(output.stderr).unwrap();
            stderr.pop();
            if !stderr.is_empty() {
                info!("{}: stderr: {}", src, stderr);
            }
            if output.status.success() {
                Ok(())
            } else {
                let code = match output.status.code() {
                    Some(value) => value,
                    None => 0,
                };
                Err(Error::Exec(code, stderr))
            }
        }
                  Err(e) => Err(Error::IO(e)),
              });
    let server = connections
        .for_each(move |(socket, _peer_addr)| {
            let (wr, rd) = socket
                .framed(crypto::SecretBoxCodec::new(ServiceCodec, key.clone()))
                .split();
            let service = ScriptService::new(ctx.clone(), server_actions.clone());
            let responses = rd.and_then(move |req| service.call(req));
            let responder = wr.send_all(responses).then(|_| Ok(()));
            handle.spawn(responder);
            Ok(())
        })
        .map_err(Error::IO);
    let comb = server.select(child);
    match core.run(comb) {
        Err((e, _)) => {
            return Err(e);
        }
        Ok(_) => Ok(actions.lock().unwrap().clone()),
    }
}