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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use crate::builder::ToBClientBuilder;
use crate::types::{SyncStats, WalletBalance};
use crate::Result;
use async_trait::async_trait;

//Use this to enable lots of different types of clients.
//e.g. Handshake can be both rpc and http so we would say which types we support and then
//when we create the client you can pick.
#[derive(Debug)]
pub enum ClientType {
    RPC,
    HTTP,
    GRPC,
    Websocket,
}

pub enum ProtocolClient {}

//@todo need a builder here.
// #[derive(Clone)]
// pub struct ToBClient {
//     client: Arc<RpcClient>,
//     protocol: Protocol,
// }

//@todo we should probs have a function of "supported_daemons" since some of them differ in RPC and
//HTTP calls. That should probs be a parameter as well to creating a client.
//@todo will need a generic Result type here.
#[async_trait]
pub trait CryptoClient {
    fn client_type(&self) -> ClientType;
    async fn sync_stats(&self) -> SyncStats;
    async fn wallet_balance(&self, identifier: &str) -> Result<WalletBalance>;
}

pub type Client = dyn CryptoClient + Send + Sync;

pub struct ToBClient {
    //@todo just review what is the most efficient here.
    pub(crate) inner_client: Box<Client>,
}

impl ToBClient {
    pub fn new(client: Box<Client>) -> Self {
        ToBClient {
            inner_client: client,
        }
    }

    pub fn builder(url: &str) -> ToBClientBuilder {
        ToBClientBuilder::new(url)
    }

    //@todo need Result.
    pub async fn sync_stats(&self) -> SyncStats {
        self.inner_client.sync_stats().await
    }

    pub async fn wallet_balance(&self, identifier: &str) -> Result<WalletBalance> {
        self.inner_client.wallet_balance(identifier).await
    }
}