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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
use std::thread::JoinHandle;
use std::{path::PathBuf, sync::Arc};

use anyhow::{anyhow, Result};
use futures::stream;
use oura::{
    pipelining::{FilterProvider, SinkProvider, SourceProvider},
    sources::{AddressArg, BearerKind},
    utils::{Utils, WithUtils},
    Error,
};
use tracing::{span, Level};

use crate::{
    config::{
        n2c_config, n2n_config, NetworkConfig, NodeAddress, TxIndexerConfig, TxIndexerSource,
    },
    filter::Filter,
    handler::{
        callback::{Callback, EventHandler},
        retry::RetryPolicy,
    },
    progress_tracker::ProgressTracker,
};

// Structure holding the thread handles associated to the indexer. These threads are never-ending.
pub enum TxIndexer {
    CardanoNode {
        source_handle: JoinHandle<()>,
        filter_handle: JoinHandle<()>,
        sink_handle: JoinHandle<()>,
    },

    FixtureFiles {
        handle: JoinHandle<()>,
    },
}

impl TxIndexer {
    // This is based on: https://github.com/txpipe/oura/blob/27fb7e876471b713841d96e292ede40101b151d7/src/bin/oura/daemon.rs
    pub async fn run<H: EventHandler>(
        conf: TxIndexerConfig<H>,
    ) -> Result<TxIndexer, anyhow::Error> {
        let span = span!(Level::INFO, "Run TxIndexer");
        let _enter = span.enter();

        match conf.source {
            TxIndexerSource::CardanoNode {
                node_address,
                network,
                since_slot,
                safe_block_depth,
                event_filter,
            } => source_from_cardano_node(
                conf.handler,
                node_address,
                network,
                since_slot,
                safe_block_depth,
                event_filter,
                conf.retry_policy,
            )
            .map_err(|err| anyhow!(err.to_string())),

            TxIndexerSource::FixtureFiles { dir_path } => {
                source_from_files(conf.handler, dir_path).await
            }
        }
    }

    pub fn join(self) -> Result<(), anyhow::Error> {
        match self {
            TxIndexer::CardanoNode {
                source_handle,
                filter_handle,
                sink_handle,
            } => {
                sink_handle
                    .join()
                    .map_err(|err| anyhow!("error in sink thread: {}", any_err_to_string(err)))?;
                filter_handle
                    .join()
                    .map_err(|err| anyhow!("error in filter thread: {}", any_err_to_string(err)))?;
                source_handle
                    .join()
                    .map_err(|err| anyhow!("error in source thread: {}", any_err_to_string(err)))?;
            }
            TxIndexer::FixtureFiles { handle } => handle
                .join()
                .map_err(|err| anyhow!("error in thread: {}", any_err_to_string(err)))?,
        }
        Ok(())
    }
}

fn any_err_to_string(err: Box<dyn std::any::Any>) -> String {
    if let Some(str) = err.downcast_ref::<String>() {
        String::from(str)
    } else {
        String::from("Cannot print")
    }
}

fn source_from_cardano_node(
    handler: impl EventHandler,
    node_address: NodeAddress,
    network: NetworkConfig,
    since_slot: Option<(u64, String)>,
    safe_block_depth: usize,
    event_filter: Filter,
    retry_policy: RetryPolicy,
) -> Result<TxIndexer, Error> {
    let chain = network.to_chain_info()?;

    let progress_tracker = match since_slot {
        Some((since_slot, _)) => Some(ProgressTracker::new(since_slot, &chain)?),
        None => None,
    };

    let utils = Arc::new(Utils::new(chain));

    let (source_handle, source_rx) = match node_address {
        NodeAddress::UnixSocket(path) => {
            span!(Level::INFO, "BootstrapSourceViaSocket", socket_path = path).in_scope(|| {
                WithUtils::new(
                    n2c_config(
                        AddressArg(BearerKind::Unix, path),
                        network.to_magic_arg(),
                        since_slot.clone(),
                        safe_block_depth,
                    ),
                    utils.clone(),
                )
                .bootstrap()
            })
        }
        NodeAddress::TcpAddress(hostname, port) => {
            span!(Level::INFO, "BootstrapSourceViaTcp", hostname, port).in_scope(|| {
                WithUtils::new(
                    n2n_config(
                        AddressArg(BearerKind::Tcp, format!("{}:{}", hostname, port)),
                        network.to_magic_arg(),
                        since_slot.clone(),
                        safe_block_depth,
                    ),
                    utils.clone(),
                )
                .bootstrap()
            })
        }
    }?;

    // Optionally create a filter handle (if filter was provided)
    let (filter_handle, filter_rx) = event_filter.to_selection_config().bootstrap(source_rx)?;

    let sink_handle = span!(Level::INFO, "BootstrapSink").in_scope(|| {
        Callback::new(handler, retry_policy, utils, progress_tracker).bootstrap(filter_rx)
    })?;

    Ok(TxIndexer::CardanoNode {
        source_handle,
        filter_handle,
        sink_handle,
    })
}

async fn source_from_files(
    handler: impl EventHandler,
    dir_path: PathBuf,
) -> Result<TxIndexer, anyhow::Error> {
    use futures::stream::{StreamExt, TryStreamExt};
    use tokio::fs;
    use tokio::runtime::Runtime;

    let mut files = std::fs::read_dir(dir_path)
        .map_err(|err| anyhow!(err))?
        .collect::<Result<Vec<_>, _>>()?;

    files.sort_by_key(|entry| entry.file_name());

    let file_stream = stream::iter(files);

    let handle = std::thread::spawn(|| {
        let rt = Runtime::new().unwrap();
        rt.block_on(async move {
            let handler = &handler;
            let _: Vec<()> = file_stream
                .filter_map(|dir_entry| async move {
                    let path = dir_entry.path();

                    if let Some(ext) = path.extension() {
                        if ext == "json" {
                            return Some(path);
                        }
                    };
                    None
                })
                .then(|path| async move {
                    let bytes = fs::read(path).await.map_err(|err| anyhow!(err))?;

                    let chain_event = serde_json::from_slice(&bytes).map_err(|err| anyhow!(err))?;

                    handler
                        .handle(chain_event)
                        .await
                        .map_err(|err| anyhow!(err.to_string()))
                })
                .try_collect()
                .await
                .unwrap();
        })
    });

    Ok(TxIndexer::FixtureFiles { handle })
}