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
//!
//! An implementation of Msgpack-RPC, based on tokio-proto and rmp.
//!
//! This crate focuses on bi-directional RPC on single I/O.
//!
//! # Example
//!
//! ```ignore
//! // Create a client from an I/O.
//! let endpoint = msgpack_rpc::Endpoint::from_io(&handle, StdioStream::new(4, 4));
//! let client = endpoint.into_client();
//!
//! // Call a precedure and receive its response asynchronously.
//! let task = client.request("hello", vec![])
//!     .and_then(|response| {
//!         eprintln!("{:?}", response);
//!         ok(())
//!     });
//!
//! // Start the event loop.
//! core.run(task).unwrap();
//! ```
//!
//! You can serve request/notifications from peer, by using `endpoint`:
//!
//! ```ignore
//! use msgpack_rpc::Handler;
//!
//! struct RootHandler {
//!     /* ... */
//! }
//!
//! impl Handler for RootHandler {
//!     type RequestFuture = BoxFuture<Value, Value>;
//!     type NofityFuture = BoxFuture<(), ()>;
//!
//!     fn handle_request(
//!         &self,
//!         method: &str,
//!         params: Value,
//!         client: &Client,
//!     ) -> Self::RequestFuture {
//!         // ...
//!     }
//!
//!     fn handle_notification(
//!         &self,
//!         method: &str,
//!         params: Value,
//!         client: &Client,
//!     ) -> Self::NotifyFuture {
//!         // ...
//!     }
//! }
//!
//! // Launch an endpoint service on the event loop of `handle`.
//! // It will spawn a service to handle requests/notifications from a peer.
//! endpoint.launch(&handle, RootHandler { /* ... */ });
//! ```

extern crate bytes;
#[macro_use]
extern crate futures;
extern crate tokio_core;
extern crate tokio_io;
extern crate tokio_proto;
extern crate tokio_service;
extern crate tokio_process;
extern crate rmpv;

mod client;
mod distributor;
mod endpoint;
mod message;
mod util;

pub mod io;

pub use rmpv::Value;
pub use self::client::{Client, Response, Ack};
pub use self::endpoint::Endpoint;

use std::rc::Rc;
use std::sync::Arc;
use futures::Future;

/// A handler of requests/notifications.
pub trait Handler: 'static {
    /// The future returned from `Self::handle_request()`
    type RequestFuture: Future<Item = Value, Error = Value>;

    /// The future returned from `Self::handle_notification()`
    type NotifyFuture: Future<Item = (), Error = ()>;

    /// Handler function to handle a request.
    fn handle_request(&self, method: &str, params: Value, client: &Client) -> Self::RequestFuture;

    /// Handler function to handle a notification.
    fn handle_notification(
        &self,
        method: &str,
        params: Value,
        client: &Client,
    ) -> Self::NotifyFuture;
}

impl<H: Handler> Handler for Box<H> {
    type RequestFuture = H::RequestFuture;
    type NotifyFuture = H::NotifyFuture;

    fn handle_request(&self, method: &str, params: Value, client: &Client) -> Self::RequestFuture {
        (**self).handle_request(method, params, client)
    }

    fn handle_notification(
        &self,
        method: &str,
        params: Value,
        client: &Client,
    ) -> Self::NotifyFuture {
        (**self).handle_notification(method, params, client)
    }
}

impl<H: Handler> Handler for Rc<H> {
    type RequestFuture = H::RequestFuture;
    type NotifyFuture = H::NotifyFuture;

    fn handle_request(&self, method: &str, params: Value, client: &Client) -> Self::RequestFuture {
        (**self).handle_request(method, params, client)
    }

    fn handle_notification(
        &self,
        method: &str,
        params: Value,
        client: &Client,
    ) -> Self::NotifyFuture {
        (**self).handle_notification(method, params, client)
    }
}

impl<H: Handler> Handler for Arc<H> {
    type RequestFuture = H::RequestFuture;
    type NotifyFuture = H::NotifyFuture;

    fn handle_request(&self, method: &str, params: Value, client: &Client) -> Self::RequestFuture {
        (**self).handle_request(method, params, client)
    }

    fn handle_notification(
        &self,
        method: &str,
        params: Value,
        client: &Client,
    ) -> Self::NotifyFuture {
        (**self).handle_notification(method, params, client)
    }
}