mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-01-13 00:25:18 +00:00
82fef674ed
Some checks are pending
abi-consistent-check / build-and-compare (push) Waiting to run
code-coverage / unittest-cov (push) Waiting to run
rust / check (push) Waiting to run
rust / test (push) Waiting to run
rust / lints (push) Waiting to run
functional-test / test (push) Waiting to run
* add metrics in log sync package * udpate auto sync metrics * Add metrics for completed file sync * add more metrics for serial file sync * adjust default timeout value for auto sync * fix metrics rpc for Timer type * add metrics for channel * refactor channel metrics * add timeout metrics for segment sync * refactor channel receiver
116 lines
3.1 KiB
Rust
116 lines
3.1 KiB
Rust
use crate::error::Error;
|
|
use crate::metrics::unbounded_channel;
|
|
use metrics::{Counter, CounterUsize};
|
|
use std::sync::Arc;
|
|
use std::time::Duration;
|
|
use tokio::sync::oneshot;
|
|
use tokio::time::timeout;
|
|
|
|
const DEFAULT_REQUEST_TIMEOUT: Duration = Duration::from_secs(3);
|
|
|
|
pub type ResponseSender<Res> = oneshot::Sender<Res>;
|
|
|
|
#[derive(Debug)]
|
|
pub enum Message<N, Req, Res> {
|
|
Notification(N),
|
|
Request(Req, ResponseSender<Res>),
|
|
}
|
|
|
|
pub struct Channel<N, Req, Res> {
|
|
_phantom: std::marker::PhantomData<(N, Req, Res)>,
|
|
}
|
|
|
|
impl<N, Req, Res> Channel<N, Req, Res> {
|
|
pub fn unbounded(name: &str) -> (Sender<N, Req, Res>, Receiver<N, Req, Res>) {
|
|
let metrics_group = format!("common_channel_{}", name);
|
|
let (sender, receiver) = unbounded_channel(metrics_group.as_str());
|
|
let metrics_timeout = CounterUsize::register_with_group(metrics_group.as_str(), "timeout");
|
|
(
|
|
Sender {
|
|
chan: sender,
|
|
metrics_timeout,
|
|
},
|
|
receiver,
|
|
)
|
|
}
|
|
}
|
|
|
|
pub struct Sender<N, Req, Res> {
|
|
chan: crate::metrics::Sender<Message<N, Req, Res>>,
|
|
metrics_timeout: Arc<dyn Counter<usize>>,
|
|
}
|
|
|
|
impl<N, Req, Res> Clone for Sender<N, Req, Res> {
|
|
fn clone(&self) -> Self {
|
|
Sender {
|
|
chan: self.chan.clone(),
|
|
metrics_timeout: self.metrics_timeout.clone(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<N, Req, Res> Sender<N, Req, Res> {
|
|
pub fn notify(&self, msg: N) -> Result<(), Error<N, Req, Res>> {
|
|
self.chan
|
|
.send(Message::Notification(msg))
|
|
.map_err(|e| Error::SendError(e))
|
|
}
|
|
|
|
pub async fn request(&self, request: Req) -> Result<Res, Error<N, Req, Res>> {
|
|
let (sender, receiver) = oneshot::channel();
|
|
|
|
self.chan
|
|
.send(Message::Request(request, sender))
|
|
.map_err(|e| Error::SendError(e))?;
|
|
|
|
timeout(DEFAULT_REQUEST_TIMEOUT, receiver)
|
|
.await
|
|
.map_err(|_| {
|
|
self.metrics_timeout.inc(1);
|
|
Error::TimeoutError
|
|
})?
|
|
.map_err(|e| Error::RecvError(e))
|
|
}
|
|
}
|
|
|
|
pub type Receiver<N, Req, Res> = crate::metrics::Receiver<Message<N, Req, Res>>;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[derive(Debug)]
|
|
enum Notification {}
|
|
|
|
#[derive(Debug)]
|
|
enum Request {
|
|
GetNumber,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
|
enum Response {
|
|
GetNumber(u32),
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn request_response() {
|
|
let (tx, mut rx) = Channel::<Notification, Request, Response>::unbounded("test");
|
|
|
|
let task1 = async move {
|
|
match rx.recv().await.expect("not dropped") {
|
|
Message::Notification(_) => {}
|
|
Message::Request(Request::GetNumber, sender) => {
|
|
sender.send(Response::GetNumber(42)).expect("not dropped");
|
|
}
|
|
}
|
|
};
|
|
|
|
let task2 = async move {
|
|
let result = tx.request(Request::GetNumber).await.expect("not dropped");
|
|
assert_eq!(result, Response::GetNumber(42));
|
|
};
|
|
|
|
tokio::join!(task1, task2);
|
|
}
|
|
}
|