zksync_error/
identifier.rs

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
//
// AUTOGENERATED BASED ON A SET OF JSON FILES, DO NOT EDIT MANUALLY
//
use crate::error::domains::AnvilZksyncCode;
use crate::error::domains::CompilerCode;
use crate::error::domains::CoreCode;
use crate::error::domains::FoundryCode;
use crate::error::domains::HardhatCode;
use crate::error::NamedError;
use crate::kind::DomainCode;
use crate::kind::Kind;
#[derive(Clone, Debug, Eq, PartialEq, serde :: Deserialize, serde :: Serialize)]
pub struct StructuredErrorCode {
    pub domain_code: u32,
    pub component_code: u32,
    pub error_code: u32,
}
impl StructuredErrorCode {
    pub fn encode(&self) -> u32 {
        self.domain_code * 10000 + self.component_code * 1000 + self.error_code
    }
    pub fn decode(raw_code: u32) -> Self {
        let error_code = raw_code % 1000;
        let component_code = (raw_code / 1000) % 10;
        let domain_code = (raw_code / 10000) % 10;
        StructuredErrorCode {
            domain_code,
            component_code,
            error_code,
        }
    }
}
#[derive(Clone, Debug, Eq, PartialEq, serde :: Deserialize, serde :: Serialize)]
pub struct Identifier {
    pub kind: Kind,
    pub code: u32,
}
impl Identifier {
    pub fn new(kind: Kind, code: u32) -> Self {
        Self { kind, code }
    }
    pub fn encode(&self) -> u32 {
        let domain_code: u32 = self.kind.domain_code();
        let component_code: u32 = self.kind.component_code();
        domain_code * 10000 + component_code * 1000 + self.code
    }
    pub fn decode(code: StructuredErrorCode) -> Option<Self> {
        let StructuredErrorCode {
            domain_code,
            component_code,
            error_code,
        } = code;
        let domain = DomainCode::from_repr(domain_code)?;
        let kind: Kind = match domain {
            DomainCode::AnvilZksync => {
                Kind::AnvilZksync(AnvilZksyncCode::from_repr(component_code)?)
            }
            DomainCode::Compiler => Kind::Compiler(CompilerCode::from_repr(component_code)?),
            DomainCode::Core => Kind::Core(CoreCode::from_repr(component_code)?),
            DomainCode::Foundry => Kind::Foundry(FoundryCode::from_repr(component_code)?),
            DomainCode::Hardhat => Kind::Hardhat(HardhatCode::from_repr(component_code)?),
        };
        Some(Identifier {
            kind,
            code: error_code,
        })
    }
}
pub trait Identifying {
    fn get_identifier_repr(&self) -> String;
}
impl Identifying for Identifier {
    fn get_identifier_repr(&self) -> String {
        format!("[{}-{}]", self.kind.get_identifier_repr(), self.code)
    }
}
impl Identifying for Kind {
    fn get_identifier_repr(&self) -> String {
        match self {
            Kind::AnvilZksync(AnvilZksyncCode::AnvilEnvironment) => "anvil_zksync-env",
            Kind::AnvilZksync(AnvilZksyncCode::AnvilGeneric) => "anvil_zksync-gen",
            Kind::AnvilZksync(AnvilZksyncCode::Halt) => "anvil_zksync-halt",
            Kind::AnvilZksync(AnvilZksyncCode::Revert) => "anvil_zksync-revert",
            Kind::Compiler(CompilerCode::LLVM_EVM) => "compiler-llvm+evm",
            Kind::Compiler(CompilerCode::LLVM_Era) => "compiler-llvm+era",
            Kind::Compiler(CompilerCode::Solc) => "compiler-solc",
            Kind::Compiler(CompilerCode::SolcFork) => "compiler-solc+fork",
            Kind::Compiler(CompilerCode::Zksolc) => "compiler-zksolc",
            Kind::Compiler(CompilerCode::Zkvyper) => "compiler-zkvyper",
            Kind::Core(CoreCode::API) => "core-api",
            Kind::Core(CoreCode::EraVM) => "core-eravm",
            Kind::Core(CoreCode::ExecutionPlatform) => "core-exec",
            Kind::Core(CoreCode::Sequencer) => "core-seq",
            Kind::Foundry(FoundryCode::FoundryUpstream) => "foundry-upstream",
            Kind::Foundry(FoundryCode::FoundryZksync) => "foundry-zksync",
            Kind::Hardhat(HardhatCode::HardhatUpstream) => "hardhat-upstream",
            Kind::Hardhat(HardhatCode::HardhatZksync) => "hardhat-zksync",
        }
        .into()
    }
}
impl NamedError for Identifier {
    fn get_error_name(&self) -> String {
        match self.kind {
            Kind::AnvilZksync(AnvilZksyncCode::AnvilEnvironment) => {
                crate::error::definitions::AnvilEnvironmentCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::AnvilZksync(AnvilZksyncCode::AnvilGeneric) => {
                crate::error::definitions::AnvilGenericCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::AnvilZksync(AnvilZksyncCode::Halt) => {
                crate::error::definitions::HaltCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::AnvilZksync(AnvilZksyncCode::Revert) => {
                crate::error::definitions::RevertCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Compiler(CompilerCode::LLVM_EVM) => {
                crate::error::definitions::LLVM_EVMCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Compiler(CompilerCode::LLVM_Era) => {
                crate::error::definitions::LLVM_EraCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Compiler(CompilerCode::Solc) => {
                crate::error::definitions::SolcCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Compiler(CompilerCode::SolcFork) => {
                crate::error::definitions::SolcForkCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Compiler(CompilerCode::Zksolc) => {
                crate::error::definitions::ZksolcCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Compiler(CompilerCode::Zkvyper) => {
                crate::error::definitions::ZkvyperCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Core(CoreCode::API) => crate::error::definitions::APICode::from_repr(self.code)
                .expect("Internal error")
                .get_error_name(),
            Kind::Core(CoreCode::EraVM) => {
                crate::error::definitions::EraVMCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Core(CoreCode::ExecutionPlatform) => {
                crate::error::definitions::ExecutionPlatformCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Core(CoreCode::Sequencer) => {
                crate::error::definitions::SequencerCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Foundry(FoundryCode::FoundryUpstream) => {
                crate::error::definitions::FoundryUpstreamCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Foundry(FoundryCode::FoundryZksync) => {
                crate::error::definitions::FoundryZksyncCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Hardhat(HardhatCode::HardhatUpstream) => {
                crate::error::definitions::HardhatUpstreamCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
            Kind::Hardhat(HardhatCode::HardhatZksync) => {
                crate::error::definitions::HardhatZksyncCode::from_repr(self.code)
                    .expect("Internal error")
                    .get_error_name()
            }
        }
    }
}
impl crate::documentation::Documented for Identifier {
    type Documentation = &'static zksync_error_description::ErrorDocumentation;
    fn get_documentation(
        &self,
    ) -> Result<Option<Self::Documentation>, crate::documentation::DocumentationError> {
        use crate::documentation::model;
        let repr = &self.get_identifier_repr();
        match model.errors.get(repr) {
            Some(metadata) => Ok(metadata.documentation.as_ref()),
            None => Err(crate::documentation::DocumentationError::IncompleteModel(
                format!("Can not fetch description for error {repr}."),
            )),
        }
    }
}