2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2017-05-17 16:20:41 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2017-05-17 16:20:41 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2017-05-17 16:20:41 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2017-05-17 16:20:41 +02:00
|
|
|
|
|
|
|
//! A map of subscribers.
|
|
|
|
|
2019-02-25 14:27:28 +01:00
|
|
|
use ethereum_types::H64;
|
2019-02-05 14:31:19 +01:00
|
|
|
use jsonrpc_pubsub::{
|
|
|
|
typed::{Sink, Subscriber},
|
|
|
|
SubscriptionId,
|
2020-08-05 06:08:03 +02:00
|
|
|
};
|
2017-06-13 17:36:39 +02:00
|
|
|
use rand::{Rng, StdRng};
|
2017-05-17 16:20:41 +02:00
|
|
|
use std::{collections::HashMap, ops, str};
|
|
|
|
|
2017-06-13 17:36:39 +02:00
|
|
|
#[derive(Debug, Clone, Hash, Eq, PartialEq)]
|
|
|
|
pub struct Id(H64);
|
|
|
|
impl str::FromStr for Id {
|
|
|
|
type Err = String;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-06-13 17:36:39 +02:00
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
|
|
if s.starts_with("0x") {
|
|
|
|
Ok(Id(s[2..].parse().map_err(|e| format!("{}", e))?))
|
|
|
|
} else {
|
|
|
|
Err("The id must start with 0x".into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl Id {
|
2019-02-25 14:27:28 +01:00
|
|
|
// TODO: replace `format!` see [#10412](https://github.com/paritytech/parity-ethereum/issues/10412)
|
2017-06-13 17:36:39 +02:00
|
|
|
pub fn as_string(&self) -> String {
|
2019-02-25 14:27:28 +01:00
|
|
|
format!("{:?}", self.0)
|
2017-06-13 17:36:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
2017-05-17 16:20:41 +02:00
|
|
|
pub struct Subscribers<T> {
|
2017-06-13 17:36:39 +02:00
|
|
|
rand: StdRng,
|
|
|
|
subscriptions: HashMap<Id, T>,
|
2017-05-17 16:20:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Default for Subscribers<T> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Subscribers {
|
2017-06-13 17:36:39 +02:00
|
|
|
rand: StdRng::new().expect("Valid random source is required."),
|
2017-05-17 16:20:41 +02:00
|
|
|
subscriptions: HashMap::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Subscribers<T> {
|
2017-06-13 17:36:39 +02:00
|
|
|
/// Create a new Subscribers with given random source.
|
|
|
|
#[cfg(test)]
|
|
|
|
pub fn new_test() -> Self {
|
|
|
|
Subscribers {
|
|
|
|
rand: ::rand::SeedableRng::from_seed([0usize].as_ref()),
|
|
|
|
subscriptions: HashMap::new(),
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-06-13 17:36:39 +02:00
|
|
|
fn next_id(&mut self) -> Id {
|
|
|
|
let mut data = H64::default();
|
|
|
|
self.rand.fill_bytes(&mut data.0);
|
|
|
|
Id(data)
|
2017-05-17 16:20:41 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-05-17 16:20:41 +02:00
|
|
|
/// Insert new subscription and return assigned id.
|
|
|
|
pub fn insert(&mut self, val: T) -> SubscriptionId {
|
|
|
|
let id = self.next_id();
|
2017-06-13 17:36:39 +02:00
|
|
|
debug!(target: "pubsub", "Adding subscription id={:?}", id);
|
|
|
|
let s = id.as_string();
|
2017-05-17 16:20:41 +02:00
|
|
|
self.subscriptions.insert(id, val);
|
2017-06-13 17:36:39 +02:00
|
|
|
SubscriptionId::String(s)
|
2017-05-17 16:20:41 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-05-17 16:20:41 +02:00
|
|
|
/// Removes subscription with given id and returns it (if any).
|
|
|
|
pub fn remove(&mut self, id: &SubscriptionId) -> Option<T> {
|
|
|
|
trace!(target: "pubsub", "Removing subscription id={:?}", id);
|
|
|
|
match *id {
|
2017-06-13 17:36:39 +02:00
|
|
|
SubscriptionId::String(ref id) => match id.parse() {
|
|
|
|
Ok(id) => self.subscriptions.remove(&id),
|
|
|
|
Err(_) => None,
|
2017-05-17 16:20:41 +02:00
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 12:21:13 +02:00
|
|
|
impl<T> Subscribers<Sink<T>> {
|
2017-05-17 16:20:41 +02:00
|
|
|
/// Assigns id and adds a subscriber to the list.
|
|
|
|
pub fn push(&mut self, sub: Subscriber<T>) {
|
|
|
|
let id = self.next_id();
|
2017-06-13 17:36:39 +02:00
|
|
|
if let Ok(sink) = sub.assign_id(SubscriptionId::String(id.as_string())) {
|
|
|
|
debug!(target: "pubsub", "Adding subscription id={:?}", id);
|
|
|
|
self.subscriptions.insert(id, sink);
|
2017-05-17 16:20:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 12:21:13 +02:00
|
|
|
impl<T, V> Subscribers<(Sink<T>, V)> {
|
|
|
|
/// Assigns id and adds a subscriber to the list.
|
|
|
|
pub fn push(&mut self, sub: Subscriber<T>, val: V) {
|
|
|
|
let id = self.next_id();
|
|
|
|
if let Ok(sink) = sub.assign_id(SubscriptionId::String(id.as_string())) {
|
|
|
|
debug!(target: "pubsub", "Adding subscription id={:?}", id);
|
|
|
|
self.subscriptions.insert(id, (sink, val));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-17 16:20:41 +02:00
|
|
|
impl<T> ops::Deref for Subscribers<T> {
|
2017-06-13 17:36:39 +02:00
|
|
|
type Target = HashMap<Id, T>;
|
2017-05-17 16:20:41 +02:00
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.subscriptions
|
|
|
|
}
|
|
|
|
}
|