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
/*
 * AquaVM Workflow Engine
 *
 * Copyright (C) 2024 Fluence DAO
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation version 3 of the
 * License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

/// Print out each instruction name at the beginning of its execution_step.
pub const INSTRUCTION: &str = "instruction";

/// Print out data cache at the beginning of each instruction execution_step.
pub const DATA_CACHE: &str = "data_cache";

/// Print out next_peer_pks at the beginning of each instruction execution_step.
pub const NEXT_PEER_PKS: &str = "next_peer_pks";

/// Print out subgraph_complete value at the beginning of each instruction execution_step.
pub const SUBGRAPH_COMPLETE: &str = "subgraph_complete";

/// Print out count of element in the current subgraph at the beginning of each instruction execution_step.
pub const SUBGRAPH_ELEMENTS: &str = "subgraph_elements_count";

/// Print out state of data cache at the beginning of each instruction execution_step.
pub const NEW_EXECUTED_TRACE: &str = "new_executed_trace";

/// Print out logs at the executed states merging stage.
pub const EXECUTED_TRACE_MERGE: &str = "executed_trace_merge";

/// Print out running arguments and params of a script.
pub const RUN_PARAMS: &str = "initial_params";

/// Print out state of data cache at the beginning of each instruction execution_step.
pub const EXECUTED_STATE_CHANGING: &str = "executed_state_changing";

/// Print log if call is postponed due the join behaviour.
pub const JOIN_BEHAVIOUR: &str = "join_behaviour";

/// This map should be used by rust-sdk logger that allows print only necessary targets by id.
pub const TARGET_MAP: [(&str, i32); 10] = [
    (INSTRUCTION, 1 << 1),
    (DATA_CACHE, 1 << 2),
    (NEXT_PEER_PKS, 1 << 3),
    (SUBGRAPH_COMPLETE, 1 << 4),
    (SUBGRAPH_ELEMENTS, 1 << 5),
    (NEW_EXECUTED_TRACE, 1 << 6),
    (EXECUTED_TRACE_MERGE, 1 << 7),
    (RUN_PARAMS, 1 << 8),
    (EXECUTED_STATE_CHANGING, 1 << 9),
    (JOIN_BEHAVIOUR, 1 << 10),
];