jsonrpsee_core/client/mod.rs
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 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
// Copyright 2019-2021 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.
//! Shared utilities for `jsonrpsee` clients.
cfg_async_client! {
pub mod async_client;
pub use async_client::{Client, ClientBuilder};
}
pub mod error;
pub use error::Error;
use std::fmt;
use std::ops::Range;
use std::pin::Pin;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::{Arc, RwLock};
use std::task::{self, Poll};
use tokio::sync::mpsc::error::TrySendError;
use crate::params::BatchRequestBuilder;
use crate::traits::ToRpcParams;
use async_trait::async_trait;
use core::marker::PhantomData;
use futures_util::stream::{Stream, StreamExt};
use jsonrpsee_types::{ErrorObject, Id, SubscriptionId};
use serde::de::DeserializeOwned;
use serde_json::Value as JsonValue;
use tokio::sync::{mpsc, oneshot};
/// Shared state whether a subscription has lagged or not.
#[derive(Debug, Clone)]
pub(crate) struct SubscriptionLagged(Arc<RwLock<bool>>);
impl SubscriptionLagged {
/// Create a new [`SubscriptionLagged`].
pub(crate) fn new() -> Self {
Self(Arc::new(RwLock::new(false)))
}
/// A message has been missed.
pub(crate) fn set_lagged(&self) {
*self.0.write().expect("RwLock not poised; qed") = true;
}
/// Check whether the subscription has missed a message.
pub(crate) fn has_lagged(&self) -> bool {
*self.0.read().expect("RwLock not poised; qed")
}
}
// Re-exports for the `rpc_params` macro.
#[doc(hidden)]
pub mod __reexports {
// Needs to be in scope for `ArrayParams` to implement it.
pub use crate::traits::ToRpcParams;
// Main builder object for constructing the rpc parameters.
pub use crate::params::ArrayParams;
}
/// [JSON-RPC](https://www.jsonrpc.org/specification) client interface that can make requests and notifications.
#[async_trait]
pub trait ClientT {
/// Send a [notification request](https://www.jsonrpc.org/specification#notification)
async fn notification<Params>(&self, method: &str, params: Params) -> Result<(), Error>
where
Params: ToRpcParams + Send;
/// Send a [method call request](https://www.jsonrpc.org/specification#request_object).
async fn request<R, Params>(&self, method: &str, params: Params) -> Result<R, Error>
where
R: DeserializeOwned,
Params: ToRpcParams + Send;
/// Send a [batch request](https://www.jsonrpc.org/specification#batch).
///
/// The response to batch are returned in the same order as it was inserted in the batch.
///
///
/// Returns `Ok` if all requests in the batch were answered.
/// Returns `Error` if the network failed or any of the responses could be parsed a valid JSON-RPC response.
async fn batch_request<'a, R>(&self, batch: BatchRequestBuilder<'a>) -> Result<BatchResponse<'a, R>, Error>
where
R: DeserializeOwned + fmt::Debug + 'a;
}
/// [JSON-RPC](https://www.jsonrpc.org/specification) client interface that can make requests, notifications and subscriptions.
#[async_trait]
pub trait SubscriptionClientT: ClientT {
/// Initiate a subscription by performing a JSON-RPC method call where the server responds with
/// a `Subscription ID` that is used to fetch messages on that subscription,
///
/// The `subscribe_method` and `params` are used to ask for the subscription towards the
/// server.
///
/// The params may be used as input for the subscription for the server to process.
///
/// The `unsubscribe_method` is used to close the subscription
///
/// The `Notif` param is a generic type to receive generic subscriptions, see [`Subscription`] for further
/// documentation.
async fn subscribe<'a, Notif, Params>(
&self,
subscribe_method: &'a str,
params: Params,
unsubscribe_method: &'a str,
) -> Result<Subscription<Notif>, Error>
where
Params: ToRpcParams + Send,
Notif: DeserializeOwned;
/// Register a method subscription, this is used to filter only server notifications that a user is interested in.
///
/// The `Notif` param is a generic type to receive generic subscriptions, see [`Subscription`] for further
/// documentation.
async fn subscribe_to_method<'a, Notif>(&self, method: &'a str) -> Result<Subscription<Notif>, Error>
where
Notif: DeserializeOwned;
}
/// Marker trait to determine whether a type implements `Send` or not.
#[cfg(target_arch = "wasm32")]
pub trait MaybeSend {}
/// Marker trait to determine whether a type implements `Send` or not.
#[cfg(not(target_arch = "wasm32"))]
pub trait MaybeSend: Send {}
#[cfg(not(target_arch = "wasm32"))]
impl<T: Send> MaybeSend for T {}
#[cfg(target_arch = "wasm32")]
impl<T> MaybeSend for T {}
/// Transport interface to send data asynchronous.
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
pub trait TransportSenderT: MaybeSend + 'static {
/// Error that may occur during sending a message.
type Error: std::error::Error + Send + Sync;
/// Send.
async fn send(&mut self, msg: String) -> Result<(), Self::Error>;
/// This is optional because it's most likely relevant for WebSocket transports only.
/// You should only implement this is your transport supports sending periodic pings.
///
/// Send ping frame (opcode of 0x9).
async fn send_ping(&mut self) -> Result<(), Self::Error> {
Ok(())
}
/// This is optional because it's most likely relevant for WebSocket transports only.
/// You should only implement this is your transport supports being closed.
///
/// Send customized close message.
async fn close(&mut self) -> Result<(), Self::Error> {
Ok(())
}
}
/// Message type received from the RPC server.
/// It can either be plain text data, bytes, or `Pong` messages.
#[derive(Debug, Clone)]
pub enum ReceivedMessage {
/// Incoming packet contains plain `String` data.
Text(String),
/// Incoming packet contains bytes.
Bytes(Vec<u8>),
/// Incoming `Pong` frame as a reply to a previously submitted `Ping` frame.
Pong,
}
/// Transport interface to receive data asynchronous.
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
pub trait TransportReceiverT: 'static {
/// Error that may occur during receiving a message.
type Error: std::error::Error + Send + Sync;
/// Receive.
async fn receive(&mut self) -> Result<ReceivedMessage, Self::Error>;
}
/// Convert the given values to a [`crate::params::ArrayParams`] as expected by a
/// jsonrpsee Client (http or websocket).
///
/// # Panics
///
/// Panics if the serialization of parameters fails.
#[macro_export]
macro_rules! rpc_params {
($($param:expr),*) => {
{
let mut params = $crate::client::__reexports::ArrayParams::new();
$(
if let Err(err) = params.insert($param) {
panic!("Parameter `{}` cannot be serialized: {:?}", stringify!($param), err);
}
)*
params
}
};
}
/// Subscription kind
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum SubscriptionKind {
/// Get notifications based on Subscription ID.
Subscription(SubscriptionId<'static>),
/// Get notifications based on method name.
Method(String),
}
/// The reason why the subscription was closed.
#[derive(Debug, Copy, Clone)]
pub enum SubscriptionCloseReason {
/// The connection was closed.
ConnectionClosed,
/// The subscription could not keep up with the server.
Lagged,
}
/// Represent a client-side subscription which is implemented on top of
/// a bounded channel where it's possible that the receiver may
/// not keep up with the sender side a.k.a "slow receiver problem"
///
/// The Subscription will try to `unsubscribe` in the drop implementation
/// but it may fail if the underlying buffer is full.
/// Thus, if you want to ensure it's actually unsubscribed then
/// [`Subscription::unsubscribe`] is recommended to use.
///
/// ## Lagging
///
/// All messages from the server must be kept in a buffer in the client
/// until they are read by polling the [`Subscription`]. If you don't
/// poll the client subscription quickly enough, the buffer may fill
/// up and when subscription is full the subscription is then closed.
///
/// You can call [`Subscription::close_reason`] to determine why
/// the subscription was closed.
#[derive(Debug)]
pub struct Subscription<Notif> {
is_closed: bool,
/// Channel to send requests to the background task.
to_back: mpsc::Sender<FrontToBack>,
/// Channel from which we receive notifications from the server, as encoded `JsonValue`s.
rx: SubscriptionReceiver,
/// Callback kind.
kind: Option<SubscriptionKind>,
/// Marker in order to pin the `Notif` parameter.
marker: PhantomData<Notif>,
}
// `Subscription` does not automatically implement this due to `PhantomData<Notif>`,
// but type type has no need to be pinned.
impl<Notif> std::marker::Unpin for Subscription<Notif> {}
impl<Notif> Subscription<Notif> {
/// Create a new subscription.
fn new(to_back: mpsc::Sender<FrontToBack>, rx: SubscriptionReceiver, kind: SubscriptionKind) -> Self {
Self { to_back, rx, kind: Some(kind), marker: PhantomData, is_closed: false }
}
/// Return the subscription type and, if applicable, ID.
pub fn kind(&self) -> &SubscriptionKind {
self.kind.as_ref().expect("only None after unsubscribe; qed")
}
/// Unsubscribe and consume the subscription.
pub async fn unsubscribe(mut self) -> Result<(), Error> {
let msg = match self.kind.take().expect("only None after unsubscribe; qed") {
SubscriptionKind::Method(notif) => FrontToBack::UnregisterNotification(notif),
SubscriptionKind::Subscription(sub_id) => FrontToBack::SubscriptionClosed(sub_id),
};
// If this fails the connection was already closed i.e, already "unsubscribed".
let _ = self.to_back.send(msg).await;
// wait until notif channel is closed then the subscription was closed.
while self.rx.next().await.is_some() {}
Ok(())
}
/// The reason why the subscription was closed.
///
/// Returns Some(reason) is the subscription was closed otherwise
/// None is returned.
pub fn close_reason(&self) -> Option<SubscriptionCloseReason> {
let lagged = self.rx.lagged.has_lagged();
// `is_closed` is only set if the subscription has been polled
// and that is why lagged is checked here as well.
if !self.is_closed && !lagged {
return None;
}
if lagged {
Some(SubscriptionCloseReason::Lagged)
} else {
Some(SubscriptionCloseReason::ConnectionClosed)
}
}
}
/// Batch request message.
#[derive(Debug)]
struct BatchMessage {
/// Serialized batch request.
raw: String,
/// Request IDs.
ids: Range<u64>,
/// One-shot channel over which we send back the result of this request.
send_back: oneshot::Sender<Result<Vec<BatchEntry<'static, JsonValue>>, Error>>,
}
/// Request message.
#[derive(Debug)]
struct RequestMessage {
/// Serialized message.
raw: String,
/// Request ID.
id: Id<'static>,
/// One-shot channel over which we send back the result of this request.
send_back: Option<oneshot::Sender<Result<JsonValue, Error>>>,
}
/// Subscription message.
#[derive(Debug)]
struct SubscriptionMessage {
/// Serialized message.
raw: String,
/// Request ID of the subscribe message.
subscribe_id: Id<'static>,
/// Request ID of the unsubscribe message.
unsubscribe_id: Id<'static>,
/// Method to use to unsubscribe later. Used if the channel unexpectedly closes.
unsubscribe_method: String,
/// If the subscription succeeds, we return a [`mpsc::Receiver`] that will receive notifications.
/// When we get a response from the server about that subscription, we send the result over
/// this channel.
send_back: oneshot::Sender<Result<(SubscriptionReceiver, SubscriptionId<'static>), Error>>,
}
/// RegisterNotification message.
#[derive(Debug)]
struct RegisterNotificationMessage {
/// Method name this notification handler is attached to
method: String,
/// We return a [`mpsc::Receiver`] that will receive notifications.
/// When we get a response from the server about that subscription, we send the result over
/// this channel.
send_back: oneshot::Sender<Result<(SubscriptionReceiver, String), Error>>,
}
/// Message that the Client can send to the background task.
#[derive(Debug)]
enum FrontToBack {
/// Send a batch request to the server.
Batch(BatchMessage),
/// Send a notification to the server.
Notification(String),
/// Send a request to the server.
Request(RequestMessage),
/// Send a subscription request to the server.
Subscribe(SubscriptionMessage),
/// Register a notification handler
RegisterNotification(RegisterNotificationMessage),
/// Unregister a notification handler
UnregisterNotification(String),
/// When a subscription channel is closed, we send this message to the background
/// task to mark it ready for garbage collection.
// NOTE: It is not possible to cancel pending subscriptions or pending requests.
// Such operations will be blocked until a response is received or the background
// thread has been terminated.
SubscriptionClosed(SubscriptionId<'static>),
}
impl<Notif> Subscription<Notif>
where
Notif: DeserializeOwned,
{
/// Returns the next notification from the stream.
/// This may return `None` if the subscription has been terminated,
/// which may happen if the channel becomes full or is dropped.
///
/// **Note:** This has an identical signature to the [`StreamExt::next`]
/// method (and delegates to that). Import [`StreamExt`] if you'd like
/// access to other stream combinator methods.
#[allow(clippy::should_implement_trait)]
pub async fn next(&mut self) -> Option<Result<Notif, serde_json::Error>> {
StreamExt::next(self).await
}
}
impl<Notif> Stream for Subscription<Notif>
where
Notif: DeserializeOwned,
{
type Item = Result<Notif, serde_json::Error>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut task::Context<'_>) -> task::Poll<Option<Self::Item>> {
let res = match futures_util::ready!(self.rx.poll_next_unpin(cx)) {
Some(v) => Some(serde_json::from_value::<Notif>(v).map_err(Into::into)),
None => {
self.is_closed = true;
None
}
};
Poll::Ready(res)
}
}
impl<Notif> Drop for Subscription<Notif> {
fn drop(&mut self) {
// We can't actually guarantee that this goes through. If the background task is busy, then
// the channel's buffer will be full.
// However, when a notification arrives, the background task will realize that the channel
// to the `Callback` has been closed.
let msg = match self.kind.take() {
Some(SubscriptionKind::Method(notif)) => FrontToBack::UnregisterNotification(notif),
Some(SubscriptionKind::Subscription(sub_id)) => FrontToBack::SubscriptionClosed(sub_id),
None => return,
};
let _ = self.to_back.try_send(msg);
}
}
#[derive(Debug)]
/// Keep track of request IDs.
pub struct RequestIdManager {
/// Get the next request ID.
current_id: CurrentId,
/// Request ID type.
id_kind: IdKind,
}
impl RequestIdManager {
/// Create a new `RequestIdGuard` with the provided concurrency limit.
pub fn new(id_kind: IdKind) -> Self {
Self { current_id: CurrentId::new(), id_kind }
}
/// Attempts to get the next request ID.
pub fn next_request_id(&self) -> Id<'static> {
self.id_kind.into_id(self.current_id.next())
}
/// Get a handle to the `IdKind`.
pub fn as_id_kind(&self) -> IdKind {
self.id_kind
}
}
/// JSON-RPC request object id data type.
#[derive(Debug, Copy, Clone)]
pub enum IdKind {
/// String.
String,
/// Number.
Number,
}
impl IdKind {
/// Generate an `Id` from number.
pub fn into_id(self, id: u64) -> Id<'static> {
match self {
IdKind::Number => Id::Number(id),
IdKind::String => Id::Str(format!("{id}").into()),
}
}
}
#[derive(Debug)]
struct CurrentId(AtomicUsize);
impl CurrentId {
fn new() -> Self {
CurrentId(AtomicUsize::new(0))
}
fn next(&self) -> u64 {
self.0
.fetch_add(1, Ordering::Relaxed)
.try_into()
.expect("usize -> u64 infallible, there are no CPUs > 64 bits; qed")
}
}
/// Generate a range of IDs to be used in a batch request.
pub fn generate_batch_id_range(id: Id, len: u64) -> Result<Range<u64>, Error> {
let id_start = id.try_parse_inner_as_number()?;
let id_end = id_start
.checked_add(len)
.ok_or_else(|| Error::Custom("BatchID range wrapped; restart the client or try again later".to_string()))?;
Ok(id_start..id_end)
}
/// Represent a single entry in a batch response.
pub type BatchEntry<'a, R> = Result<R, ErrorObject<'a>>;
/// Batch response.
#[derive(Debug, Clone)]
pub struct BatchResponse<'a, R> {
successful_calls: usize,
failed_calls: usize,
responses: Vec<BatchEntry<'a, R>>,
}
impl<'a, R: fmt::Debug + 'a> BatchResponse<'a, R> {
/// Create a new [`BatchResponse`].
pub fn new(successful_calls: usize, responses: Vec<BatchEntry<'a, R>>, failed_calls: usize) -> Self {
Self { successful_calls, responses, failed_calls }
}
/// Get the length of the batch response.
pub fn len(&self) -> usize {
self.responses.len()
}
/// Is empty.
pub fn is_empty(&self) -> bool {
self.responses.len() == 0
}
/// Get the number of successful calls in the batch.
pub fn num_successful_calls(&self) -> usize {
self.successful_calls
}
/// Get the number of failed calls in the batch.
pub fn num_failed_calls(&self) -> usize {
self.failed_calls
}
/// Returns `Ok(iterator)` if all responses were successful
/// otherwise `Err(iterator)` is returned.
///
/// If you want get all responses if an error responses occurs use [`BatchResponse::into_iter`]
/// instead where it's possible to implement customized logic.
pub fn into_ok(
self,
) -> Result<impl Iterator<Item = R> + 'a + std::fmt::Debug, impl Iterator<Item = ErrorObject<'a>> + std::fmt::Debug>
{
if self.failed_calls > 0 {
Err(self.into_iter().filter_map(|err| err.err()))
} else {
Ok(self.into_iter().filter_map(|r| r.ok()))
}
}
/// Similar to [`BatchResponse::into_ok`] but takes the responses by reference instead.
pub fn ok(
&self,
) -> Result<impl Iterator<Item = &R> + std::fmt::Debug, impl Iterator<Item = &ErrorObject<'a>> + std::fmt::Debug> {
if self.failed_calls > 0 {
Err(self.responses.iter().filter_map(|err| err.as_ref().err()))
} else {
Ok(self.responses.iter().filter_map(|r| r.as_ref().ok()))
}
}
/// Returns an iterator over all responses.
pub fn iter(&self) -> impl Iterator<Item = &BatchEntry<'_, R>> {
self.responses.iter()
}
}
impl<'a, R> IntoIterator for BatchResponse<'a, R> {
type Item = BatchEntry<'a, R>;
type IntoIter = std::vec::IntoIter<Self::Item>;
fn into_iter(self) -> Self::IntoIter {
self.responses.into_iter()
}
}
#[derive(thiserror::Error, Debug)]
enum TrySubscriptionSendError {
#[error("The subscription is closed")]
Closed,
#[error("A subscription message was dropped")]
TooSlow(JsonValue),
}
#[derive(Debug)]
pub(crate) struct SubscriptionSender {
inner: mpsc::Sender<JsonValue>,
lagged: SubscriptionLagged,
}
impl SubscriptionSender {
fn send(&self, msg: JsonValue) -> Result<(), TrySubscriptionSendError> {
match self.inner.try_send(msg) {
Ok(_) => Ok(()),
Err(TrySendError::Closed(_)) => Err(TrySubscriptionSendError::Closed),
Err(TrySendError::Full(m)) => {
self.lagged.set_lagged();
Err(TrySubscriptionSendError::TooSlow(m))
}
}
}
}
#[derive(Debug)]
pub(crate) struct SubscriptionReceiver {
inner: mpsc::Receiver<JsonValue>,
lagged: SubscriptionLagged,
}
impl Stream for SubscriptionReceiver {
type Item = JsonValue;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut task::Context<'_>) -> task::Poll<Option<Self::Item>> {
self.inner.poll_recv(cx)
}
}
fn subscription_channel(max_buf_size: usize) -> (SubscriptionSender, SubscriptionReceiver) {
let (tx, rx) = mpsc::channel(max_buf_size);
let lagged_tx = SubscriptionLagged::new();
let lagged_rx = lagged_tx.clone();
(SubscriptionSender { inner: tx, lagged: lagged_tx }, SubscriptionReceiver { inner: rx, lagged: lagged_rx })
}