-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy patherrors.rs
206 lines (162 loc) · 5.01 KB
/
errors.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
// RGB wallet library for smart contracts on Bitcoin & Lightning network
//
// SPDX-License-Identifier: Apache-2.0
//
// Written in 2019-2023 by
// Dr Maxim Orlovsky <[email protected]>
//
// Copyright (C) 2019-2023 LNP/BP Standards Association. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![allow(clippy::result_large_err)]
use std::convert::Infallible;
use std::io;
use amplify::IoError;
use bpstd::Psbt;
use nonasync::persistence::PersistenceError;
use psrgbt::{CommitError, ConstructionError, EmbedError, TapretKeyError};
use rgbstd::containers::LoadError;
use rgbstd::interface::{BuilderError, ContractError};
use rgbstd::persistence::{
ComposeError, ConsignError, ContractIfaceError, FasciaError, Stock, StockError, StockErrorAll,
StockErrorMem,
};
use strict_types::encoding::Ident;
use crate::{validation, TapTweakAlreadyAssigned};
#[derive(Debug, Display, Error, From)]
#[display(inner)]
pub enum WalletError {
#[from]
#[from(io::Error)]
File(IoError),
#[from]
StockLoad(LoadError),
WalletPersist(PersistenceError),
StockPersist(PersistenceError),
#[cfg(feature = "cli")]
#[from]
WalletExec(bpwallet::cli::ExecError),
#[from]
Builder(BuilderError),
#[from]
Contract(ContractError),
Invoicing(String),
#[from]
PsbtDecode(psrgbt::DecodeError),
/// wallet with id '{0}' is not known to the system.
#[display(doc_comments)]
WalletUnknown(Ident),
#[from]
InvalidConsignment(validation::Status),
/// invalid identifier.
#[from]
#[display(doc_comments)]
InvalidId(baid64::Baid64ParseError),
/// the contract source doesn't fit requirements imposed by the used schema.
///
/// {0}
#[display(doc_comments)]
IncompleteContract(validation::Status),
/// resolver error: {0}
#[display(doc_comments)]
Resolver(String),
#[from(StockError)]
#[from(StockErrorAll)]
#[from(StockErrorMem<ContractIfaceError>)]
#[display(inner)]
Stock(String),
#[cfg(feature = "serde_yaml")]
#[from]
Yaml(serde_yaml::Error),
#[from]
Custom(String),
}
impl From<Infallible> for WalletError {
fn from(_: Infallible) -> Self { unreachable!() }
}
impl From<(Stock, WalletError)> for WalletError {
fn from((_, e): (Stock, WalletError)) -> Self { e }
}
#[allow(clippy::large_enum_variant)]
#[derive(Debug, Display, Error, From)]
pub enum PayError {
#[from]
#[display(inner)]
Composition(CompositionError),
#[display("{0}")]
Completion(CompletionError, Psbt),
}
#[derive(Debug, Display, Error, From)]
#[display(doc_comments)]
pub enum CompositionError {
/// unspecified contract.
NoContract,
/// unspecified interface.
NoIface,
/// invoice doesn't provide information about the operation, and the used
/// interface do not define default operation.
NoOperation,
/// invoice doesn't provide information about the assignment type, and the
/// used interface do not define default assignment type.
NoAssignment,
/// state provided via PSBT inputs is not sufficient to cover invoice state
/// requirements.
InsufficientState,
/// the invoice has expired.
InvoiceExpired,
/// one of the RGB assignments spent require presence of tapret output -
/// even this is not a taproot wallet. Unable to create a valid PSBT, manual
/// work is needed.
TapretRequired,
/// non-fungible state is not yet supported by the invoices.
Unsupported,
#[from]
#[display(inner)]
Construction(ConstructionError),
#[from]
#[display(inner)]
Interface(ContractError),
#[from]
#[display(inner)]
Embed(EmbedError),
#[from(String)]
#[from(StockError)]
#[from(StockErrorMem<ComposeError>)]
#[from(StockErrorMem<ContractIfaceError>)]
#[display(inner)]
Stock(String),
}
#[derive(Debug, Display, Error, From)]
#[display(doc_comments)]
pub enum CompletionError {
/// unspecified contract.
NoContract,
/// the provided PSBT doesn't pay any sats to the RGB beneficiary address.
NoBeneficiaryOutput,
/// the provided PSBT has conflicting descriptor in the taptweak output.
InconclusiveDerivation,
#[from]
#[display(inner)]
MultipleTweaks(TapTweakAlreadyAssigned),
#[from]
#[display(inner)]
TapretKey(TapretKeyError),
#[from]
#[display(inner)]
Commit(CommitError),
#[from(String)]
#[from(StockErrorMem<ConsignError>)]
#[from(StockErrorMem<FasciaError>)]
#[display(inner)]
Stock(String),
}