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
use jsonrpsee_types::ErrorObjectOwned;

// We're marking functions on the error paths as #[cold] to both reduce chance of inlining and to
// make the generated assembly slightly better.

#[cold]
pub fn log_fail_parse(arg_pat: &str, ty: &str, err: &ErrorObjectOwned, optional: bool) {
	let optional = if optional { "optional " } else { "" };
	tracing::debug!("Error parsing {optional}\"{arg_pat}\" as \"{ty}\": {err}");
}

#[cold]
pub fn log_fail_parse_as_object(err: &ErrorObjectOwned) {
	tracing::debug!("Failed to parse JSON-RPC params as object: {err}");
}

#[cold]
pub fn panic_fail_serialize(param: &str, err: serde_json::Error) -> ! {
	panic!("Parameter `{param}` cannot be serialized: {err}");
}

#[cfg(debug_assertions)]
#[cold]
pub fn panic_fail_register() -> ! {
	panic!("RPC macro method names should never conflict. This is a bug, please report it.");
}