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
63
64
65
66
67
68
69
use std::convert::TryFrom;
use futures::stream::StreamExt;
use futures::Stream;
use tonic::transport::Channel;
use tracing::{instrument, trace};
use crate::data::DamlError;
use crate::data::DamlLedgerConfiguration;
use crate::data::DamlResult;
use crate::grpc_protobuf::com::daml::ledger::api::v1::ledger_configuration_service_client::LedgerConfigurationServiceClient;
use crate::grpc_protobuf::com::daml::ledger::api::v1::GetLedgerConfigurationRequest;
use crate::service::common::make_request;
use crate::util::Required;
#[derive(Debug)]
pub struct DamlLedgerConfigurationService<'a> {
channel: Channel,
ledger_id: &'a str,
auth_token: Option<&'a str>,
}
impl<'a> DamlLedgerConfigurationService<'a> {
pub fn new(channel: Channel, ledger_id: &'a str, auth_token: Option<&'a str>) -> Self {
Self {
channel,
ledger_id,
auth_token,
}
}
pub fn with_token(self, auth_token: &'a str) -> Self {
Self {
auth_token: Some(auth_token),
..self
}
}
pub fn with_ledger_id(self, ledger_id: &'a str) -> Self {
Self {
ledger_id,
..self
}
}
#[instrument(skip(self))]
pub async fn get_ledger_configuration(
&self,
) -> DamlResult<impl Stream<Item = DamlResult<DamlLedgerConfiguration>>> {
let payload = GetLedgerConfigurationRequest {
ledger_id: self.ledger_id.to_string(),
};
trace!(payload = ?payload, token = ?self.auth_token);
let config_stream =
self.client().get_ledger_configuration(make_request(payload, self.auth_token)?).await?.into_inner();
Ok(config_stream.inspect(|response| trace!(?response)).map(|item| match item {
Ok(config) => DamlLedgerConfiguration::try_from(config.ledger_configuration.req()?),
Err(e) => Err(DamlError::from(e)),
}))
}
fn client(&self) -> LedgerConfigurationServiceClient<Channel> {
LedgerConfigurationServiceClient::new(self.channel.clone())
}
}