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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use std::{io::Result, time};

use crate::ids;
use avalanche_proto::{google::protobuf::Empty, vm::AppRequestMsg};
use tonic::{Request, Response};

/// ref. https://pkg.go.dev/github.com/ava-labs/avalanchego/snow/engine/common#AppHandler
#[tonic::async_trait]
pub trait AppHandler {
    async fn app_request(
        &self,
        node_id: &ids::node::Id,
        request_id: u32,
        deadline: time::Instant,
        request: &[u8],
    ) -> Result<()>;
    async fn app_request_failed(&self, node_id: &ids::node::Id, request_id: u32) -> Result<()>;
    async fn app_response(
        &self,
        node_id: &ids::node::Id,
        request_id: u32,
        response: &[u8],
    ) -> Result<()>;
    async fn app_gossip(&self, node_id: &ids::node::Id, msg: &[u8]) -> Result<()>;
}

/// gRPC Server AppHandler allows for conditional traits to be implemented for the gRPC
/// server service.
#[tonic::async_trait]
pub trait AppHandlerServer {
    async fn app_request(
        &self,
        _request: Request<AppRequestMsg>,
    ) -> std::result::Result<Response<Empty>, tonic::Status>;

    async fn app_request_failed(&self, node_id: &ids::node::Id, request_id: u32) -> Result<()>;
    async fn app_response(
        &self,
        node_id: &ids::node::Id,
        request_id: u32,
        response: &[u8],
    ) -> Result<()>;
    async fn app_gossip(&self, node_id: &ids::node::Id, msg: &[u8]) -> Result<()>;
}