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
use crate::common::address::Address;
use std::error::Error;
use std::fmt::{Display, Formatter, Result as FmtResult};
pub trait ValidAddress<KeyType, AddressType> {
fn to_string(&self) -> String;
fn from_string(string: &String) -> Result<AddressType, Box<Error>>;
fn from_pubkey(pubkey: KeyType) -> AddressType;
fn from_bytes(bytes: &[u8; 20]) -> AddressType;
}
pub trait EnumConverter<OutputType> {
fn to_output(&self) -> OutputType;
fn from_input(number: OutputType) -> Result<Self, Box<Error>>
where
Self: Sized;
}
pub trait BlockHeader {
fn get_merkle_root(&self) -> &Vec<u8>;
fn get_time_stamp(&self) -> u64;
fn get_difficulty(&self) -> f64;
fn get_state_root(&self) -> &Vec<u8>;
fn get_previous_hash(&self) -> Option<&Vec<Vec<u8>>>;
fn get_nonce(&self) -> Option<u64>;
fn get_miner(&self) -> Option<&Address>;
}
pub trait Transaction<AddressType, SignatureType, RecoveryType> {
fn get_from(&self) -> Option<AddressType>;
fn get_to(&self) -> Option<AddressType>;
fn get_amount(&self) -> u64;
fn get_fee(&self) -> Option<u64>;
fn get_nonce(&self) -> Option<u32>;
fn get_signature(&self) -> Option<SignatureType>;
fn get_recovery(&self) -> Option<RecoveryType>;
}
pub trait VerifiableTransaction {
fn verify(&self) -> Result<(), Box<Error>>;
}
pub trait PeerDB<KeyType, PeerType> {
fn get(&self, key: &KeyType) -> Option<PeerType>;
fn get_all(&self) -> Option<Vec<PeerType>>;
fn get_multiple(&self, limit: usize) -> Option<Vec<PeerType>>;
fn inbound_connection(&mut self, key: KeyType, value: PeerType) -> Result<(), Box<Error>>;
fn outbound_connection(&mut self, key: KeyType, value: PeerType) -> Result<(), Box<Error>>;
fn connection_failure(&mut self, key: &KeyType) -> Result<(), Box<Error>>;
fn disconnect(&mut self, key: &KeyType);
fn put_multiple(&mut self, values: Vec<(KeyType, PeerType)>) -> Result<(), Box<Error>>;
fn get_recent(&self, limit: usize) -> Option<Vec<PeerType>>;
fn get_seen(&self, limit: usize) -> Option<Vec<PeerType>>;
fn get_oldest(&self, limit: usize) -> Option<Vec<PeerType>>;
fn get_random(&self, limit: usize) -> Option<Vec<PeerType>>;
}
pub trait ToDBType<T> {
fn to_db_type(&self) -> T;
}
pub trait Encode {
fn encode(&self) -> Result<Vec<u8>, Box<Error>>;
}
pub trait Decode {
fn decode(buffer: &[u8]) -> Result<Self, Box<Error>>
where
Self: Sized;
}
pub trait Proto {
type ProtoType;
fn to_proto(&self) -> Result<Self::ProtoType, Box<Error>>;
fn from_proto(prototype: &Self::ProtoType) -> Result<Self, Box<Error>>
where
Self: Sized;
}
#[derive(Debug)]
pub struct Exception {
details: String,
}
impl Exception {
pub fn new(details: &str) -> Exception {
Exception {
details: details.to_string(),
}
}
}
impl Display for Exception {
fn fmt(&self, f: &mut Formatter) -> FmtResult {
write!(f, "{}", self.details)
}
}
impl Error for Exception {
fn description(&self) -> &str {
&self.details
}
}