|
| 1 | +use serde::{Deserialize, Serialize}; |
| 2 | +use serde_json::json; |
| 3 | +use std::net::SocketAddr; |
| 4 | +use tokio_util::sync::CancellationToken; |
| 5 | +use tracing::{debug, error}; |
| 6 | +use warp::Filter as _; |
| 7 | + |
| 8 | +use balius_runtime::{wit, Error, Runtime}; |
| 9 | + |
| 10 | +#[derive(Deserialize)] |
| 11 | +struct Request { |
| 12 | + pub id: Option<String>, |
| 13 | + pub method: String, |
| 14 | + pub params: serde_json::Value, |
| 15 | +} |
| 16 | + |
| 17 | +#[derive(Serialize)] |
| 18 | +struct ErrorResponse { |
| 19 | + error: String, |
| 20 | +} |
| 21 | + |
| 22 | +fn parse_request(body: serde_json::Value) -> Result<Request, ErrorResponse> { |
| 23 | + match serde_json::from_value(body) { |
| 24 | + Ok(x) => Ok(x), |
| 25 | + Err(x) => Err(ErrorResponse { |
| 26 | + error: x.to_string(), |
| 27 | + }), |
| 28 | + } |
| 29 | +} |
| 30 | + |
| 31 | +pub async fn handle_request( |
| 32 | + runtime: Runtime, |
| 33 | + worker: String, |
| 34 | + body: serde_json::Value, |
| 35 | +) -> warp::reply::Json { |
| 36 | + let request = match parse_request(body) { |
| 37 | + Ok(x) => x, |
| 38 | + Err(err) => return warp::reply::json(&err), |
| 39 | + }; |
| 40 | + |
| 41 | + debug!( |
| 42 | + worker, |
| 43 | + id = request.id, |
| 44 | + method = request.method, |
| 45 | + "handling request" |
| 46 | + ); |
| 47 | + |
| 48 | + let params = serde_json::to_vec(&request.params).unwrap(); |
| 49 | + |
| 50 | + let reply = runtime |
| 51 | + .handle_request(&worker, &request.method, params) |
| 52 | + .await; |
| 53 | + |
| 54 | + match reply { |
| 55 | + Ok(x) => { |
| 56 | + debug!(worker, id = request.id, "request successful"); |
| 57 | + |
| 58 | + let x = match x { |
| 59 | + wit::Response::Acknowledge => json!({}), |
| 60 | + wit::Response::Json(x) => serde_json::from_slice(&x).unwrap(), |
| 61 | + wit::Response::Cbor(x) => json!({ "cbor": hex::encode(x) }), |
| 62 | + wit::Response::PartialTx(x) => json!({ "tx": hex::encode(x) }), |
| 63 | + }; |
| 64 | + |
| 65 | + warp::reply::json(&x) |
| 66 | + } |
| 67 | + Err(err) => { |
| 68 | + error!(worker, id = request.id, "request failed"); |
| 69 | + warp::reply::json(&ErrorResponse { |
| 70 | + error: err.to_string(), |
| 71 | + }) |
| 72 | + } |
| 73 | + } |
| 74 | +} |
| 75 | + |
| 76 | +pub async fn serve( |
| 77 | + config: balius_runtime::drivers::jsonrpc::Config, |
| 78 | + runtime: Runtime, |
| 79 | + cancel: CancellationToken, |
| 80 | +) -> Result<(), Error> { |
| 81 | + let filter = warp::any() |
| 82 | + .map(move || runtime.clone()) |
| 83 | + .and(warp::header::<String>("worker")) |
| 84 | + .and(warp::post()) |
| 85 | + .and(warp::body::json()) |
| 86 | + .then(handle_request); |
| 87 | + |
| 88 | + let address: SocketAddr = config |
| 89 | + .listen_address |
| 90 | + .parse() |
| 91 | + .map_err(|x: std::net::AddrParseError| Error::Config(x.to_string()))?; |
| 92 | + |
| 93 | + let (addr, server) = |
| 94 | + warp::serve(filter).bind_with_graceful_shutdown(address, cancel.cancelled_owned()); |
| 95 | + |
| 96 | + tracing::info!(%addr, "Json-RPC server listening"); |
| 97 | + |
| 98 | + server.await; |
| 99 | + |
| 100 | + Ok(()) |
| 101 | +} |
0 commit comments