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
use super::ApResult;
use super::CallResult;
use super::ExecutedState;
use super::FoldResult;
use super::KeeperError;
use super::ValueRef;
use air_interpreter_data::CanonResult;
use air_interpreter_data::TracePos;
use thiserror::Error as ThisError;
#[derive(ThisError, Debug)]
pub enum MergeError {
#[error("previous and current data have incompatible states: '{0:?}' '{1:?}'")]
IncompatibleExecutedStates(ExecutedState, ExecutedState),
#[error("state from {1} `{0:?}` is incompatible with expected {2}")]
DifferentExecutedStateExpected(ExecutedState, DataType, &'static str),
#[error(transparent)]
KeeperError(#[from] KeeperError),
#[error(transparent)]
IncorrectApResult(#[from] ApResultError),
#[error(transparent)]
IncorrectCallResult(#[from] CallResultError),
#[error(transparent)]
IncorrectCanonResult(#[from] CanonResultError),
#[error(transparent)]
IncorrectFoldResult(#[from] FoldResultError),
}
#[derive(ThisError, Debug)]
pub enum ApResultError {
#[error("{0:?} ap result contains inappropriate generation count in destination")]
InvalidDstGenerations(ApResult),
}
#[derive(ThisError, Debug)]
pub enum CallResultError {
#[error("values in call results are not equal: {prev_value:?} != {current_value:?}")]
ValuesNotEqual {
prev_value: ValueRef,
current_value: ValueRef,
},
#[error("previous and current call results are incompatible: '{prev_call:?}' '{current_call:?}'")]
IncompatibleCallResults {
prev_call: CallResult,
current_call: CallResult,
},
}
#[derive(ThisError, Debug)]
pub enum CanonResultError {
#[error("canon results {prev_canon_result:?} {current_canon_result:?} points to incompatible execution states")]
IncompatibleState {
prev_canon_result: CanonResult,
current_canon_result: CanonResult,
},
}
#[derive(ThisError, Debug)]
pub enum FoldResultError {
#[error("the first {count} subtrace descriptors lens of fold {fold_result:?} overflows")]
SubtraceLenOverflow { fold_result: FoldResult, count: usize },
#[error("{0:?} contains several subtraces with the same value_pos {1}")]
SeveralRecordsWithSamePos(FoldResult, TracePos),
#[error("fold contains {0} sublore descriptors, but 2 is expected")]
FoldIncorrectSubtracesCount(usize),
}
impl MergeError {
pub(crate) fn incompatible_states(
prev_state: Option<ExecutedState>,
current_state: Option<ExecutedState>,
expected_state: &'static str,
) -> Self {
match (prev_state, current_state) {
(Some(prev_state), Some(current_state)) => {
MergeError::IncompatibleExecutedStates(prev_state, current_state)
}
(None, Some(current_state)) => {
MergeError::DifferentExecutedStateExpected(current_state, DataType::Current, expected_state)
}
(Some(prev_state), None) => {
MergeError::DifferentExecutedStateExpected(prev_state, DataType::Previous, expected_state)
}
(None, None) => unreachable!("shouldn't be called with both None"),
}
}
}
impl CallResultError {
pub(crate) fn not_equal_values(prev_value: ValueRef, current_value: ValueRef) -> MergeError {
let call_result_error = CallResultError::ValuesNotEqual {
prev_value,
current_value,
};
MergeError::IncorrectCallResult(call_result_error)
}
pub(crate) fn incompatible_calls(prev_call: CallResult, current_call: CallResult) -> MergeError {
let call_result_error = CallResultError::IncompatibleCallResults {
prev_call,
current_call,
};
MergeError::IncorrectCallResult(call_result_error)
}
}
impl CanonResultError {
pub(crate) fn incompatible_state(prev_canon_result: CanonResult, current_canon_result: CanonResult) -> Self {
Self::IncompatibleState {
prev_canon_result,
current_canon_result,
}
}
}
#[derive(Clone, Copy, Debug)]
pub enum DataType {
Previous,
Current,
}
use std::fmt;
impl fmt::Display for DataType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
DataType::Previous => write!(f, "previous"),
DataType::Current => write!(f, "current"),
}
}
}