2015-06-23 14:38:29 +00:00
|
|
|
use byteorder::{BigEndian, ByteOrder, ReadBytesExt, WriteBytesExt};
|
2016-01-01 22:56:13 +00:00
|
|
|
use eventual;
|
2015-06-23 14:38:29 +00:00
|
|
|
use protobuf::{self, Message};
|
2015-09-01 11:20:37 +00:00
|
|
|
use std::collections::HashMap;
|
2015-06-23 14:38:29 +00:00
|
|
|
use std::io::{Cursor, Read, Write};
|
|
|
|
use std::mem::replace;
|
2015-09-01 11:20:37 +00:00
|
|
|
use std::sync::mpsc;
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2016-01-27 10:40:00 +00:00
|
|
|
use protocol;
|
2016-05-09 11:22:51 +00:00
|
|
|
use session::{Session, PacketHandler};
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2015-07-01 17:49:03 +00:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2015-06-23 14:38:29 +00:00
|
|
|
pub enum MercuryMethod {
|
|
|
|
GET,
|
|
|
|
SUB,
|
|
|
|
UNSUB,
|
2015-07-01 22:40:38 +00:00
|
|
|
SEND,
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct MercuryRequest {
|
|
|
|
pub method: MercuryMethod,
|
2015-07-01 17:49:03 +00:00
|
|
|
pub uri: String,
|
|
|
|
pub content_type: Option<String>,
|
2016-01-02 15:19:39 +00:00
|
|
|
pub payload: Vec<Vec<u8>>,
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct MercuryResponse {
|
2015-07-01 17:49:03 +00:00
|
|
|
pub uri: String,
|
2016-01-02 15:19:39 +00:00
|
|
|
pub payload: Vec<Vec<u8>>,
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
2016-01-01 22:56:13 +00:00
|
|
|
enum MercuryCallback {
|
|
|
|
Future(eventual::Complete<MercuryResponse, ()>),
|
|
|
|
Subscription(mpsc::Sender<MercuryResponse>),
|
|
|
|
Channel,
|
|
|
|
}
|
|
|
|
|
2015-06-23 14:38:29 +00:00
|
|
|
pub struct MercuryPending {
|
2015-09-01 11:20:37 +00:00
|
|
|
parts: Vec<Vec<u8>>,
|
2015-06-23 14:38:29 +00:00
|
|
|
partial: Option<Vec<u8>>,
|
2016-01-02 15:19:39 +00:00
|
|
|
callback: MercuryCallback,
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct MercuryManager {
|
|
|
|
next_seq: u32,
|
|
|
|
pending: HashMap<Vec<u8>, MercuryPending>,
|
2015-07-02 17:24:25 +00:00
|
|
|
subscriptions: HashMap<String, mpsc::Sender<MercuryResponse>>,
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
2015-09-01 11:20:37 +00:00
|
|
|
impl ToString for MercuryMethod {
|
|
|
|
fn to_string(&self) -> String {
|
|
|
|
match *self {
|
2015-06-23 14:38:29 +00:00
|
|
|
MercuryMethod::GET => "GET",
|
|
|
|
MercuryMethod::SUB => "SUB",
|
2015-07-01 22:40:38 +00:00
|
|
|
MercuryMethod::UNSUB => "UNSUB",
|
2016-01-02 15:19:39 +00:00
|
|
|
MercuryMethod::SEND => "SEND",
|
|
|
|
}
|
|
|
|
.to_owned()
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MercuryManager {
|
2015-07-02 17:24:25 +00:00
|
|
|
pub fn new() -> MercuryManager {
|
|
|
|
MercuryManager {
|
2015-06-23 14:38:29 +00:00
|
|
|
next_seq: 0,
|
|
|
|
pending: HashMap::new(),
|
2015-07-01 18:47:51 +00:00
|
|
|
subscriptions: HashMap::new(),
|
2015-07-02 17:24:25 +00:00
|
|
|
}
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
2016-01-01 22:56:13 +00:00
|
|
|
fn request_with_callback(&mut self,
|
|
|
|
session: &Session,
|
2016-01-02 15:19:39 +00:00
|
|
|
req: MercuryRequest,
|
2016-01-01 22:56:13 +00:00
|
|
|
cb: MercuryCallback) {
|
2015-06-23 14:38:29 +00:00
|
|
|
let mut seq = [0u8; 4];
|
|
|
|
BigEndian::write_u32(&mut seq, self.next_seq);
|
|
|
|
self.next_seq += 1;
|
|
|
|
let data = self.encode_request(&seq, &req);
|
|
|
|
|
2015-07-01 17:49:03 +00:00
|
|
|
let cmd = match req.method {
|
|
|
|
MercuryMethod::SUB => 0xb3,
|
|
|
|
MercuryMethod::UNSUB => 0xb4,
|
|
|
|
_ => 0xb2,
|
|
|
|
};
|
|
|
|
|
2017-01-18 05:57:36 +00:00
|
|
|
session.send_packet(cmd, data);
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2016-01-02 15:19:39 +00:00
|
|
|
self.pending.insert(seq.to_vec(),
|
|
|
|
MercuryPending {
|
|
|
|
parts: Vec::new(),
|
|
|
|
partial: None,
|
|
|
|
callback: cb,
|
|
|
|
});
|
2016-01-01 22:56:13 +00:00
|
|
|
}
|
2015-07-02 17:24:25 +00:00
|
|
|
|
2016-01-02 15:19:39 +00:00
|
|
|
pub fn request(&mut self,
|
|
|
|
session: &Session,
|
|
|
|
req: MercuryRequest)
|
|
|
|
-> eventual::Future<MercuryResponse, ()> {
|
2016-01-01 22:56:13 +00:00
|
|
|
let (tx, rx) = eventual::Future::pair();
|
|
|
|
self.request_with_callback(session, req, MercuryCallback::Future(tx));
|
2015-09-01 11:20:37 +00:00
|
|
|
rx
|
2015-07-02 17:24:25 +00:00
|
|
|
}
|
|
|
|
|
2016-01-02 15:19:39 +00:00
|
|
|
pub fn subscribe(&mut self, session: &Session, uri: String) -> mpsc::Receiver<MercuryResponse> {
|
2015-07-02 17:24:25 +00:00
|
|
|
let (tx, rx) = mpsc::channel();
|
|
|
|
|
2016-01-02 15:19:39 +00:00
|
|
|
self.request_with_callback(session,
|
|
|
|
MercuryRequest {
|
|
|
|
method: MercuryMethod::SUB,
|
|
|
|
uri: uri,
|
|
|
|
content_type: None,
|
|
|
|
payload: Vec::new(),
|
|
|
|
},
|
|
|
|
MercuryCallback::Subscription(tx));
|
2015-07-02 17:24:25 +00:00
|
|
|
|
|
|
|
rx
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_part(mut s: &mut Read) -> Vec<u8> {
|
|
|
|
let size = s.read_u16::<BigEndian>().unwrap() as usize;
|
|
|
|
let mut buffer = vec![0; size];
|
2015-09-01 11:20:37 +00:00
|
|
|
s.read_exact(&mut buffer).unwrap();
|
2015-06-23 14:38:29 +00:00
|
|
|
|
|
|
|
buffer
|
|
|
|
}
|
|
|
|
|
2016-01-01 22:56:13 +00:00
|
|
|
fn complete_subscription(&mut self,
|
|
|
|
response: MercuryResponse,
|
|
|
|
tx: mpsc::Sender<MercuryResponse>) {
|
|
|
|
for sub_data in response.payload {
|
2016-01-02 15:19:39 +00:00
|
|
|
if let Ok(mut sub) =
|
|
|
|
protobuf::parse_from_bytes::<protocol::pubsub::Subscription>(&sub_data) {
|
2016-01-01 22:56:13 +00:00
|
|
|
self.subscriptions.insert(sub.take_uri(), tx.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn complete_request(&mut self, mut pending: MercuryPending) {
|
2015-09-01 11:20:37 +00:00
|
|
|
let header_data = pending.parts.remove(0);
|
2016-01-02 15:19:39 +00:00
|
|
|
let header: protocol::mercury::Header = protobuf::parse_from_bytes(&header_data).unwrap();
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2015-09-01 11:20:37 +00:00
|
|
|
let response = MercuryResponse {
|
|
|
|
uri: header.get_uri().to_owned(),
|
2016-01-02 15:19:39 +00:00
|
|
|
payload: pending.parts,
|
2015-07-01 18:47:51 +00:00
|
|
|
};
|
|
|
|
|
2016-01-01 22:56:13 +00:00
|
|
|
match pending.callback {
|
|
|
|
MercuryCallback::Future(tx) => tx.complete(response),
|
|
|
|
MercuryCallback::Subscription(tx) => self.complete_subscription(response, tx),
|
|
|
|
MercuryCallback::Channel => {
|
|
|
|
self.subscriptions
|
2016-01-02 14:50:43 +00:00
|
|
|
.get(header.get_uri())
|
|
|
|
.map(|tx| tx.send(response).unwrap());
|
2016-01-01 22:56:13 +00:00
|
|
|
}
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-02 17:24:25 +00:00
|
|
|
fn encode_request(&self, seq: &[u8], req: &MercuryRequest) -> Vec<u8> {
|
|
|
|
let mut packet = Vec::new();
|
|
|
|
packet.write_u16::<BigEndian>(seq.len() as u16).unwrap();
|
|
|
|
packet.write_all(seq).unwrap();
|
|
|
|
packet.write_u8(1).unwrap(); // Flags: FINAL
|
|
|
|
packet.write_u16::<BigEndian>(1 + req.payload.len() as u16).unwrap(); // Part count
|
|
|
|
|
|
|
|
let mut header = protobuf_init!(protocol::mercury::Header::new(), {
|
|
|
|
uri: req.uri.clone(),
|
|
|
|
method: req.method.to_string(),
|
|
|
|
});
|
|
|
|
if let Some(ref content_type) = req.content_type {
|
|
|
|
header.set_content_type(content_type.clone());
|
|
|
|
}
|
|
|
|
|
|
|
|
packet.write_u16::<BigEndian>(header.compute_size() as u16).unwrap();
|
|
|
|
header.write_to_writer(&mut packet).unwrap();
|
|
|
|
|
|
|
|
for p in &req.payload {
|
|
|
|
packet.write_u16::<BigEndian>(p.len() as u16).unwrap();
|
|
|
|
packet.write(&p).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
packet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PacketHandler for MercuryManager {
|
2016-05-09 11:22:51 +00:00
|
|
|
fn handle(&mut self, cmd: u8, data: Vec<u8>, _session: &Session) {
|
2015-06-23 14:38:29 +00:00
|
|
|
let mut packet = Cursor::new(data);
|
|
|
|
|
|
|
|
let seq = {
|
|
|
|
let seq_length = packet.read_u16::<BigEndian>().unwrap() as usize;
|
|
|
|
let mut seq = vec![0; seq_length];
|
2015-09-01 11:20:37 +00:00
|
|
|
packet.read_exact(&mut seq).unwrap();
|
2015-06-23 14:38:29 +00:00
|
|
|
seq
|
|
|
|
};
|
|
|
|
let flags = packet.read_u8().unwrap();
|
|
|
|
let count = packet.read_u16::<BigEndian>().unwrap() as usize;
|
|
|
|
|
2015-07-01 17:49:03 +00:00
|
|
|
let mut pending = if let Some(pending) = self.pending.remove(&seq) {
|
|
|
|
pending
|
|
|
|
} else if cmd == 0xb5 {
|
|
|
|
MercuryPending {
|
2015-09-01 11:20:37 +00:00
|
|
|
parts: Vec::new(),
|
2015-07-01 17:49:03 +00:00
|
|
|
partial: None,
|
2016-01-01 22:56:13 +00:00
|
|
|
callback: MercuryCallback::Channel,
|
2015-07-01 17:49:03 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-08-25 21:51:49 +00:00
|
|
|
warn!("Ignore seq {:?} cmd {}", seq, cmd);
|
2016-01-02 15:19:39 +00:00
|
|
|
return;
|
2015-07-01 17:49:03 +00:00
|
|
|
};
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2015-07-01 17:49:03 +00:00
|
|
|
for i in 0..count {
|
|
|
|
let mut part = Self::parse_part(&mut packet);
|
|
|
|
if let Some(mut data) = replace(&mut pending.partial, None) {
|
|
|
|
data.append(&mut part);
|
|
|
|
part = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == count - 1 && (flags == 2) {
|
|
|
|
pending.partial = Some(part)
|
|
|
|
} else {
|
2015-09-01 11:20:37 +00:00
|
|
|
pending.parts.push(part);
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if flags == 0x1 {
|
2016-01-01 22:56:13 +00:00
|
|
|
self.complete_request(pending);
|
2015-07-01 17:49:03 +00:00
|
|
|
} else {
|
|
|
|
self.pending.insert(seq, pending);
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|