use crate::{
output_manager_service::{
config::OutputManagerServiceConfig,
handle::OutputManagerHandle,
service::OutputManagerService,
storage::database::{OutputManagerBackend, OutputManagerDatabase},
},
transaction_service::handle::TransactionServiceHandle,
};
use futures::{future, Future, Stream, StreamExt};
use log::*;
use std::sync::Arc;
use tari_comms_dht::Dht;
use tari_core::{
consensus::{ConsensusConstantsBuilder, Network},
proto::base_node as proto,
transactions::types::CryptoFactories,
};
use tari_p2p::{
comms_connector::SubscriptionFactory,
domain_message::DomainMessage,
services::utils::{map_decode, ok_or_skip_result},
tari_message::TariMessageType,
};
use tari_service_framework::{
reply_channel,
ServiceInitializationError,
ServiceInitializer,
ServiceInitializerContext,
};
use tokio::sync::broadcast;
pub mod config;
pub mod error;
pub mod handle;
pub mod protocols;
#[allow(unused_assignments)]
pub mod service;
pub mod storage;
const LOG_TARGET: &str = "wallet::output_manager_service::initializer";
const SUBSCRIPTION_LABEL: &str = "Output Manager";
pub type TxId = u64;
pub struct OutputManagerServiceInitializer<T>
where T: OutputManagerBackend
{
config: OutputManagerServiceConfig,
subscription_factory: Arc<SubscriptionFactory>,
backend: Option<T>,
factories: CryptoFactories,
network: Network,
}
impl<T> OutputManagerServiceInitializer<T>
where T: OutputManagerBackend + 'static
{
pub fn new(
config: OutputManagerServiceConfig,
subscription_factory: Arc<SubscriptionFactory>,
backend: T,
factories: CryptoFactories,
network: Network,
) -> Self
{
Self {
config,
subscription_factory,
backend: Some(backend),
factories,
network,
}
}
fn base_node_response_stream(&self) -> impl Stream<Item = DomainMessage<proto::BaseNodeServiceResponse>> {
trace!(
target: LOG_TARGET,
"Subscription '{}' for topic '{:?}' created.",
SUBSCRIPTION_LABEL,
TariMessageType::BaseNodeResponse
);
self.subscription_factory
.get_subscription(TariMessageType::BaseNodeResponse, SUBSCRIPTION_LABEL)
.map(map_decode::<proto::BaseNodeServiceResponse>)
.filter_map(ok_or_skip_result)
}
}
impl<T> ServiceInitializer for OutputManagerServiceInitializer<T>
where T: OutputManagerBackend + 'static
{
type Future = impl Future<Output = Result<(), ServiceInitializationError>>;
fn initialize(&mut self, context: ServiceInitializerContext) -> Self::Future {
trace!(
target: LOG_TARGET,
"Output manager initialization: Base node query timeout: {}s",
self.config.base_node_query_timeout.as_secs()
);
let base_node_response_stream = self.base_node_response_stream();
let (sender, receiver) = reply_channel::unbounded();
let (publisher, _) = broadcast::channel(200);
let oms_handle = OutputManagerHandle::new(sender, publisher.clone());
context.register_handle(oms_handle);
let backend = self
.backend
.take()
.expect("Cannot start Output Manager Service without setting a storage backend");
let factories = self.factories.clone();
let config = self.config.clone();
let constants = ConsensusConstantsBuilder::new(self.network).build();
context.spawn_when_ready(move |handles| async move {
let outbound_message_service = handles.expect_handle::<Dht>().outbound_requester();
let transaction_service = handles.expect_handle::<TransactionServiceHandle>();
let service = OutputManagerService::new(
config,
outbound_message_service,
transaction_service,
receiver,
base_node_response_stream,
OutputManagerDatabase::new(backend),
publisher,
factories,
constants,
handles.get_shutdown_signal(),
)
.await
.expect("Could not initialize Output Manager Service")
.start();
futures::pin_mut!(service);
future::select(service, handles.get_shutdown_signal()).await;
info!(target: LOG_TARGET, "Output manager service shutdown");
});
future::ready(Ok(()))
}
}