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
use futures_util::StreamExt;
use massa_proto_rs::massa::api::v1::{self as grpc_api, FinalityLevel};
use std::pin::Pin;
use tokio::select;
use tonic::{Request, Streaming};
use tracing::{error, warn};

use crate::error::match_for_io_error;
use crate::{error::GrpcError, server::MassaPublicGrpc};

#[cfg(feature = "execution-trace")]
use crate::public::into_element;
#[cfg(not(feature = "execution-trace"))]
use massa_models::slot::Slot;
#[cfg(feature = "execution-trace")]
use massa_proto_rs::massa::api::v1::{
    AscabiCallStack, DeferredCallAbiCallStack, OperationAbiCallStack,
};
#[cfg(not(feature = "execution-trace"))]
#[derive(Clone)]
struct SlotAbiCallStack {
    /// Slot
    pub slot: Slot,
}

/// Type declaration for NewSlotExecutionOutputs
pub type NewSlotABICallStacksStreamType = Pin<
    Box<
        dyn futures_util::Stream<
                Item = Result<grpc_api::NewSlotAbiCallStacksResponse, tonic::Status>,
            > + Send
            + 'static,
    >,
>;

/// Creates a new stream of new slots abi call stacks
pub(crate) async fn new_slot_abi_call_stacks(
    grpc: &MassaPublicGrpc,
    request: Request<Streaming<grpc_api::NewSlotAbiCallStacksRequest>>,
) -> Result<NewSlotABICallStacksStreamType, GrpcError> {
    let (tx, rx) = tokio::sync::mpsc::channel(grpc.grpc_config.max_channel_size);
    // Extract the incoming stream of abi call stacks messages
    let mut in_stream = request.into_inner();

    // Clone the slot execution traces channel sender to subscribe from the spawned task
    #[cfg(feature = "execution-trace")]
    let traces_sender = grpc.execution_channels.slot_execution_traces_sender.clone();

    tokio::spawn(async move {
        // Wait for the first request to establish the finality level before
        // subscribing, so that no traces are forwarded before the client's
        // selection is known
        let mut finality: FinalityLevel = match in_stream.next().await {
            Some(Ok(message)) => message.finality_level(),
            _ => {
                error!("empty request");
                return;
            }
        };

        // Subscribe to the new slot execution events channel
        #[cfg(feature = "execution-trace")]
        let mut subscriber = traces_sender.subscribe();
        #[cfg(not(feature = "execution-trace"))]
        let (mut subscriber, _receiver) = {
            let (subscriber_, receiver) =
                tokio::sync::broadcast::channel::<(SlotAbiCallStack, (), bool)>(0);
            (subscriber_.subscribe(), receiver)
        };

        loop {
            select! {
                // Receive a new slot execution traces from the subscriber
                event = subscriber.recv() => {
                    match event {
                        Ok((massa_slot_execution_trace, _slot_transfers, received_finality)) => {
                            if (finality == FinalityLevel::Final && !received_finality) ||
                                (finality == FinalityLevel::Candidate && received_finality) {
                                continue;
                            }

                            #[allow(unused_mut)]
                            let mut ret = grpc_api::NewSlotAbiCallStacksResponse {
                                slot: Some(massa_slot_execution_trace.slot.into()),
                                asc_call_stacks: vec![],
                                operation_call_stacks: vec![],
                                deferred_call_stacks: vec![],
                            };

                            #[cfg(feature = "execution-trace")]
                            {
                                for (i, asc_call_stack) in massa_slot_execution_trace.asc_call_stacks.iter().enumerate() {
                                    ret.asc_call_stacks.push(
                                        AscabiCallStack {
                                            index: i as u64,
                                            call_stack: asc_call_stack.iter().map(into_element).collect()
                                        }
                                    )
                                }
                                for (op_id, op_call_stack) in massa_slot_execution_trace.operation_call_stacks.iter() {
                                    ret.operation_call_stacks.push(
                                        OperationAbiCallStack {
                                            operation_id: op_id.to_string(),
                                            call_stack: op_call_stack.iter().map(into_element).collect()
                                        }
                                    )
                                }
                                for (deferred_call_id, deferred_call_call_stack) in massa_slot_execution_trace.deferred_call_stacks.iter() {
                                    ret.deferred_call_stacks.push(
                                        DeferredCallAbiCallStack {
                                            deferred_call_id: deferred_call_id.to_string(),
                                            call_stack: deferred_call_call_stack.iter().map(into_element).collect()
                                        }
                                    )
                                }

                            }

                            if let Err(e) = tx.send(Ok(ret)).await {
                                error!("failed to send new slot execution trace: {}", e);
                                break;
                            }
                        }
                        Err(e) => {
                            error!("error on receive new slot execution trace : {}", e)
                        }
                    }
                }
                // Receive a new message from the in_stream
                res = in_stream.next() => {
                    match res {
                        Some(res) => {
                            match res {
                                Ok(message) => {
                                    finality = message.finality_level();
                                },
                                Err(e) => {
                                    // Any io error -> break
                                    if let Some(io_err) = match_for_io_error(&e) {
                                        warn!("client disconnected, broken pipe: {}", io_err);
                                        break;
                                    }
                                    error!("{}", e);
                                    if let Err(e2) = tx.send(Err(e)).await {
                                        error!("failed to send back error response: {}", e2);
                                        break;
                                    }
                                }
                            }
                        }
                        None => {
                            // the client has disconnected
                            break;
                        }
                    }
                }
            }
        }
    });
    let out_stream = tokio_stream::wrappers::ReceiverStream::new(rx);
    Ok(Box::pin(out_stream) as NewSlotABICallStacksStreamType)
}