-
Notifications
You must be signed in to change notification settings - Fork 74
/
state_chain.rs
1731 lines (1590 loc) · 66.7 KB
/
state_chain.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Smoldot
// Copyright (C) 2019-2022 Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//! All legacy JSON-RPC method handlers that relate to the chain or the storage.
use super::{Background, Platform, RuntimeCallError, SubscriptionTy};
use crate::runtime_service;
use futures::{lock::MutexGuard, prelude::*};
use smoldot::{
header,
informant::HashDisplay,
json_rpc::{self, methods, requests_subscriptions},
network::protocol,
remove_metadata_length_prefix,
};
use std::{
iter,
num::{NonZeroU32, NonZeroUsize},
str,
sync::{atomic, Arc},
time::Duration,
};
mod sub_utils;
impl<TPlat: Platform> Background<TPlat> {
/// Handles a call to [`methods::MethodCall::system_accountNextIndex`].
pub(super) async fn account_next_index(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
account: methods::AccountId,
) {
let block_hash = header::hash_from_scale_encoded_header(
&sub_utils::subscribe_best(&self.runtime_service).await.0,
);
let result = self
.runtime_call(
&block_hash,
"AccountNonceApi_account_nonce",
iter::once(&account.0),
4,
Duration::from_secs(4),
NonZeroU32::new(2).unwrap(),
)
.await;
let response = match result {
Ok(nonce) => {
// TODO: we get a u32 when expecting a u64; figure out problem
// TODO: don't unwrap
let index = u32::from_le_bytes(<[u8; 4]>::try_from(&nonce[..]).unwrap());
methods::Response::system_accountNextIndex(u64::from(index))
.to_json_response(request_id)
}
Err(error) => {
log::warn!(
target: &self.log_target,
"Returning error from `state_getMetadata`. \
API user might not function properly. Error: {}",
error
);
json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(-32000, &error.to_string()),
None,
)
}
};
self.requests_subscriptions
.respond(&state_machine_request_id, response)
.await;
}
/// Handles a call to [`methods::MethodCall::chain_getBlock`].
pub(super) async fn chain_get_block(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
hash: Option<methods::HashHexString>,
) {
// `hash` equal to `None` means "the current best block".
let hash = match hash {
Some(h) => h.0,
None => header::hash_from_scale_encoded_header(
&sub_utils::subscribe_best(&self.runtime_service).await.0,
),
};
// Try to determine the block number by looking for the block in cache.
// The request can be fulfilled no matter whether the block number is known or not, but
// knowing it will lead to a better selection of peers, and thus increase the chances of
// the requests succeeding.
let block_number = {
let mut cache_lock = self.cache.lock().await;
let cache_lock = &mut *cache_lock;
if let Some(future) = cache_lock.block_state_root_hashes_numbers.get_mut(&hash) {
let _ = future.now_or_never();
}
match (
cache_lock
.recent_pinned_blocks
.get(&hash)
.map(|h| header::decode(h)),
cache_lock.block_state_root_hashes_numbers.get(&hash),
) {
(Some(Ok(header)), _) => Some(header.number),
(_, Some(future::MaybeDone::Done(Ok((_, num))))) => Some(*num),
_ => None,
}
};
// Block bodies and justifications aren't stored locally. Ask the network.
let result = if let Some(block_number) = block_number {
self.sync_service
.clone()
.block_query(
block_number,
hash,
protocol::BlocksRequestFields {
header: true,
body: true,
justifications: true,
},
3,
Duration::from_secs(8),
NonZeroU32::new(1).unwrap(),
)
.await
} else {
self.sync_service
.clone()
.block_query_unknown_number(
hash,
protocol::BlocksRequestFields {
header: true,
body: true,
justifications: true,
},
3,
Duration::from_secs(8),
NonZeroU32::new(1).unwrap(),
)
.await
};
// The `block_query` function guarantees that the header and body are present and
// are correct.
let response = if let Ok(block) = result {
methods::Response::chain_getBlock(methods::Block {
extrinsics: block
.body
.unwrap()
.into_iter()
.map(methods::HexString)
.collect(),
header: methods::Header::from_scale_encoded_header(&block.header.unwrap()).unwrap(),
justifications: block.justifications,
})
.to_json_response(request_id)
} else {
json_rpc::parse::build_success_response(request_id, "null")
};
self.requests_subscriptions
.respond(&state_machine_request_id, response)
.await;
}
/// Handles a call to [`methods::MethodCall::chain_getBlockHash`].
pub(super) async fn chain_get_block_hash(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
height: Option<u64>,
) {
// TODO: maybe store values in cache?
let response = {
match height {
Some(0) => methods::Response::chain_getBlockHash(methods::HashHexString(
self.genesis_block,
))
.to_json_response(request_id),
None => {
let best_block = header::hash_from_scale_encoded_header(
&sub_utils::subscribe_best(&self.runtime_service).await.0,
);
methods::Response::chain_getBlockHash(methods::HashHexString(best_block))
.to_json_response(request_id)
}
Some(_) => {
// While the block could be found in `known_blocks`, there is no guarantee
// that blocks in `known_blocks` are canonical, and we have no choice but to
// return null.
// TODO: ask a full node instead? or maybe keep a list of canonical blocks?
json_rpc::parse::build_success_response(request_id, "null")
}
}
};
self.requests_subscriptions
.respond(&state_machine_request_id, response)
.await;
}
/// Handles a call to [`methods::MethodCall::chain_getHeader`].
pub(super) async fn chain_get_header(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
hash: Option<methods::HashHexString>,
) {
// `hash` equal to `None` means "best block".
let hash = match hash {
Some(h) => h.0,
None => header::hash_from_scale_encoded_header(
&sub_utils::subscribe_best(&self.runtime_service).await.0,
),
};
// Try to look in the cache of recent blocks. If not found, ask the peer-to-peer network.
// `header` is `Err` if and only if the network request failed.
let scale_encoded_header = {
let mut cache_lock = self.cache.lock().await;
if let Some(header) = cache_lock.recent_pinned_blocks.get(&hash) {
Ok(header.clone())
} else {
// Header isn't known locally. We need to ask the network.
// First, try to determine the block number by looking into the cache.
// The request can be fulfilled no matter whether it is found, but knowing it will
// lead to a better selection of peers, and thus increase the chances of the
// requests succeeding.
let block_number = if let Some(future) =
cache_lock.block_state_root_hashes_numbers.get_mut(&hash)
{
let _ = future.now_or_never();
match future {
future::MaybeDone::Done(Ok((_, num))) => Some(*num),
_ => None,
}
} else {
None
};
// Release the lock as we're going to start a long asynchronous operation.
drop::<MutexGuard<_>>(cache_lock);
// Actual network query.
let result = if let Some(block_number) = block_number {
self.sync_service
.clone()
.block_query(
block_number,
hash,
protocol::BlocksRequestFields {
header: true,
body: false,
justifications: false,
},
3,
Duration::from_secs(8),
NonZeroU32::new(1).unwrap(),
)
.await
} else {
self.sync_service
.clone()
.block_query_unknown_number(
hash,
protocol::BlocksRequestFields {
header: true,
body: false,
justifications: false,
},
3,
Duration::from_secs(8),
NonZeroU32::new(1).unwrap(),
)
.await
};
// The `block_query` method guarantees that the header is present and valid.
if let Ok(block) = result {
let header = block.header.unwrap();
debug_assert_eq!(header::hash_from_scale_encoded_header(&header), hash);
Ok(header)
} else {
Err(())
}
}
};
// Build the JSON-RPC response.
let response = match scale_encoded_header {
Ok(header) => {
// In the case of a parachain, it is possible for the header to be in
// a format that smoldot isn't capable of parsing. In that situation,
// we take of liberty of returning a JSON-RPC error.
match methods::Header::from_scale_encoded_header(&header) {
Ok(decoded) => {
methods::Response::chain_getHeader(decoded).to_json_response(request_id)
}
Err(error) => json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(
-32000,
&format!("Failed to decode header: {}", error),
),
None,
),
}
}
Err(()) => {
// Failed to retrieve the header.
// TODO: error or null?
json_rpc::parse::build_success_response(request_id, "null")
}
};
self.requests_subscriptions
.respond(state_machine_request_id, response)
.await;
}
/// Handles a call to [`methods::MethodCall::chain_subscribeAllHeads`].
pub(super) async fn chain_subscribe_all_heads(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
) {
let state_machine_subscription = match self
.requests_subscriptions
.start_subscription(state_machine_request_id, 16)
.await
{
Ok(v) => v,
Err(requests_subscriptions::StartSubscriptionError::LimitReached) => {
self.requests_subscriptions
.respond(
state_machine_request_id,
json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(
-32000,
"Too many active subscriptions",
),
None,
),
)
.await;
return;
}
};
let subscription_id = self
.next_subscription_id
.fetch_add(1, atomic::Ordering::Relaxed)
.to_string();
let abort_registration = {
let (abort_handle, abort_registration) = future::AbortHandle::new_pair();
let mut subscriptions_list = self.subscriptions.lock().await;
subscriptions_list.misc.insert(
(subscription_id.clone(), SubscriptionTy::AllHeads),
(abort_handle, state_machine_subscription.clone()),
);
abort_registration
};
self.requests_subscriptions
.respond(
&state_machine_request_id,
methods::Response::chain_subscribeAllHeads((&subscription_id).into())
.to_json_response(request_id),
)
.await;
let mut new_blocks = {
// The buffer size should be large enough so that, if the CPU is busy, it doesn't
// become full before the execution of the runtime service resumes.
// The maximum number of pinned block is ignored, as this maximum is a way to avoid
// malicious behaviors. This code is by definition not considered malicious.
let subscribe_all = self
.runtime_service
.subscribe_all(32, NonZeroUsize::new(usize::max_value()).unwrap())
.await;
// The finalized and already-known blocks aren't reported to the user, but we need
// unpin them on to the runtime service.
subscribe_all
.new_blocks
.unpin_block(&header::hash_from_scale_encoded_header(
&subscribe_all.finalized_block_scale_encoded_header,
))
.await;
for block in subscribe_all.non_finalized_blocks_ancestry_order {
subscribe_all
.new_blocks
.unpin_block(&header::hash_from_scale_encoded_header(
&block.scale_encoded_header,
))
.await;
}
subscribe_all.new_blocks
};
// Spawn a separate task for the subscription.
let task = {
let me = self.clone();
async move {
loop {
match new_blocks.next().await {
Some(runtime_service::Notification::Block(block)) => {
new_blocks
.unpin_block(&header::hash_from_scale_encoded_header(
&block.scale_encoded_header,
))
.await;
let header = match methods::Header::from_scale_encoded_header(
&block.scale_encoded_header,
) {
Ok(h) => h,
Err(error) => {
log::warn!(
target: &me.log_target,
"`chain_subscribeAllHeads` subscription has skipped \
block due to undecodable header. Hash: {}. Error: {}",
HashDisplay(&header::hash_from_scale_encoded_header(&block.scale_encoded_header)),
error,
);
continue;
}
};
let _ = me
.requests_subscriptions
.try_push_notification(
&state_machine_subscription,
methods::ServerToClient::chain_newHead {
subscription: (&subscription_id).into(),
result: header,
}
.to_json_call_object_parameters(None),
)
.await;
}
Some(runtime_service::Notification::BestBlockChanged { .. })
| Some(runtime_service::Notification::Finalized { .. }) => {}
None => {
// TODO: must recreate the channel
return;
}
}
}
}
};
self.new_child_tasks_tx
.lock()
.await
.unbounded_send(Box::pin(
future::Abortable::new(task, abort_registration).map(|_| ()),
))
.unwrap();
}
/// Handles a call to [`methods::MethodCall::chain_subscribeFinalizedHeads`].
pub(super) async fn chain_subscribe_finalized_heads(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
) {
let state_machine_subscription = match self
.requests_subscriptions
.start_subscription(state_machine_request_id, 1)
.await
{
Ok(v) => v,
Err(requests_subscriptions::StartSubscriptionError::LimitReached) => {
self.requests_subscriptions
.respond(
state_machine_request_id,
json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(
-32000,
"Too many active subscriptions",
),
None,
),
)
.await;
return;
}
};
let subscription_id = self
.next_subscription_id
.fetch_add(1, atomic::Ordering::Relaxed)
.to_string();
let abort_registration = {
let (abort_handle, abort_registration) = future::AbortHandle::new_pair();
let mut subscriptions_list = self.subscriptions.lock().await;
subscriptions_list.misc.insert(
(subscription_id.clone(), SubscriptionTy::FinalizedHeads),
(abort_handle, state_machine_subscription.clone()),
);
abort_registration
};
self.requests_subscriptions
.respond(
&state_machine_request_id,
methods::Response::chain_subscribeFinalizedHeads((&subscription_id).into())
.to_json_response(request_id),
)
.await;
let mut blocks_list = {
let (finalized_block_header, finalized_blocks_subscription) =
sub_utils::subscribe_finalized(&self.runtime_service).await;
stream::once(future::ready(finalized_block_header)).chain(finalized_blocks_subscription)
};
// Spawn a separate task for the subscription.
let task = {
let me = self.clone();
async move {
loop {
// Stream returned by `subscribe_finalized` is always unlimited.
let header = blocks_list.next().await.unwrap();
let header = match methods::Header::from_scale_encoded_header(&header) {
Ok(h) => h,
Err(error) => {
log::warn!(
target: &me.log_target,
"`chain_subscribeFinalizedHeads` subscription has skipped block \
due to undecodable header. Hash: {}. Error: {}",
HashDisplay(&header::hash_from_scale_encoded_header(&header)),
error,
);
continue;
}
};
me.requests_subscriptions
.set_queued_notification(
&state_machine_subscription,
0,
methods::ServerToClient::chain_finalizedHead {
subscription: (&subscription_id).into(),
result: header,
}
.to_json_call_object_parameters(None),
)
.await;
}
}
};
self.new_child_tasks_tx
.lock()
.await
.unbounded_send(Box::pin(
future::Abortable::new(task, abort_registration).map(|_| ()),
))
.unwrap();
}
/// Handles a call to [`methods::MethodCall::chain_subscribeNewHeads`].
pub(super) async fn chain_subscribe_new_heads(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
) {
let state_machine_subscription = match self
.requests_subscriptions
.start_subscription(state_machine_request_id, 1)
.await
{
Ok(v) => v,
Err(requests_subscriptions::StartSubscriptionError::LimitReached) => {
self.requests_subscriptions
.respond(
state_machine_request_id,
json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(
-32000,
"Too many active subscriptions",
),
None,
),
)
.await;
return;
}
};
let subscription_id = self
.next_subscription_id
.fetch_add(1, atomic::Ordering::Relaxed)
.to_string();
let abort_registration = {
let (abort_handle, abort_registration) = future::AbortHandle::new_pair();
let mut subscriptions_list = self.subscriptions.lock().await;
subscriptions_list.misc.insert(
(subscription_id.clone(), SubscriptionTy::NewHeads),
(abort_handle, state_machine_subscription.clone()),
);
abort_registration
};
self.requests_subscriptions
.respond(
&state_machine_request_id,
methods::Response::chain_subscribeNewHeads((&subscription_id).into())
.to_json_response(request_id),
)
.await;
let mut blocks_list = {
let (block_header, blocks_subscription) =
sub_utils::subscribe_best(&self.runtime_service).await;
stream::once(future::ready(block_header)).chain(blocks_subscription)
};
// Spawn a separate task for the subscription.
let task = {
let me = self.clone();
async move {
loop {
// Stream returned by `subscribe_best` is always unlimited.
let header = blocks_list.next().await.unwrap();
let header = match methods::Header::from_scale_encoded_header(&header) {
Ok(h) => h,
Err(error) => {
log::warn!(
target: &me.log_target,
"`chain_subscribeNewHeads` subscription has skipped block due to \
undecodable header. Hash: {}. Error: {}",
HashDisplay(&header::hash_from_scale_encoded_header(&header)),
error,
);
continue;
}
};
me.requests_subscriptions
.set_queued_notification(
&state_machine_subscription,
0,
methods::ServerToClient::chain_newHead {
subscription: (&subscription_id).into(),
result: header,
}
.to_json_call_object_parameters(None),
)
.await;
}
}
};
self.new_child_tasks_tx
.lock()
.await
.unbounded_send(Box::pin(
future::Abortable::new(task, abort_registration).map(|_| ()),
))
.unwrap();
}
/// Handles a call to [`methods::MethodCall::chain_unsubscribeAllHeads`].
pub(super) async fn chain_unsubscribe_all_heads(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
subscription: String,
) {
let state_machine_subscription = if let Some((abort_handle, state_machine_subscription)) =
self.subscriptions
.lock()
.await
.misc
.remove(&(subscription.to_owned(), SubscriptionTy::AllHeads))
{
abort_handle.abort();
Some(state_machine_subscription)
} else {
None
};
if let Some(state_machine_subscription) = &state_machine_subscription {
self.requests_subscriptions
.stop_subscription(state_machine_subscription)
.await;
}
self.requests_subscriptions
.respond(
state_machine_request_id,
methods::Response::chain_unsubscribeAllHeads(state_machine_subscription.is_some())
.to_json_response(request_id),
)
.await;
}
/// Handles a call to [`methods::MethodCall::chain_unsubscribeFinalizedHeads`].
pub(super) async fn chain_unsubscribe_finalized_heads(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
subscription: String,
) {
let state_machine_subscription = if let Some((abort_handle, state_machine_subscription)) =
self.subscriptions
.lock()
.await
.misc
.remove(&(subscription.to_owned(), SubscriptionTy::FinalizedHeads))
{
abort_handle.abort();
Some(state_machine_subscription)
} else {
None
};
if let Some(state_machine_subscription) = &state_machine_subscription {
self.requests_subscriptions
.stop_subscription(state_machine_subscription)
.await;
}
self.requests_subscriptions
.respond(
state_machine_request_id,
methods::Response::chain_unsubscribeFinalizedHeads(
state_machine_subscription.is_some(),
)
.to_json_response(request_id),
)
.await;
}
/// Handles a call to [`methods::MethodCall::chain_unsubscribeNewHeads`].
pub(super) async fn chain_unsubscribe_new_heads(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
subscription: String,
) {
let state_machine_subscription = if let Some((abort_handle, state_machine_subscription)) =
self.subscriptions
.lock()
.await
.misc
.remove(&(subscription.to_owned(), SubscriptionTy::NewHeads))
{
abort_handle.abort();
Some(state_machine_subscription)
} else {
None
};
if let Some(state_machine_subscription) = &state_machine_subscription {
self.requests_subscriptions
.stop_subscription(state_machine_subscription)
.await;
}
self.requests_subscriptions
.respond(
state_machine_request_id,
methods::Response::chain_unsubscribeNewHeads(state_machine_subscription.is_some())
.to_json_response(request_id),
)
.await;
}
/// Handles a call to [`methods::MethodCall::payment_queryInfo`].
pub(super) async fn payment_query_info(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
extrinsic: &[u8],
block_hash: Option<&[u8; 32]>,
) {
let block_hash = match block_hash {
Some(h) => *h,
None => header::hash_from_scale_encoded_header(
&sub_utils::subscribe_best(&self.runtime_service).await.0,
),
};
let result = self
.runtime_call(
&block_hash,
json_rpc::payment_info::PAYMENT_FEES_FUNCTION_NAME,
json_rpc::payment_info::payment_info_parameters(extrinsic),
4,
Duration::from_secs(4),
NonZeroU32::new(2).unwrap(),
)
.await;
let response = match result {
Ok(encoded) => match json_rpc::payment_info::decode_payment_info(&encoded) {
Ok(info) => methods::Response::payment_queryInfo(info).to_json_response(request_id),
Err(error) => json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(
-32000,
&format!("Failed to decode runtime output: {}", error),
),
None,
),
},
Err(error) => {
log::warn!(
target: &self.log_target,
"Returning error from `state_getMetadata`. \
API user might not function properly. Error: {}",
error
);
json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(-32000, &error.to_string()),
None,
)
}
};
self.requests_subscriptions
.respond(&state_machine_request_id, response)
.await;
}
/// Handles a call to [`methods::MethodCall::state_call`].
pub(super) async fn state_call(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
function_to_call: &str,
call_parameters: methods::HexString,
hash: Option<methods::HashHexString>,
) {
let block_hash = if let Some(hash) = hash {
hash.0
} else {
header::hash_from_scale_encoded_header(
&sub_utils::subscribe_best(&self.runtime_service).await.0,
)
};
let result = self
.runtime_call(
&block_hash,
function_to_call,
iter::once(call_parameters.0),
3,
Duration::from_secs(10),
NonZeroU32::new(3).unwrap(),
)
.await;
let response = match result {
Ok(data) => methods::Response::state_call(methods::HexString(data.to_vec()))
.to_json_response(request_id),
Err(error) => json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(-32000, &error.to_string()),
None,
),
};
self.requests_subscriptions
.respond(state_machine_request_id, response)
.await;
}
/// Handles a call to [`methods::MethodCall::state_getKeys`].
pub(super) async fn state_get_keys(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
prefix: methods::HexString,
hash: Option<methods::HashHexString>,
) {
// `hash` equal to `None` means "best block".
let hash = match hash {
Some(h) => h.0,
None => header::hash_from_scale_encoded_header(
&sub_utils::subscribe_best(&self.runtime_service).await.0,
),
};
// Obtain the state trie root and height of the requested block.
// This is necessary to perform network storage queries.
let (state_root, block_number) = match self.state_trie_root_hash(&hash).await {
Ok(v) => v,
Err(()) => {
self.requests_subscriptions
.respond(
&state_machine_request_id,
json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(
-32000,
&"Failed to fetch block information",
),
None,
),
)
.await;
return;
}
};
let outcome = self
.sync_service
.clone()
.storage_prefix_keys_query(
block_number,
&hash,
&prefix.0,
&state_root,
3,
Duration::from_secs(12),
NonZeroU32::new(1).unwrap(),
)
.await;
let response = match outcome {
Ok(keys) => {
let out = keys.into_iter().map(methods::HexString).collect::<Vec<_>>();
methods::Response::state_getKeys(out).to_json_response(request_id)
}
Err(error) => json_rpc::parse::build_error_response(
request_id,
json_rpc::parse::ErrorResponse::ServerError(-32000, &error.to_string()),
None,
),
};
self.requests_subscriptions
.respond(&state_machine_request_id, response)
.await;
}
/// Handles a call to [`methods::MethodCall::state_getKeysPaged`].
pub(super) async fn state_get_keys_paged(
self: &Arc<Self>,
request_id: &str,
state_machine_request_id: &requests_subscriptions::RequestId,
prefix: Option<methods::HexString>,
count: u32,
start_key: Option<methods::HexString>,
hash: Option<methods::HashHexString>,
) {
// `hash` equal to `None` means "best block".
let hash = match hash {
Some(h) => h.0,
None => header::hash_from_scale_encoded_header(
&sub_utils::subscribe_best(&self.runtime_service).await.0,
),
};
// Obtain the state trie root and height of the requested block.
// This is necessary to perform network storage queries.
let (state_root, block_number) = match self.state_trie_root_hash(&hash).await {
Ok(v) => v,
Err(()) => {