server.rs 18.8 KiB
Newer Older
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 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
//
// Permission is hereby granted, free of charge, to any
// person obtaining a copy of this software and associated
// documentation files (the "Software"), to deal in the
// Software without restriction, including without
// limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software
// is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice
// shall be included in all copies or substantial portions
// of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
// ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
// SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
// IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

use crate::raw::{RawServer, RawServerEvent, RawServerRequestId, RawServerSubscriptionId};
use crate::transport::WsTransportServer;
use jsonrpsee_types::{
	error::Error,
	jsonrpc::{self, JsonValue},
};

use futures::{channel::mpsc, future::Either, pin_mut, prelude::*};
use parking_lot::Mutex;
use std::{
	collections::{HashMap, HashSet},
	convert::TryFrom,
	error,
	net::SocketAddr,
	sync::{atomic, Arc},
};

/// Server that can be cloned.
///
/// > **Note**: This struct is designed to be easy to use, but it works by maintaining a background
/// >           task running in parallel. If this is not desirable, you are encouraged to use the
/// >           [`RawServer`] struct instead.
#[derive(Clone)]
pub struct Server {
	/// Channel to send requests to the background task.
	to_back: mpsc::UnboundedSender<FrontToBack>,
	/// List of methods (for RPC queries, subscriptions, and unsubscriptions) that have been
	/// registered. Serves no purpose except to check for duplicates.
	registered_methods: Arc<Mutex<HashSet<String>>>,
	/// Next unique ID used when registering a subscription.
	next_subscription_unique_id: Arc<atomic::AtomicUsize>,
	/// Local socket address of the transport server.
	local_addr: SocketAddr,
}

/// Notification method that's been registered.
pub struct RegisteredNotification {
	/// Receives notifications that the client sent to us.
	queries_rx: mpsc::Receiver<jsonrpc::Params>,
}

/// Method that's been registered.
pub struct RegisteredMethod {
	/// Clone of [`Server::to_back`].
	to_back: mpsc::UnboundedSender<FrontToBack>,
	/// Receives requests that the client sent to us.
	queries_rx: mpsc::Receiver<(RawServerRequestId, jsonrpc::Params)>,
}

/// Pub-sub subscription that's been registered.
// TODO: unregister on drop
pub struct RegisteredSubscription {
	/// Clone of [`Server::to_back`].
	to_back: mpsc::UnboundedSender<FrontToBack>,
	/// Value passed to [`FrontToBack::RegisterSubscription::unique_id`].
	unique_id: usize,
}

/// Active request that needs to be answered.
pub struct IncomingRequest {
	/// Clone of [`Server::to_back`].
	to_back: mpsc::UnboundedSender<FrontToBack>,
	/// Identifier of the request towards the server.
	request_id: RawServerRequestId,
	/// Parameters of the request.
	params: jsonrpc::Params,
}

/// Message that the [`Server`] can send to the background task.
enum FrontToBack {
	/// Registers a notifications endpoint.
	RegisterNotifications {
		/// Name of the method.
		name: String,
		/// Where to send incoming notifications.
		handler: mpsc::Sender<jsonrpc::Params>,
		/// See the documentation of [`Server::register_notifications`].
		allow_losses: bool,
	},

	/// Registers a method. The server will then handle requests using this method.
	RegisterMethod {
		/// Name of the method.
		name: String,
		/// Where to send requests.
		handler: mpsc::Sender<(RawServerRequestId, jsonrpc::Params)>,
	},

	/// Send a response to a request that a client made.
	AnswerRequest {
		/// Request to answer.
		request_id: RawServerRequestId,
		/// Response to send back.
		answer: Result<JsonValue, jsonrpc::Error>,
	},

	/// Registers a subscription. The server will then handle subscription requests of that
	/// method.
	RegisterSubscription {
		/// Unique identifier decided by the front-end in order to identify this registered
		/// subscription.
		unique_id: usize,
		/// Name of the method that registers the subscription.
		subscribe_method: String,
		/// Name of the method that unregisters the subscription.
		unsubscribe_method: String,
	},

	/// Send out a notification to all the clients registered to a subscription.
	SendOutNotif {
		/// The value that was passed in [`FrontToBack::RegisterSubscription::unique_id`] earlier.
		unique_id: usize,
		/// Notification to send to the subscribed clients.
		notification: JsonValue,
	},
}

impl Server {
	/// Initializes a new server.
	pub async fn new(url: impl AsRef<str>) -> Result<Self, Box<dyn error::Error + Send + Sync>> {
		let sockaddr: SocketAddr = url.as_ref().parse()?;
		let transport_server = WsTransportServer::builder(sockaddr).build().await?;
		let local_addr = *transport_server.local_addr();

		// We use an unbounded channel because the only exchanged messages concern registering
		// methods. The volume of messages is therefore very low and it doesn't make sense to have
		// a backpressure mechanism.
		// TODO: that's not true anymore ^
		let (to_back, from_front) = mpsc::unbounded();

		async_std::task::spawn(async move {
			background_task(transport_server.into(), from_front).await;
		});

		Ok(Server {
			to_back,
			registered_methods: Arc::new(Mutex::new(Default::default())),
			next_subscription_unique_id: Arc::new(atomic::AtomicUsize::new(0)),
			local_addr,
		})
	}

	/// Local socket address of the underlying transport server.
	pub fn local_addr(&self) -> &SocketAddr {
		&self.local_addr
	}

	/// Registers a notification method name towards the server.
	///
	/// Clients will then be able to call this method.
	/// The returned object allows you to process incoming notifications.
	///
	/// If `allow_losses` is true, then the server is allowed to drop notifications if the
	/// notifications handler (i.e. the code that uses [`RegisteredNotifications`]) is too slow
	/// to process notifications.
	///
	/// Returns an error if the method name was already registered.
	pub fn register_notification(
		&self,
		method_name: String,
		allow_losses: bool,
	) -> Result<RegisteredNotification, Error> {
		if !self.registered_methods.lock().insert(method_name.clone()) {
			return Err(Error::MethodAlreadyRegistered(method_name));
		}

		log::trace!("[frontend]: register_notification={}", method_name);
		let (tx, rx) = mpsc::channel(32);

		self.to_back
			.unbounded_send(FrontToBack::RegisterNotifications { name: method_name, handler: tx, allow_losses })
			.map_err(|e| Error::Internal(e.into_send_error()))?;

		Ok(RegisteredNotification { queries_rx: rx })
	}

	/// Registers a method towards the server.
	///
	/// Clients will then be able to call this method.
	/// The returned object allows you to handle incoming requests.
	///
	/// Contrary to [`register_notifications`](Server::register_notifications), there is no
	/// `allow_losses` parameter here. If the handler is too slow to process requests, then the
	/// server automatically returns an "internal error" to the client.
	///
	/// Returns an error if the method name was already registered.
	pub fn register_method(&self, method_name: String) -> Result<RegisteredMethod, Error> {
		if !self.registered_methods.lock().insert(method_name.clone()) {
			return Err(Error::MethodAlreadyRegistered(method_name));
		}

		log::trace!("[frontend]: register_method={}", method_name);
		let (tx, rx) = mpsc::channel(32);

		self.to_back
			.unbounded_send(FrontToBack::RegisterMethod { name: method_name, handler: tx })
			.map_err(|e| Error::Internal(e.into_send_error()))?;

		Ok(RegisteredMethod { to_back: self.to_back.clone(), queries_rx: rx })
	}

	/// Registers a subscription towards the server.
	///
	/// Clients will then be able to call this method.
	/// The returned object allows you to send out notifications.
	///
	/// Returns an error if one of the method names was already registered.
	pub fn register_subscription(
		&self,
		subscribe_method_name: String,
		unsubscribe_method_name: String,
	) -> Result<RegisteredSubscription, Error> {
		{
			let mut registered_methods = self.registered_methods.lock();

			// NOTE: We optimise for the case where neither method is registered.
			// This means that if the strings are equal this will be slower than just comparing the
			// strings.
			if !registered_methods.insert(subscribe_method_name.clone()) {
				return Err(Error::MethodAlreadyRegistered(subscribe_method_name));
			}
			if !registered_methods.insert(unsubscribe_method_name.clone()) {
				registered_methods.remove(&subscribe_method_name);
				return Err(Error::MethodAlreadyRegistered(unsubscribe_method_name));
			}
		}

		log::trace!(
			"[frontend]: server register subscription: subscribe_method={}, unsubscribe_method={}",
			subscribe_method_name,
			unsubscribe_method_name
		);
		let unique_id = self.next_subscription_unique_id.fetch_add(1, atomic::Ordering::Relaxed);

		self.to_back
			.unbounded_send(FrontToBack::RegisterSubscription {
				unique_id,
				subscribe_method: subscribe_method_name,
				unsubscribe_method: unsubscribe_method_name,
			})
			.map_err(|e| Error::Internal(e.into_send_error()))?;

		Ok(RegisteredSubscription { to_back: self.to_back.clone(), unique_id })
	}
}

impl RegisteredNotification {
	/// Returns the next notification.
	pub async fn next(&mut self) -> jsonrpc::Params {
		loop {
			match self.queries_rx.next().await {
				Some(v) => break v,
				None => futures::pending!(),
			}
		}
	}
}

impl RegisteredMethod {
	/// Returns the next request.
	pub async fn next(&mut self) -> IncomingRequest {
		let (request_id, params) = loop {
			match self.queries_rx.next().await {
				Some(v) => break v,
				None => futures::pending!(),
			}
		};
		IncomingRequest { to_back: self.to_back.clone(), request_id, params }
	}
}

impl RegisteredSubscription {
	/// Sends out a value to all the subscribing clients.
	pub async fn send(&mut self, value: JsonValue) -> Result<(), Error> {
		self.to_back
			.send(FrontToBack::SendOutNotif { unique_id: self.unique_id, notification: value })
			.await
			.map_err(Error::Internal)
	}
}

impl IncomingRequest {
	/// Returns the parameters of the request.
	pub fn params(&self) -> &jsonrpc::Params {
		&self.params
	}

	/// Respond to the request.
	pub async fn respond(mut self, response: impl Into<Result<JsonValue, jsonrpc::Error>>) -> Result<(), Error> {
		self.to_back
			.send(FrontToBack::AnswerRequest { request_id: self.request_id, answer: response.into() })
			.await
			.map_err(Error::Internal)
	}
}

/// Function being run in the background that processes messages from the frontend.
async fn background_task(mut server: RawServer, mut from_front: mpsc::UnboundedReceiver<FrontToBack>) {
	// List of notifications methods that the user has registered, and the channels to dispatch
	// incoming notifications.
	let mut registered_notifications: HashMap<String, (mpsc::Sender<_>, bool)> = HashMap::new();
	// List of methods that the user has registered, and the channels to dispatch incoming
	// requests.
	let mut registered_methods: HashMap<String, mpsc::Sender<_>> = HashMap::new();
	// For each registered subscription, a subscribe method linked to a unique identifier for
	// that subscription.
	let mut subscribe_methods: HashMap<String, usize> = HashMap::new();
	// For each registered subscription, an unsubscribe method linked to a unique identifier for
	// that subscription.
	let mut unsubscribe_methods: HashMap<String, usize> = HashMap::new();
	// For each registered subscription, a list of clients that are registered towards us.
	let mut subscribed_clients: HashMap<usize, Vec<RawServerSubscriptionId>> = HashMap::new();
	// Reversed mapping of `subscribed_clients`. Must always be in sync.
	let mut active_subscriptions: HashMap<RawServerSubscriptionId, usize> = HashMap::new();

	loop {
		// We need to do a little transformation in order to destroy the borrow to `client`
		// and `from_front`.
		let outcome = {
			let next_message = from_front.next();
			let next_event = server.next_event();
			pin_mut!(next_message);
			pin_mut!(next_event);
			match future::select(next_message, next_event).await {
				Either::Left((v, _)) => Either::Left(v),
				Either::Right((v, _)) => Either::Right(v),
			}
		};

		match outcome {
			Either::Left(None) => {
				log::trace!("[backend]: background_task terminated");
				return;
			}
			Either::Left(Some(FrontToBack::AnswerRequest { request_id, answer })) => {
				log::trace!("[backend]: answer_request: {:?} id: {:?}", answer, request_id);
				server.request_by_id(&request_id).unwrap().respond(answer);
			}
			Either::Left(Some(FrontToBack::RegisterNotifications { name, handler, allow_losses })) => {
				log::trace!("[backend]: register_notification: {:?}", name);
				registered_notifications.insert(name, (handler, allow_losses));
			}
			Either::Left(Some(FrontToBack::RegisterMethod { name, handler })) => {
				log::trace!("[backend]: register_method: {:?}", name);
				registered_methods.insert(name, handler);
			}
			Either::Left(Some(FrontToBack::RegisterSubscription {
				unique_id,
				subscribe_method,
				unsubscribe_method,
			})) => {
				log::trace!(
					"[backend]: register subscription=id={:?}, subscribe_method:{}, unsubscribe_method={}",
					unique_id,
					subscribe_method,
					unsubscribe_method
				);
				debug_assert_ne!(subscribe_method, unsubscribe_method);
				debug_assert!(!subscribe_methods.contains_key(&subscribe_method));
				debug_assert!(!subscribe_methods.contains_key(&unsubscribe_method));
				debug_assert!(!unsubscribe_methods.contains_key(&subscribe_method));
				debug_assert!(!unsubscribe_methods.contains_key(&unsubscribe_method));
				debug_assert!(!registered_methods.contains_key(&subscribe_method));
				debug_assert!(!registered_methods.contains_key(&unsubscribe_method));
				debug_assert!(!registered_notifications.contains_key(&subscribe_method));
				debug_assert!(!registered_notifications.contains_key(&unsubscribe_method));
				debug_assert!(!subscribed_clients.contains_key(&unique_id));
				subscribe_methods.insert(subscribe_method, unique_id);
				unsubscribe_methods.insert(unsubscribe_method, unique_id);
				subscribed_clients.insert(unique_id, Vec::new());
			}
			Either::Left(Some(FrontToBack::SendOutNotif { unique_id, notification })) => {
				log::trace!("[backend]: preparing response to subscription={:?}", unique_id);
				debug_assert!(subscribed_clients.contains_key(&unique_id));
				if let Some(clients) = subscribed_clients.get(&unique_id) {
					log::trace!(
						"[backend]: {} client(s) is subscribing to subscription={:?}",
						clients.len(),
						unique_id
					);
					for client in clients {
						debug_assert_eq!(active_subscriptions.get(client), Some(&unique_id));
						debug_assert!(server.subscription_by_id(*client).is_some());
						if let Some(sub) = server.subscription_by_id(*client) {
							sub.push(notification.clone()).await;
						}
					}
				} else {
					log::warn!("[backend]: server received invalid subscription={:?}", unique_id);
				}
			}
			Either::Right(RawServerEvent::Notification(notification)) => {
				log::trace!("[backend]: received notification: {:?}", notification);
				if let Some((handler, allow_losses)) = registered_notifications.get_mut(notification.method()) {
					let params: &jsonrpc::Params = notification.params().into();
					// Note: we just ignore errors. It doesn't make sense logically speaking to
					// unregister the notification here.
					if *allow_losses {
						let _ = handler.send(params.clone()).now_or_never();
					} else {
						let _ = handler.send(params.clone()).await;
					}
				}
			}
			Either::Right(RawServerEvent::Request(request)) => {
				if let Some(handler) = registered_methods.get_mut(request.method()) {
					log::trace!("[backend]: received request: {:?}", request);
					let params: &jsonrpc::Params = request.params().into();
					match handler.send((request.id(), params.clone())).now_or_never() {
						Some(Ok(())) => {}
						Some(Err(_)) | None => {
							request.respond(Err(From::from(jsonrpc::ErrorCode::ServerError(0))));
						}
					}
				} else if let Some(sub_unique_id) = subscribe_methods.get(request.method()) {
					log::trace!("[backend]: received subscription: {:?}", request);
					if let Ok(sub_id) = request.into_subscription() {
						debug_assert!(subscribed_clients.contains_key(&sub_unique_id));
						if let Some(clients) = subscribed_clients.get_mut(&sub_unique_id) {
							debug_assert!(clients.iter().all(|c| *c != sub_id));
							clients.push(sub_id);
						}

						debug_assert!(!active_subscriptions.contains_key(&sub_id));
						active_subscriptions.insert(sub_id, *sub_unique_id);
					}
				} else if let Some(sub_unique_id) = unsubscribe_methods.get(request.method()) {
					log::trace!("[backend]: received unsubscription: {:?}", request);
					match RawServerSubscriptionId::try_from(request.params()) {
						Ok(sub_id) => {
							debug_assert!(subscribed_clients.contains_key(&sub_unique_id));
							if let Some(clients) = subscribed_clients.get_mut(&sub_unique_id) {
								// TODO: we don't actually check whether the unsubscribe comes from the right
								//       clients, but since this the ID is randomly-generated, it should be
								//       fine
								if let Some(client_pos) = clients.iter().position(|c| *c == sub_id) {
									clients.remove(client_pos);
								}

								if let Some(s_u_id) = active_subscriptions.remove(&sub_id) {
									debug_assert_eq!(s_u_id, *sub_unique_id);
								}
							}
						}
						Err(_) => log::error!("Unsubscription of method=\"{}\" failed; The subscription ID must passed as the first argument of Array or \"subscription\" name of Object, got={:?}", request.method(), request.params()),
					}
				} else {
					// TODO: we assert that the request is valid because the parsing succeeded but
					// not registered.
					request.respond(Err(From::from(jsonrpc::ErrorCode::MethodNotFound)));
				}
			}
			Either::Right(RawServerEvent::SubscriptionsReady(_)) => {
				// We don't really care whether subscriptions are now ready.
			}
			Either::Right(RawServerEvent::SubscriptionsClosed(subscriptions)) => {
				log::trace!("[backend]: close subscriptions: {:?}", subscriptions);
				// Remove all the subscriptions from `active_subscriptions` and
				// `subscribed_clients`.
				for sub_id in subscriptions {
					if let Some(unique_id) = active_subscriptions.remove(&sub_id) {
						debug_assert!(subscribed_clients.contains_key(&unique_id));
						if let Some(clients) = subscribed_clients.get_mut(&unique_id) {
							assert_eq!(clients.iter().filter(|c| **c == sub_id).count(), 1);
							clients.retain(|c| *c != sub_id);
						}
					}
				}
			}
		}
	}
}