jsonrpsee_server/
lib.rs

1// Copyright 2019-2021 Parity Technologies (UK) Ltd.
2//
3// Permission is hereby granted, free of charge, to any
4// person obtaining a copy of this software and associated
5// documentation files (the "Software"), to deal in the
6// Software without restriction, including without
7// limitation the rights to use, copy, modify, merge,
8// publish, distribute, sublicense, and/or sell copies of
9// the Software, and to permit persons to whom the Software
10// is furnished to do so, subject to the following
11// conditions:
12//
13// The above copyright notice and this permission notice
14// shall be included in all copies or substantial portions
15// of the Software.
16//
17// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
18// ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
19// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
20// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
21// SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
24// IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25// DEALINGS IN THE SOFTWARE.
26
27//! # jsonrpsee-server
28//!
29//! `jsonrpsee-server` is a [JSON RPC](https://www.jsonrpc.org/specification) server that supports both HTTP and WebSocket transport.
30
31#![warn(missing_docs, missing_debug_implementations, missing_copy_implementations, unreachable_pub)]
32#![cfg_attr(not(test), warn(unused_crate_dependencies))]
33#![cfg_attr(docsrs, feature(doc_cfg))]
34
35mod future;
36mod server;
37mod transport;
38mod utils;
39
40pub mod middleware;
41
42#[cfg(test)]
43mod tests;
44
45pub use future::{stop_channel, AlreadyStoppedError, ConnectionGuard, ConnectionPermit, ServerHandle, StopHandle};
46pub use jsonrpsee_core::error::RegisterMethodError;
47pub use jsonrpsee_core::server::*;
48pub use jsonrpsee_core::{id_providers::*, traits::IdProvider};
49pub use jsonrpsee_types as types;
50pub use middleware::rpc::RpcServiceBuilder;
51pub use server::{
52	BatchRequestConfig, Builder as ServerBuilder, ConnectionState, PingConfig, Server, ServerConfig, TowerService,
53	TowerServiceBuilder,
54};
55pub use tracing;
56
57pub use jsonrpsee_core::http_helpers::{Body as HttpBody, Request as HttpRequest, Response as HttpResponse};
58pub use transport::http;
59pub use transport::ws;
60pub use utils::{serve, serve_with_graceful_shutdown};
61
62pub(crate) const LOG_TARGET: &str = "jsonrpsee-server";