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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
crate::ix!();
pub fn parse_non_rfcjson_value(str_val: &str) -> Result<UniValue,StdException> {
let mut j_val = UniValue::default();
let msg = format!("[{}]", str_val);
if !j_val.read(msg.as_ptr() as *const u8, msg.len())
|| !j_val.is_array()
|| j_val.size() != 1 {
let msg = format!("Error parsing JSON: {}", str_val);
return Err(runtime_error(&msg));
}
Ok(j_val[0].clone())
}
pub fn rpc_convert_values(
str_method: &str,
str_params: &Vec<String>) -> UniValue {
let mut params: UniValue = UniValue::from(uni_value::VType::VARR);
for idx in 0..str_params.len() {
let str_val: &str = &str_params[idx];
if !RPC_CVT_TABLE
.lock()
.convert_with_method_and_idx(
str_method,
idx.try_into().unwrap()
)
{
params.push_back(str_val);
} else {
params.push_back(&parse_non_rfcjson_value(str_val));
}
}
params
}
pub fn rpc_convert_named_values(
str_method: &str,
str_params: &Vec<String>) -> Result<UniValue,StdException> {
let mut params: UniValue
= UniValue::from(uni_value::VType::VOBJ);
for s in str_params.iter() {
if let Some(pos) = s.find('=') {
let name: String = s[0..pos].to_string();
let value: String = s[pos + 1..].to_string();
if !RPC_CVT_TABLE
.lock()
.convert_with_method_and_name(str_method, &name)
{
params.pushkv(name, value);
} else {
params.pushkv(name, parse_non_rfcjson_value(&value));
}
} else {
let msg = format!{
"No '=' in named argument '{}', this needs to be present for every argument (even if it is empty)",
s
};
return Err(runtime_error(&msg));
}
}
Ok(params)
}
pub trait BaseRequestHandler {
fn prepare_request(&mut self,
method: &str,
args: &Vec<String>) -> Result<UniValue,StdException>;
fn process_reply(&mut self, batch_in: &UniValue) -> Result<UniValue,StdException>;
}
#[derive(Default)]
pub struct AddrinfoRequestHandler {
}
impl BaseRequestHandler for AddrinfoRequestHandler {
fn prepare_request(&mut self,
method: &str,
args: &Vec<String>) -> Result<UniValue,StdException> {
if !args.is_empty() {
return Err(runtime_error("-addrinfo takes no arguments"));
}
let params: UniValue = {
let params = vec!["0".to_string()];
rpc_convert_values("getnodeaddresses",¶ms)
};
let result = jsonrpc_request_obj(
"getnodeaddresses",
¶ms,
&UniValue::from(1_i32)
);
Ok(result)
}
fn process_reply(&mut self, reply: &UniValue) -> Result<UniValue,StdException> {
if !reply["error"].is_null() {
return Ok(reply.clone());
}
let nodes: &Vec::<UniValue>
= reply["result"]
.get_values()
.unwrap();
if !nodes.is_empty() && nodes[0]["network"].is_null() {
return Err(runtime_error("-addrinfo requires bitcoind server to be running v22.0 and up"));
}
todo!();
let mut counts: Vec<u64> = Vec::with_capacity(NETINFO_REQUEST_HANDLER_NETWORKS.len());
for node in nodes.iter() {
let network_name: String = String::from(node["network"].get_str());
let network_id: i8 = self.network_string_to_id(&network_name);
if network_id == UNKNOWN_NETWORK {
continue;
}
let idx: usize = network_id.try_into().unwrap();
counts[idx] += 1;
}
let result: UniValue = UniValue::from(uni_value::VType::VOBJ);;
let addresses: UniValue = UniValue::from(uni_value::VType::VOBJ);;
let total: u64 = 0;
for i in 0..NETINFO_REQUEST_HANDLER_NETWORKS.len() {
addresses.pushkv(
NETINFO_REQUEST_HANDLER_NETWORKS[i],
counts[i]
);
total += counts[i];
}
addresses.pushkv("total", total);
result.pushkv("addresses_known", ADDRESSES);
Ok(
jsonrpc_reply_obj(
&result,
&NULL_UNI_VALUE,
&UniValue::from(1_i32)
)
)
}
}