2016-04-03 20:43:35 +02:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-04-03 22:39:49 +02:00
|
|
|
//! IPC over nanomsg transport
|
2016-04-03 20:43:35 +02:00
|
|
|
|
|
|
|
extern crate ethcore_ipc as ipc;
|
|
|
|
extern crate nanomsg;
|
2016-04-03 23:00:57 +02:00
|
|
|
#[macro_use] extern crate log;
|
2016-04-03 22:39:49 +02:00
|
|
|
|
|
|
|
pub use ipc::*;
|
|
|
|
|
|
|
|
use std::sync::*;
|
2016-04-04 19:47:16 +02:00
|
|
|
use nanomsg::{Socket, Protocol, Error, Endpoint};
|
2016-04-03 22:39:49 +02:00
|
|
|
|
|
|
|
pub struct Worker<S> where S: IpcInterface<S> {
|
|
|
|
service: Arc<S>,
|
2016-04-04 19:47:16 +02:00
|
|
|
sockets: Vec<(Socket, Endpoint)>,
|
2016-04-03 22:39:49 +02:00
|
|
|
}
|
|
|
|
|
2016-04-03 23:54:30 +02:00
|
|
|
#[derive(Debug)]
|
2016-04-03 23:33:30 +02:00
|
|
|
pub enum SocketError {
|
|
|
|
DuplexLink
|
|
|
|
}
|
|
|
|
|
2016-04-03 22:39:49 +02:00
|
|
|
impl<S> Worker<S> where S: IpcInterface<S> {
|
2016-04-03 22:58:18 +02:00
|
|
|
pub fn new(service: Arc<S>) -> Worker<S> {
|
2016-04-03 22:39:49 +02:00
|
|
|
Worker::<S> {
|
|
|
|
service: service.clone(),
|
|
|
|
sockets: Vec::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 22:58:18 +02:00
|
|
|
pub fn poll(&mut self) {
|
2016-04-04 19:47:16 +02:00
|
|
|
for item in self.sockets.iter_mut() {
|
|
|
|
let socket = &mut item.0;
|
2016-04-05 11:08:42 +02:00
|
|
|
let mut buf = Vec::new();
|
2016-04-03 23:33:30 +02:00
|
|
|
// non-blocking read only ok if there is something to read from socket
|
2016-04-05 11:08:42 +02:00
|
|
|
match socket.nb_read_to_end(&mut buf) {
|
2016-04-04 00:44:30 +02:00
|
|
|
Ok(method_sign_len) => {
|
2016-04-05 11:08:42 +02:00
|
|
|
if method_sign_len >= 2 {
|
|
|
|
// method_num
|
|
|
|
let method_num = buf[1] as u16 * 256 + buf[0] as u16;
|
|
|
|
// payload
|
|
|
|
let payload = &buf[2..];
|
|
|
|
|
|
|
|
// dispatching for ipc interface
|
|
|
|
let result = self.service.dispatch_buf(method_num, payload);
|
|
|
|
|
|
|
|
if let Err(e) = socket.nb_write(&result) {
|
2016-04-04 00:44:30 +02:00
|
|
|
warn!(target: "ipc", "Failed to write response: {:?}", e);
|
|
|
|
}
|
2016-04-03 23:00:57 +02:00
|
|
|
}
|
2016-04-04 00:44:30 +02:00
|
|
|
else {
|
|
|
|
warn!(target: "ipc", "Failed to read method signature from socket: unexpected message length({})", method_sign_len);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Err(Error::TryAgain) => {
|
2016-04-04 09:55:06 +02:00
|
|
|
},
|
2016-04-04 00:44:30 +02:00
|
|
|
Err(x) => {
|
2016-04-05 11:08:42 +02:00
|
|
|
warn!(target: "ipc", "Error polling connections {:?}", x);
|
2016-04-04 00:44:30 +02:00
|
|
|
panic!();
|
2016-04-03 23:33:30 +02:00
|
|
|
}
|
2016-04-03 22:58:18 +02:00
|
|
|
}
|
|
|
|
}
|
2016-04-03 22:39:49 +02:00
|
|
|
}
|
2016-04-03 23:33:30 +02:00
|
|
|
|
|
|
|
pub fn add_duplex(&mut self, addr: &str) -> Result<(), SocketError> {
|
|
|
|
let mut socket = try!(Socket::new(Protocol::Pair).map_err(|e| {
|
|
|
|
warn!(target: "ipc", "Failed to create ipc socket: {:?}", e);
|
|
|
|
SocketError::DuplexLink
|
|
|
|
}));
|
|
|
|
|
2016-04-04 19:47:16 +02:00
|
|
|
let endpoint = try!(socket.bind(addr).map_err(|e| {
|
2016-04-03 23:33:30 +02:00
|
|
|
warn!(target: "ipc", "Failed to bind socket to address '{}': {:?}", addr, e);
|
|
|
|
SocketError::DuplexLink
|
|
|
|
}));
|
|
|
|
|
2016-04-04 19:47:16 +02:00
|
|
|
self.sockets.push((socket, endpoint));
|
2016-04-03 23:33:30 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
|
|
|
|
use super::Worker;
|
|
|
|
use ipc::*;
|
2016-04-04 00:44:30 +02:00
|
|
|
use std::io::{Read, Write};
|
2016-04-03 23:54:30 +02:00
|
|
|
use std::sync::{Arc, RwLock};
|
2016-04-05 11:08:42 +02:00
|
|
|
use nanomsg::{Socket, Protocol, Endpoint};
|
2016-04-03 23:33:30 +02:00
|
|
|
|
2016-04-03 23:54:30 +02:00
|
|
|
struct TestInvoke {
|
|
|
|
method_num: u16,
|
|
|
|
params: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct DummyService {
|
|
|
|
methods_stack: RwLock<Vec<TestInvoke>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DummyService {
|
|
|
|
fn new() -> DummyService {
|
|
|
|
DummyService { methods_stack: RwLock::new(Vec::new()) }
|
|
|
|
}
|
|
|
|
}
|
2016-04-03 23:33:30 +02:00
|
|
|
|
|
|
|
impl IpcInterface<DummyService> for DummyService {
|
2016-04-03 23:54:30 +02:00
|
|
|
fn dispatch<R>(&self, _r: &mut R) -> Vec<u8> where R: Read {
|
2016-04-03 23:33:30 +02:00
|
|
|
vec![]
|
|
|
|
}
|
2016-04-05 11:08:42 +02:00
|
|
|
fn dispatch_buf(&self, method_num: u16, buf: &[u8]) -> Vec<u8> {
|
2016-04-03 23:54:30 +02:00
|
|
|
self.methods_stack.write().unwrap().push(
|
|
|
|
TestInvoke {
|
|
|
|
method_num: method_num,
|
2016-04-05 11:08:42 +02:00
|
|
|
params: buf.to_vec(),
|
2016-04-03 23:54:30 +02:00
|
|
|
});
|
2016-04-03 23:33:30 +02:00
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 11:08:42 +02:00
|
|
|
fn dummy_write(addr: &str, buf: &[u8]) -> (Socket, Endpoint) {
|
2016-04-04 00:44:30 +02:00
|
|
|
let mut socket = Socket::new(Protocol::Pair).unwrap();
|
2016-04-04 19:47:16 +02:00
|
|
|
let endpoint = socket.connect(addr).unwrap();
|
2016-04-05 11:08:42 +02:00
|
|
|
//thread::sleep_ms(10);
|
|
|
|
socket.write(buf).unwrap();
|
|
|
|
(socket, endpoint)
|
2016-04-04 00:44:30 +02:00
|
|
|
}
|
|
|
|
|
2016-04-03 23:42:00 +02:00
|
|
|
#[test]
|
2016-04-03 23:33:30 +02:00
|
|
|
fn can_create_worker() {
|
2016-04-03 23:54:30 +02:00
|
|
|
let worker = Worker::<DummyService>::new(Arc::new(DummyService::new()));
|
2016-04-03 23:33:30 +02:00
|
|
|
assert_eq!(0, worker.sockets.len());
|
|
|
|
}
|
2016-04-03 23:54:30 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_add_duplex_socket_to_worker() {
|
|
|
|
let mut worker = Worker::<DummyService>::new(Arc::new(DummyService::new()));
|
2016-04-04 00:52:19 +02:00
|
|
|
worker.add_duplex("ipc:///tmp/parity-test10.ipc").unwrap();
|
2016-04-03 23:54:30 +02:00
|
|
|
assert_eq!(1, worker.sockets.len());
|
|
|
|
}
|
2016-04-04 00:44:30 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn worker_can_poll_empty() {
|
|
|
|
let service = Arc::new(DummyService::new());
|
|
|
|
let mut worker = Worker::<DummyService>::new(service.clone());
|
2016-04-04 00:52:19 +02:00
|
|
|
worker.add_duplex("ipc:///tmp/parity-test20.ipc").unwrap();
|
2016-04-04 00:44:30 +02:00
|
|
|
worker.poll();
|
|
|
|
assert_eq!(0, service.methods_stack.read().unwrap().len());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn worker_can_poll() {
|
2016-04-04 09:55:06 +02:00
|
|
|
let url = "ipc:///tmp/parity-test30.ipc";
|
|
|
|
|
|
|
|
let mut worker = Worker::<DummyService>::new(Arc::new(DummyService::new()));
|
|
|
|
worker.add_duplex(url).unwrap();
|
2016-04-04 00:44:30 +02:00
|
|
|
|
2016-04-05 11:08:42 +02:00
|
|
|
let (_socket, _endpoint) = dummy_write(url, &vec![0, 0, 7, 7, 6, 6]);
|
2016-04-05 11:37:05 +02:00
|
|
|
for _ in 0..100 { worker.poll(); }
|
2016-04-05 11:08:42 +02:00
|
|
|
|
|
|
|
assert_eq!(1, worker.service.methods_stack.read().unwrap().len());
|
|
|
|
assert_eq!(0, worker.service.methods_stack.read().unwrap()[0].method_num);
|
|
|
|
assert_eq!([7, 7, 6, 6], worker.service.methods_stack.read().unwrap()[0].params[..]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn worker_can_poll_long() {
|
2016-04-05 11:11:05 +02:00
|
|
|
let url = "ipc:///tmp/parity-test40.ipc";
|
2016-04-05 11:08:42 +02:00
|
|
|
|
|
|
|
let mut worker = Worker::<DummyService>::new(Arc::new(DummyService::new()));
|
|
|
|
worker.add_duplex(url).unwrap();
|
|
|
|
|
|
|
|
let message = [0u8; 1024*1024];
|
|
|
|
|
|
|
|
let (_socket, _endpoint) = dummy_write(url, &message);
|
2016-04-05 11:37:05 +02:00
|
|
|
for _ in 0..1000 { worker.poll(); }
|
2016-04-04 00:44:30 +02:00
|
|
|
|
2016-04-04 09:55:06 +02:00
|
|
|
assert_eq!(1, worker.service.methods_stack.read().unwrap().len());
|
2016-04-05 11:08:42 +02:00
|
|
|
assert_eq!(0, worker.service.methods_stack.read().unwrap()[0].method_num);
|
|
|
|
assert_eq!(vec![0u8; 1024*1024-2], worker.service.methods_stack.read().unwrap()[0].params);
|
2016-04-04 00:44:30 +02:00
|
|
|
}
|
2016-04-03 22:39:49 +02:00
|
|
|
}
|