pub struct HttpServerBuilder<M = ()> { /* private fields */ }
Expand description

Builder to create JSON-RPC HTTP server.

Implementations

Create a default server builder.

Add a middleware to the builder Middleware.

use std::{time::Instant, net::SocketAddr};

use jsonrpsee_core::middleware::{HttpMiddleware, Headers, MethodKind, Params};
use jsonrpsee_http_server::HttpServerBuilder;

#[derive(Clone)]
struct MyMiddleware;

impl HttpMiddleware for MyMiddleware {
    type Instant = Instant;

    // Called once the HTTP request is received, it may be a single JSON-RPC call
    // or batch.
    fn on_request(&self, _remote_addr: SocketAddr, _headers: &Headers) -> Instant {
        Instant::now()
    }

    // Called once a single JSON-RPC method call is processed, it may be called multiple times
    // on batches.
    fn on_call(&self, method_name: &str, params: Params, kind: MethodKind) {
        println!("Call to method: '{}' params: {:?}, kind: {}", method_name, params, kind);
    }

    // Called once a single JSON-RPC call is completed, it may be called multiple times
    // on batches.
    fn on_result(&self, method_name: &str, success: bool, started_at: Instant) {
        println!("Call to '{}' took {:?}", method_name, started_at.elapsed());
    }

    // Called the entire JSON-RPC is completed, called on once for both single calls or batches.
    fn on_response(&self, result: &str, started_at: Instant) {
        println!("complete JSON-RPC response: {}, took: {:?}", result, started_at.elapsed());
    }
}

let builder = HttpServerBuilder::new().set_middleware(MyMiddleware);

Sets the maximum size of a request body in bytes (default is 10 MiB).

Sets the maximum size of a response body in bytes (default is 10 MiB).

Sets access control settings.

Enables or disables support of batch requests. By default, support is enabled.

Register a new resource kind. Errors if label is already registered, or if the number of registered resources on this server instance would exceed 8.

See the module documentation for resource_limiting for details.

Configure a custom tokio::runtime::Handle to run the server on.

Default: tokio::spawn

Enable health endpoint. Allows you to expose one of the methods under GET / The method will be invoked with no parameters. Error returned from the method will be converted to status 500 response. Expects a tuple with (, ).

Fails if the path is missing /.

Finalizes the configuration of the server with customized TCP settings on the socket and on hyper.

use jsonrpsee_http_server::HttpServerBuilder;
use socket2::{Domain, Socket, Type};
use std::net::TcpListener;

#[tokio::main]
async fn main() {
  let addr = "127.0.0.1:0".parse().unwrap();
  let domain = Domain::for_address(addr);
  let socket = Socket::new(domain, Type::STREAM, None).unwrap();
  socket.set_nonblocking(true).unwrap();

  let address = addr.into();
  socket.bind(&address).unwrap();
  socket.listen(4096).unwrap();

  let listener: TcpListener = socket.into();
  let local_addr = listener.local_addr().ok();

  // hyper does some settings on the provided socket, ensure that nothing breaks our "expected settings".

  let listener = hyper::Server::from_tcp(listener)
    .unwrap()
    .tcp_sleep_on_accept_errors(true)
    .tcp_keepalive(None)
    .tcp_nodelay(true);

  let server = HttpServerBuilder::new().build_from_hyper(listener, addr).unwrap();
}

Finalizes the configuration of the server with customized TCP settings on the socket. Note, that hyper might overwrite some of the TCP settings on the socket if you want full-control of socket settings use Builder::build_from_hyper instead.

use jsonrpsee_http_server::HttpServerBuilder;
use socket2::{Domain, Socket, Type};
use std::time::Duration;

#[tokio::main]
async fn main() {
  let addr = "127.0.0.1:0".parse().unwrap();
  let domain = Domain::for_address(addr);
  let socket = Socket::new(domain, Type::STREAM, None).unwrap();
  socket.set_nonblocking(true).unwrap();

  let address = addr.into();
  socket.bind(&address).unwrap();

  socket.listen(4096).unwrap();

  let server = HttpServerBuilder::new().build_from_tcp(socket).unwrap();
}

Finalizes the configuration of the server.

#[tokio::main]
async fn main() {
  let listener = std::net::TcpListener::bind("127.0.0.1:0").unwrap();
  let occupied_addr = listener.local_addr().unwrap();
  let addrs: &[std::net::SocketAddr] = &[
      occupied_addr,
      "127.0.0.1:0".parse().unwrap(),
  ];
  assert!(jsonrpsee_http_server::HttpServerBuilder::default().build(occupied_addr).await.is_err());
  assert!(jsonrpsee_http_server::HttpServerBuilder::default().build(addrs).await.is_ok());
}

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more