forked from LNP-WG/lnp-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.rs
153 lines (123 loc) · 3.71 KB
/
error.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
// LNP Node: node running lightning network protocol and generalized lightning
// channels.
// Written in 2020-2022 by
// Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>
//
// To the extent possible under law, the author(s) have dedicated all
// copyright and related and neighboring rights to this software to
// the public domain worldwide. This software is distributed without
// any warranty.
//
// You should have received a copy of the MIT License along with this software.
// If not, see <https://opensource.org/licenses/MIT>.
use std::io;
use amplify::IoError;
use bitcoin::util::bip32;
use internet2::{presentation, transport};
use lnp::router;
use microservices::{esb, LauncherError};
use wallet::psbt::sign::SignError;
use crate::bus::ServiceBus;
use crate::channeld;
use crate::lnpd::automata::launch;
use crate::lnpd::{funding, Daemon};
use crate::routed::PaymentError;
use crate::rpc::{self, ServiceId};
#[derive(Debug, Display, From, Error)]
#[display(doc_comments)]
#[non_exhaustive]
pub enum Error {
/// I/O error: {0:?}
#[from(io::Error)]
Io(IoError),
/// ESB error: {0}
#[from]
Esb(esb::Error<ServiceId>),
/// RPC error: {0}
#[from]
Rpc(rpc::Error),
/// failed to launch a daemon: {0}
#[from(LauncherError<Daemon>)]
DaemonLaunch(Box<LauncherError<Daemon>>),
/// peer interface error: {0}
#[from]
Peer(presentation::Error),
/// channel operations failure: {0}
#[from]
#[from(lnp::channel::bolt::Error)]
Channel(channeld::Error),
/// router failure: {0}
#[from]
GossipRouter(router::gossip::Error),
/// failed to bootstrap channel: {0}
#[from]
ChannelLaunch(launch::Error),
/// failed to perform the payment. Details: {0}
#[from]
Payment(PaymentError),
/// failing to restore channel state. Details: {0}
Persistence(strict_encoding::Error),
/// encoding failure
///
/// Details: {0}
#[from]
BitcoinEncoding(bitcoin::consensus::encode::Error),
/// encoding failure
///
/// Details: {0}
#[from]
StrictEncoding(strict_encoding::Error),
/// Error during funding wallet operation
#[from]
#[display(inner)]
FundingWallet(funding::Error),
/// unable to deriving keys: {0}
#[from]
Derivation(bip32::Error),
/// descriptor failure: {0}
#[from]
Miniscript(miniscript::Error),
/// unable to sign PSBT: {0}
#[from]
Signing(SignError),
/// bridge interface failure: {0}
#[from(zmq::Error)]
#[from]
Bridge(transport::Error),
/// unable to connect Electrum server
#[from(electrum_client::Error)]
ElectrumConnectivity,
/// message `{1}` is not supported on {0} message bus
NotSupported(ServiceBus, String),
/// message `{1}` is not supported on {0} message bus for service {2}
SourceNotSupported(ServiceBus, String, ServiceId),
/// peer has misbehaved LN peer protocol rules
Misbehaving,
/// unrecoverable error "{0}"
Terminate(String),
/// other error type with string explanation
#[display(inner)]
#[from(internet2::addr::NoOnionSupportError)]
Other(String),
}
impl microservices::error::Error for Error {}
impl From<Error> for esb::Error<ServiceId> {
fn from(err: Error) -> Self {
match err {
Error::Esb(err) => err,
err => esb::Error::ServiceError(err.to_string()),
}
}
}
impl Error {
pub fn wrong_esb_msg(bus: ServiceBus, message: &impl ToString) -> Error {
Error::NotSupported(bus, message.to_string())
}
pub fn wrong_esb_msg_source(
bus: ServiceBus,
message: &impl ToString,
source: ServiceId,
) -> Error {
Error::SourceNotSupported(bus, message.to_string(), source)
}
}