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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
// Smoldot
// Copyright (C) 2023 Pierre Krieger
// 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/>.
// TODO: doc
use crate::json_rpc::{methods, parse};
use alloc::{
borrow::Cow,
boxed::Box,
collections::VecDeque,
string::{String, ToString as _},
sync::{Arc, Weak},
};
use async_lock::Mutex;
use core::{
cmp, fmt, mem,
num::NonZero,
sync::atomic::{AtomicBool, AtomicU32, Ordering},
};
use futures_lite::FutureExt as _;
use slab::Slab;
pub use crate::json_rpc::parse::{ErrorResponse, ParseError};
/// See [module-level-documentation](..).
pub struct ClientMainTask {
/// Because we move the task around a lot, all the fields are actually within a `Box`.
inner: Box<Inner>,
}
struct Inner {
/// Identifier to allocate to the new subscription requested by the user.
// TODO: better strategy than just integers?
next_subscription_id: u64,
/// List of all active subscriptions. Keys are subscription IDs.
///
/// Given that the subscription IDs are allocated locally, there is no harm in using a
/// non-HashDoS-resilient hash function.
///
/// Entries are removed only when the [`SubscriptionStartProcess`] or [`Subscription`] object
/// is destroyed. This is necessary given that the maximum number of subscriptions exists in
/// order to avoid spam attacks, and that resources are free'd only when the
/// [`SubscriptionStartProcess`] or [`Subscription`] is destroyed.
active_subscriptions: hashbrown::HashMap<String, InnerSubscription, fnv::FnvBuildHasher>,
/// Maximum size that [`Inner::active_subscriptions`] is allowed to reach. Beyond this,
/// subscription start requests are automatically denied.
max_active_subscriptions: u32,
/// Structure shared with the [`SerializedRequestsIo`].
serialized_io: Arc<SerializedIo>,
/// Queue where responses and subscriptions push responses/notifications.
responses_notifications_queue: Arc<ResponsesNotificationsQueue>,
/// Event notified after the [`SerializedRequestsIo`] is destroyed.
on_serialized_requests_io_destroyed: event_listener::EventListener,
}
struct InnerSubscription {
/// Shared with the subscription. Used to notify the subscription that it should be killed.
kill_channel: Arc<SubscriptionKillChannel>,
/// Response to an unsubscribe request that must be sent out once the subscription is killed.
unsubscribe_response: Option<String>,
}
struct SerializedIo {
/// Queue of requests. The requests are guaranteed to be a valid request JSON, but not
/// necessarily to use a known method.
requests_queue: crossbeam_queue::SegQueue<String>,
/// Event notified after an element has been pushed to [`SerializedIo::requests_queue`].
on_request_pushed: event_listener::Event,
/// Event notified after an element from [`SerializedIo::requests_queue`] has been pulled.
on_request_pulled_or_task_destroyed: event_listener::Event,
/// Number of requests that have have been received from the client but whose answer hasn't
/// been pulled out from [`SerializedIo::requests_queue`] yet.
num_requests_in_fly: AtomicU32,
/// Maximum value that [`SerializedIo::num_requests_in_fly`] is allowed to reach.
/// Beyond this, no more request should be added to [`SerializedIo::requests_queue`].
max_requests_in_fly: NonZero<u32>,
/// Queue of responses.
responses_queue: Mutex<SerializedIoResponses>,
/// Event notified after an element has been pushed to [`SerializedIo::responses_queue`], or
/// when the [`ClientMainTask`] has been destroyed.
on_response_pushed_or_task_destroyed: event_listener::Event,
}
struct SerializedIoResponses {
/// Unordered list of responses and notifications to send back to the client.
///
/// Each entry contains the response/notification, and a boolean equal to `true` if this is
/// a request response or `false` if this is a notification.
pending_serialized_responses: Slab<(String, bool)>,
/// Ordered list of responses and notifications to send back to the client, as indices within
/// [`SerializedIoResponses::pending_serialized_responses`].
pending_serialized_responses_queue: VecDeque<usize>,
}
/// Queue where responses and subscriptions push responses/notifications.
struct ResponsesNotificationsQueue {
/// The actual queue.
queue: crossbeam_queue::SegQueue<ToMainTask>,
/// Maximum size that [`ResponsesNotificationsQueue::queue`] should reach.
/// This is however not a hard limit. Pushing a response to a request and pushing a
/// subscription destroyed event ignore this maximum (as doing so must always be lock-free),
/// and pushing a notification checks against this limit in a racy way. For this reason, in
/// the worst case scenario the queue can reach up to
/// `max_requests_in_fly + max_active_subscriptions` elements. What matters, however, is that
/// the queue is bounded in a way or the other more than the exact bound.
max_len: usize,
/// Event notified after an element from [`ResponsesNotificationsQueue::queue`] has been pushed.
on_pushed: event_listener::Event,
/// Event notified after an element from [`ResponsesNotificationsQueue::queue`] has been popped.
on_popped: event_listener::Event,
}
// TODO: weird enum
enum ToMainTask {
RequestResponse(String),
Notification(String),
SubscriptionDestroyed { subscription_id: String },
}
/// Configuration for [`client_main_task`].
pub struct Config {
/// Maximum number of requests that have been sent by the [`SerializedRequestsIo`] but whose
/// response hasn't been pulled through the [`SerializedRequestsIo`] yet.
///
/// If this limit is reached, it is not possible to send further requests without pulling
/// responses first.
pub max_pending_requests: NonZero<u32>,
/// Maximum number of simultaneous subscriptions allowed. Trying to create a subscription will
/// be automatically rejected if this limit is reached.
pub max_active_subscriptions: u32,
}
/// Creates a new [`ClientMainTask`] and a [`SerializedRequestsIo`] connected to it.
pub fn client_main_task(config: Config) -> (ClientMainTask, SerializedRequestsIo) {
let buffers_capacity = usize::try_from(config.max_pending_requests.get())
.unwrap_or(usize::MAX)
.saturating_add(usize::try_from(config.max_active_subscriptions).unwrap_or(usize::MAX));
let on_serialized_requests_io_destroyed = event_listener::Event::new();
let task = ClientMainTask {
inner: Box::new(Inner {
next_subscription_id: 1,
active_subscriptions: hashbrown::HashMap::with_capacity_and_hasher(
cmp::min(
usize::try_from(config.max_active_subscriptions).unwrap_or(usize::MAX),
32,
),
Default::default(),
),
max_active_subscriptions: config.max_active_subscriptions,
serialized_io: Arc::new(SerializedIo {
requests_queue: crossbeam_queue::SegQueue::new(),
on_request_pushed: event_listener::Event::new(),
on_request_pulled_or_task_destroyed: event_listener::Event::new(),
num_requests_in_fly: AtomicU32::new(0),
max_requests_in_fly: config.max_pending_requests,
responses_queue: Mutex::new(SerializedIoResponses {
pending_serialized_responses_queue: VecDeque::with_capacity(cmp::min(
64,
buffers_capacity,
)),
pending_serialized_responses: Slab::with_capacity(cmp::min(
64,
buffers_capacity,
)),
}),
on_response_pushed_or_task_destroyed: event_listener::Event::new(),
}),
responses_notifications_queue: Arc::new(ResponsesNotificationsQueue {
queue: crossbeam_queue::SegQueue::new(),
max_len: buffers_capacity,
on_pushed: event_listener::Event::new(),
on_popped: event_listener::Event::new(),
}),
on_serialized_requests_io_destroyed: on_serialized_requests_io_destroyed.listen(),
}),
};
let serialized_requests_io = SerializedRequestsIo {
serialized_io: Arc::downgrade(&task.inner.serialized_io),
on_serialized_requests_io_destroyed,
};
(task, serialized_requests_io)
}
impl ClientMainTask {
/// Processes the task's internals and waits until something noteworthy happens.
pub async fn run_until_event(mut self) -> Event {
loop {
enum WakeUpReason {
NewRequest(String),
Message(ToMainTask),
}
let wake_up_reason = {
let serialized_requests_io_destroyed = async {
(&mut self.inner.on_serialized_requests_io_destroyed).await;
Err(())
};
let next_serialized_request = async {
let mut wait = None;
loop {
if let Some(elem) = self.inner.serialized_io.requests_queue.pop() {
self.inner
.serialized_io
.on_request_pulled_or_task_destroyed
.notify(usize::MAX);
break Ok(WakeUpReason::NewRequest(elem));
}
if let Some(wait) = wait.take() {
wait.await
} else {
wait = Some(self.inner.serialized_io.on_request_pushed.listen());
}
}
};
let response_notif = async {
let mut wait = None;
loop {
if let Some(elem) = self.inner.responses_notifications_queue.queue.pop() {
break Ok(WakeUpReason::Message(elem));
}
if let Some(wait) = wait.take() {
wait.await
} else {
wait =
Some(self.inner.responses_notifications_queue.on_pushed.listen());
}
}
};
match serialized_requests_io_destroyed
.or(next_serialized_request)
.or(response_notif)
.await
{
Ok(wake_up_reason) => wake_up_reason,
Err(()) => return Event::SerializedRequestsIoClosed,
}
};
// Immediately handle every event apart from `NewRequest`.
let new_request = match wake_up_reason {
WakeUpReason::NewRequest(request) => request,
WakeUpReason::Message(ToMainTask::SubscriptionDestroyed { subscription_id }) => {
let InnerSubscription {
unsubscribe_response,
..
} = self
.inner
.active_subscriptions
.remove(&subscription_id)
.unwrap();
// TODO: post a `stop`/`error` event for chainhead subscriptions
if let Some(unsubscribe_response) = unsubscribe_response {
let mut responses_queue =
self.inner.serialized_io.responses_queue.lock().await;
let pos = responses_queue
.pending_serialized_responses
.insert((unsubscribe_response, true));
responses_queue
.pending_serialized_responses_queue
.push_back(pos);
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
}
// Shrink the list of active subscriptions if necessary.
if self.inner.active_subscriptions.capacity()
>= 2 * self.inner.active_subscriptions.len() + 16
{
self.inner.active_subscriptions.shrink_to_fit();
}
return Event::SubscriptionDestroyed {
task: self,
subscription_id,
};
}
WakeUpReason::Message(ToMainTask::RequestResponse(response)) => {
let mut responses_queue = self.inner.serialized_io.responses_queue.lock().await;
let pos = responses_queue
.pending_serialized_responses
.insert((response, true));
responses_queue
.pending_serialized_responses_queue
.push_back(pos);
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
continue;
}
WakeUpReason::Message(ToMainTask::Notification(notification)) => {
// TODO: filter out redundant notifications, as it's the entire point of this module
let mut responses_queue = self.inner.serialized_io.responses_queue.lock().await;
let pos = responses_queue
.pending_serialized_responses
.insert((notification, false));
responses_queue
.pending_serialized_responses_queue
.push_back(pos);
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
continue;
}
};
let (request_id, parsed_request) =
match methods::parse_jsonrpc_client_to_server(&new_request) {
Ok((request_id, method)) => (request_id, method),
Err(methods::ParseClientToServerError::Method { request_id, error }) => {
let response = error.to_json_error(request_id);
let mut responses_queue =
self.inner.serialized_io.responses_queue.lock().await;
let pos = responses_queue
.pending_serialized_responses
.insert((response, true));
responses_queue
.pending_serialized_responses_queue
.push_back(pos);
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
continue;
}
Err(methods::ParseClientToServerError::UnknownNotification { .. }) => continue,
Err(methods::ParseClientToServerError::JsonRpcParse(_)) => {
let response = parse::build_parse_error_response();
let mut responses_queue =
self.inner.serialized_io.responses_queue.lock().await;
let pos = responses_queue
.pending_serialized_responses
.insert((response, true));
responses_queue
.pending_serialized_responses_queue
.push_back(pos);
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
continue;
}
};
// There exists three types of requests:
//
// - Requests that follow a simple one-request-one-response schema.
// - Requests that, if accepted, start a subscription.
// - Requests that unsubscribe from a subscription.
//
match &parsed_request {
methods::MethodCall::account_nextIndex { .. }
| methods::MethodCall::author_hasKey { .. }
| methods::MethodCall::author_hasSessionKeys { .. }
| methods::MethodCall::author_insertKey { .. }
| methods::MethodCall::author_pendingExtrinsics { .. }
| methods::MethodCall::author_removeExtrinsic { .. }
| methods::MethodCall::author_rotateKeys { .. }
| methods::MethodCall::author_submitExtrinsic { .. }
| methods::MethodCall::babe_epochAuthorship { .. }
| methods::MethodCall::chain_getBlock { .. }
| methods::MethodCall::chain_getBlockHash { .. }
| methods::MethodCall::chain_getFinalizedHead { .. }
| methods::MethodCall::chain_getHeader { .. }
| methods::MethodCall::childstate_getKeys { .. }
| methods::MethodCall::childstate_getStorage { .. }
| methods::MethodCall::childstate_getStorageHash { .. }
| methods::MethodCall::childstate_getStorageSize { .. }
| methods::MethodCall::grandpa_roundState { .. }
| methods::MethodCall::offchain_localStorageGet { .. }
| methods::MethodCall::offchain_localStorageSet { .. }
| methods::MethodCall::payment_queryInfo { .. }
| methods::MethodCall::state_call { .. }
| methods::MethodCall::state_getKeys { .. }
| methods::MethodCall::state_getKeysPaged { .. }
| methods::MethodCall::state_getMetadata { .. }
| methods::MethodCall::state_getPairs { .. }
| methods::MethodCall::state_getReadProof { .. }
| methods::MethodCall::state_getRuntimeVersion { .. }
| methods::MethodCall::state_getStorage { .. }
| methods::MethodCall::state_getStorageHash { .. }
| methods::MethodCall::state_getStorageSize { .. }
| methods::MethodCall::state_queryStorage { .. }
| methods::MethodCall::state_queryStorageAt { .. }
| methods::MethodCall::system_accountNextIndex { .. }
| methods::MethodCall::system_addReservedPeer { .. }
| methods::MethodCall::system_chain { .. }
| methods::MethodCall::system_chainType { .. }
| methods::MethodCall::system_dryRun { .. }
| methods::MethodCall::system_health { .. }
| methods::MethodCall::system_localListenAddresses { .. }
| methods::MethodCall::system_localPeerId { .. }
| methods::MethodCall::system_name { .. }
| methods::MethodCall::system_networkState { .. }
| methods::MethodCall::system_nodeRoles { .. }
| methods::MethodCall::system_peers { .. }
| methods::MethodCall::system_properties { .. }
| methods::MethodCall::system_removeReservedPeer { .. }
| methods::MethodCall::system_version { .. }
| methods::MethodCall::statement_submit { .. }
| methods::MethodCall::chainSpec_v1_chainName { .. }
| methods::MethodCall::chainSpec_v1_genesisHash { .. }
| methods::MethodCall::chainSpec_v1_properties { .. }
| methods::MethodCall::rpc_methods { .. }
| methods::MethodCall::sudo_unstable_p2pDiscover { .. }
| methods::MethodCall::sudo_unstable_version { .. }
| methods::MethodCall::chainHead_v1_body { .. }
| methods::MethodCall::chainHead_v1_call { .. }
| methods::MethodCall::chainHead_v1_continue { .. }
| methods::MethodCall::chainHead_unstable_finalizedDatabase { .. }
| methods::MethodCall::chainHead_v1_header { .. }
| methods::MethodCall::chainHead_v1_stopOperation { .. }
| methods::MethodCall::chainHead_v1_storage { .. }
| methods::MethodCall::chainHead_v1_unpin { .. } => {
// Simple one-request-one-response.
return Event::HandleRequest {
request_process: RequestProcess {
responses_notifications_queue: self
.inner
.responses_notifications_queue
.clone(),
request: new_request,
has_sent_response: false,
},
task: self,
};
}
methods::MethodCall::author_submitAndWatchExtrinsic { .. }
| methods::MethodCall::chain_subscribeAllHeads { .. }
| methods::MethodCall::chain_subscribeFinalizedHeads { .. }
| methods::MethodCall::chain_subscribeNewHeads { .. }
| methods::MethodCall::state_subscribeRuntimeVersion { .. }
| methods::MethodCall::state_subscribeStorage { .. }
| methods::MethodCall::statement_subscribeStatement { .. }
| methods::MethodCall::transaction_v1_broadcast { .. }
| methods::MethodCall::transactionWatch_v1_submitAndWatch { .. }
| methods::MethodCall::sudo_network_unstable_watch { .. }
| methods::MethodCall::chainHead_v1_follow { .. } => {
// Subscription starting requests.
// We must check the maximum number of subscriptions.
let max_subscriptions =
usize::try_from(self.inner.max_active_subscriptions).unwrap_or(usize::MAX);
debug_assert!(self.inner.active_subscriptions.len() <= max_subscriptions);
if self.inner.active_subscriptions.len() >= max_subscriptions {
let response = parse::build_error_response(
request_id,
ErrorResponse::ServerError(-32000, "Too many active subscriptions"),
None,
);
let mut responses_queue =
self.inner.serialized_io.responses_queue.lock().await;
let pos = responses_queue
.pending_serialized_responses
.insert((response, true));
responses_queue
.pending_serialized_responses_queue
.push_back(pos);
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
continue;
}
// Allocate the new subscription ID.
let subscription_id = self.allocate_subscription_id();
debug_assert!(
!self
.inner
.active_subscriptions
.contains_key(&subscription_id)
);
// Insert an "kill channel" in the local state. This kill channel is shared
// with the subscription object and is used to notify when a subscription
// should be killed.
let kill_channel = Arc::new(SubscriptionKillChannel {
dead: AtomicBool::new(false),
on_dead_changed: event_listener::Event::new(),
});
self.inner.active_subscriptions.insert(
subscription_id.clone(),
InnerSubscription {
kill_channel: kill_channel.clone(),
unsubscribe_response: None,
},
);
return Event::HandleSubscriptionStart {
subscription_start: SubscriptionStartProcess {
responses_notifications_queue: self
.inner
.responses_notifications_queue
.clone(),
request: new_request,
kill_channel,
subscription_id,
has_sent_response: false,
},
task: self,
};
}
methods::MethodCall::author_unwatchExtrinsic { subscription, .. }
| methods::MethodCall::state_unsubscribeRuntimeVersion { subscription, .. }
| methods::MethodCall::state_unsubscribeStorage { subscription, .. }
| methods::MethodCall::transaction_v1_stop {
operation_id: subscription,
}
| methods::MethodCall::transactionWatch_v1_unwatch { subscription, .. }
| methods::MethodCall::sudo_network_unstable_unwatch { subscription, .. }
| methods::MethodCall::chainHead_v1_unfollow {
follow_subscription: subscription,
..
} => {
// TODO: must check whether type of subscription matches
match self.inner.active_subscriptions.get_mut(&**subscription) {
Some(InnerSubscription {
kill_channel,
unsubscribe_response,
}) if unsubscribe_response.is_none() => {
*unsubscribe_response = Some(
match parsed_request {
methods::MethodCall::author_unwatchExtrinsic { .. } => {
methods::Response::author_unwatchExtrinsic(true)
}
methods::MethodCall::state_unsubscribeRuntimeVersion {
..
} => methods::Response::state_unsubscribeRuntimeVersion(true),
methods::MethodCall::state_unsubscribeStorage { .. } => {
methods::Response::state_unsubscribeStorage(true)
}
methods::MethodCall::transaction_v1_stop { .. } => {
methods::Response::transaction_v1_stop(())
}
methods::MethodCall::transactionWatch_v1_unwatch { .. } => {
methods::Response::transactionWatch_v1_unwatch(())
}
methods::MethodCall::sudo_network_unstable_unwatch {
..
} => methods::Response::sudo_network_unstable_unwatch(()),
methods::MethodCall::chainHead_v1_unfollow { .. } => {
methods::Response::chainHead_v1_unfollow(())
}
_ => unreachable!(),
}
.to_json_response(request_id),
);
kill_channel.dead.store(true, Ordering::Release);
kill_channel.on_dead_changed.notify(usize::MAX);
}
_ => {
let response = match parsed_request {
methods::MethodCall::author_unwatchExtrinsic { .. } => {
methods::Response::author_unwatchExtrinsic(false)
.to_json_response(request_id)
}
methods::MethodCall::state_unsubscribeRuntimeVersion { .. } => {
methods::Response::state_unsubscribeRuntimeVersion(false)
.to_json_response(request_id)
}
methods::MethodCall::state_unsubscribeStorage { .. } => {
methods::Response::state_unsubscribeStorage(false)
.to_json_response(request_id)
}
_ => parse::build_error_response(
request_id,
ErrorResponse::InvalidParams,
None,
),
};
let mut responses_queue =
self.inner.serialized_io.responses_queue.lock().await;
let pos = responses_queue
.pending_serialized_responses
.insert((response, true));
responses_queue
.pending_serialized_responses_queue
.push_back(pos);
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
}
}
}
methods::MethodCall::chain_unsubscribeAllHeads { subscription, .. }
| methods::MethodCall::chain_unsubscribeFinalizedHeads { subscription, .. }
| methods::MethodCall::chain_unsubscribeNewHeads { subscription, .. }
| methods::MethodCall::statement_unsubscribeStatement { subscription, .. } => {
// TODO: DRY with above
// TODO: must check whether type of subscription matches
match self.inner.active_subscriptions.get_mut(&**subscription) {
Some(InnerSubscription {
unsubscribe_response,
kill_channel,
}) if unsubscribe_response.is_none() => {
*unsubscribe_response = Some(match parsed_request {
methods::MethodCall::chain_unsubscribeAllHeads { .. } => {
methods::Response::chain_unsubscribeAllHeads(true)
.to_json_response(request_id)
}
methods::MethodCall::chain_unsubscribeFinalizedHeads { .. } => {
methods::Response::chain_unsubscribeFinalizedHeads(true)
.to_json_response(request_id)
}
methods::MethodCall::chain_unsubscribeNewHeads { .. } => {
methods::Response::chain_unsubscribeNewHeads(true)
.to_json_response(request_id)
}
methods::MethodCall::statement_unsubscribeStatement { .. } => {
methods::Response::statement_unsubscribeStatement(true)
.to_json_response(request_id)
}
_ => unreachable!(),
});
kill_channel.dead.store(true, Ordering::Release);
kill_channel.on_dead_changed.notify(usize::MAX);
}
_ => {
let response = match parsed_request {
methods::MethodCall::chain_unsubscribeAllHeads { .. } => {
methods::Response::chain_unsubscribeAllHeads(false)
.to_json_response(request_id)
}
methods::MethodCall::chain_unsubscribeFinalizedHeads { .. } => {
methods::Response::chain_unsubscribeFinalizedHeads(false)
.to_json_response(request_id)
}
methods::MethodCall::chain_unsubscribeNewHeads { .. } => {
methods::Response::chain_unsubscribeNewHeads(false)
.to_json_response(request_id)
}
methods::MethodCall::statement_unsubscribeStatement { .. } => {
methods::Response::statement_unsubscribeStatement(false)
.to_json_response(request_id)
}
_ => unreachable!(),
};
let mut responses_queue =
self.inner.serialized_io.responses_queue.lock().await;
let pos = responses_queue
.pending_serialized_responses
.insert((response, true));
responses_queue
.pending_serialized_responses_queue
.push_back(pos);
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
}
}
}
}
}
}
fn allocate_subscription_id(&mut self) -> String {
let subscription_id = self.inner.next_subscription_id.to_string();
self.inner.next_subscription_id += 1;
subscription_id
}
}
impl fmt::Debug for ClientMainTask {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("ClientMainTask").finish()
}
}
impl Drop for ClientMainTask {
fn drop(&mut self) {
// Notify the `SerializedRequestsIo`.
self.inner
.serialized_io
.on_response_pushed_or_task_destroyed
.notify(usize::MAX);
self.inner
.serialized_io
.on_request_pulled_or_task_destroyed
.notify(usize::MAX);
// Mark all active subscriptions as dead.
for (_, InnerSubscription { kill_channel, .. }) in self.inner.active_subscriptions.drain() {
kill_channel.dead.store(true, Ordering::Release);
kill_channel.on_dead_changed.notify(usize::MAX);
}
}
}
/// Outcome of the processing of [`ClientMainTask::run_until_event`].
#[derive(Debug)]
pub enum Event {
/// JSON-RPC client has sent a plain request (i.e. that isn't related to subscriptions).
HandleRequest {
/// The task that generated the event.
task: ClientMainTask,
/// Object connected to the [`ClientMainTask`] and containing the information about the
/// request to process.
request_process: RequestProcess,
},
/// JSON-RPC client desires starting a new subscription.
///
/// Note that the [`ClientMainTask`] automatically enforces a limit to the maximum number of
/// subscriptions. If this event is generated, this check has already passed.
HandleSubscriptionStart {
/// The task that generated the event.
task: ClientMainTask,
/// Object connected to the [`ClientMainTask`] and containing the information about the
/// request to process.
subscription_start: SubscriptionStartProcess,
},
/// A [`SubscriptionStartProcess`] object or a [`Subscription`] object has been destroyed.
SubscriptionDestroyed {
/// The task that generated the event.
task: ClientMainTask,
/// Id of the subscription that was destroyed. Equals to the value that
/// [`Subscription::subscription_id`] would have returned for the now-dead subscription.
subscription_id: String,
},
/// The [`SerializedRequestsIo`] has been dropped. The [`ClientMainTask`] has been destroyed.
SerializedRequestsIoClosed,
}
/// Object connected to the [`ClientMainTask`] that allows sending requests to the task and
/// receiving responses.
pub struct SerializedRequestsIo {
serialized_io: Weak<SerializedIo>,
/// Event notified after the [`SerializedRequestsIo`] is destroyed.
on_serialized_requests_io_destroyed: event_listener::Event,
}
impl SerializedRequestsIo {
/// Waits for a response or a notification to send to the JSON-RPC client to be available,
/// and returns it.
///
/// Returns `None` if the [`ClientMainTask`] has been destroyed.
///
/// > **Note**: It is important to run [`ClientMainTask::run_until_event`] concurrently to
/// > this function, otherwise it might never return.
pub async fn wait_next_response(&self) -> Result<String, WaitNextResponseError> {
let mut wait = None;
loop {
let Some(queue) = self.serialized_io.upgrade() else {
return Err(WaitNextResponseError::ClientMainTaskDestroyed);
};
// Lock the responses queue.
{
let mut responses_queue = queue.responses_queue.lock().await;
if let Some(response_index) = responses_queue
.pending_serialized_responses_queue
.pop_front()
{
let (response_or_notif, is_response) = responses_queue
.pending_serialized_responses
.remove(response_index);
if is_response {
let _prev_val = queue.num_requests_in_fly.fetch_sub(1, Ordering::Release);
debug_assert_ne!(_prev_val, u32::MAX); // Check underflows.
}
// Shrink containers if necessary in order to reduce memory usage after a
// burst of requests.
if responses_queue.pending_serialized_responses.capacity()
> responses_queue
.pending_serialized_responses
.len()
.saturating_mul(4)
{
responses_queue.pending_serialized_responses.shrink_to_fit();
}
if responses_queue
.pending_serialized_responses_queue
.capacity()
> responses_queue
.pending_serialized_responses_queue
.len()
.saturating_mul(4)
{
responses_queue
.pending_serialized_responses_queue
.shrink_to_fit();
}
return Ok(response_or_notif);
}
}
if let Some(wait) = wait.take() {
wait.await
} else {
wait = Some(queue.on_response_pushed_or_task_destroyed.listen());
}
}
}
/// Adds a JSON-RPC request to the queue of requests of the [`ClientMainTask`]. Waits if the
/// queue is full.
///
/// This might cause a call to [`ClientMainTask::run_until_event`] to return
/// [`Event::HandleRequest`] or [`Event::HandleSubscriptionStart`].
pub async fn send_request(&self, request: String) -> Result<(), SendRequestError> {
// Wait until it is possible to increment `num_requests_in_fly`.
let mut wait = None;
let queue = loop {
let Some(queue) = self.serialized_io.upgrade() else {
return Err(SendRequestError {
request,
cause: SendRequestErrorCause::ClientMainTaskDestroyed,
});
};
if queue
.num_requests_in_fly
.fetch_update(Ordering::SeqCst, Ordering::Relaxed, |old_value| {
if old_value < queue.max_requests_in_fly.get() {
// Considering that `old_value < max`, and `max` fits in a `u32` by
// definition, then `old_value + 1` also always fits in a `u32`. QED.
// There's no risk of overflow.
Some(old_value + 1)
} else {
None
}
})
.is_ok()
{
break queue;
}
if let Some(wait) = wait.take() {
wait.await;
} else {
wait = Some(queue.on_request_pulled_or_task_destroyed.listen());
}
};
// Everything successful.
queue.requests_queue.push(request);
queue.on_request_pushed.notify(usize::MAX);
Ok(())
}
/// Tries to add a JSON-RPC request to the queue of requests of the [`ClientMainTask`].
///
/// This might cause a call to [`ClientMainTask::run_until_event`] to return
/// [`Event::HandleRequest`] or [`Event::HandleSubscriptionStart`].
pub fn try_send_request(&self, request: String) -> Result<(), TrySendRequestError> {
let Some(queue) = self.serialized_io.upgrade() else {
return Err(TrySendRequestError {
request,
cause: TrySendRequestErrorCause::ClientMainTaskDestroyed,
});
};
// Try to increment `num_requests_in_fly`. Return an error if it is past the maximum.
if queue
.num_requests_in_fly
.fetch_update(Ordering::SeqCst, Ordering::Relaxed, |old_value| {
if old_value < queue.max_requests_in_fly.get() {
// Considering that `old_value < max`, and `max` fits in a `u32` by
// definition, then `old_value + 1` also always fits in a `u32`. QED.
// There's no risk of overflow.
Some(old_value + 1)
} else {
None
}
})
.is_err()
{
return Err(TrySendRequestError {
request,
cause: TrySendRequestErrorCause::TooManyPendingRequests,
});
}
// Everything successful.
queue.requests_queue.push(request);
queue.on_request_pushed.notify(usize::MAX);
Ok(())
}
}
impl fmt::Debug for SerializedRequestsIo {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("SerializedRequestsIo").finish()
}
}
impl Drop for SerializedRequestsIo {
fn drop(&mut self) {
self.on_serialized_requests_io_destroyed.notify(usize::MAX);
}
}
/// See [`SerializedRequestsIo::wait_next_response`].
#[derive(Debug, Clone, derive_more::Display, derive_more::Error)]
pub enum WaitNextResponseError {
/// The attached [`ClientMainTask`] has been destroyed.
ClientMainTaskDestroyed,
}
/// Error returned by [`SerializedRequestsIo::send_request`].
#[derive(Debug, derive_more::Display, derive_more::Error)]
#[display("{cause}")]
pub struct SendRequestError {
/// The JSON-RPC request that was passed as parameter.
pub request: String,
/// Reason for the error.
#[error(source)]
pub cause: SendRequestErrorCause,
}
/// See [`SendRequestError::cause`].
#[derive(Debug, derive_more::Display, derive_more::Error)]
pub enum SendRequestErrorCause {
/// The attached [`ClientMainTask`] has been destroyed.
ClientMainTaskDestroyed,
}
/// Error returned by [`SerializedRequestsIo::try_send_request`].
#[derive(Debug, derive_more::Display, derive_more::Error)]
#[display("{cause}")]
pub struct TrySendRequestError {
/// The JSON-RPC request that was passed as parameter.
pub request: String,
/// Reason for the error.
#[error(source)]
pub cause: TrySendRequestErrorCause,
}
/// See [`TrySendRequestError::cause`].
#[derive(Debug, derive_more::Display, derive_more::Error)]
pub enum TrySendRequestErrorCause {
/// Limit to the maximum number of pending requests that was passed as
/// [`Config::max_pending_requests`] has been reached. No more requests can be sent before
/// some responses have been pulled.
TooManyPendingRequests,
/// The attached [`ClientMainTask`] has been destroyed.
ClientMainTaskDestroyed,
}
/// Object connected to the [`ClientMainTask`] and containing a request expecting an answer.
///
/// If this object is dropped before the request has been answered, an automatic "internal error"
/// error response is automatically sent back.
pub struct RequestProcess {
/// Queue where responses and subscriptions push responses/notifications.
responses_notifications_queue: Arc<ResponsesNotificationsQueue>,
/// Request in JSON form. Guaranteed to decode successfully.
request: String,
/// `true` if a response has already been sent.
has_sent_response: bool,
}
impl RequestProcess {
/// Returns the request which must be processed.
///
/// The request is guaranteed to not be related to subscriptions in any way.
// TODO: with stronger typing users wouldn't have to worry about the type of request
pub fn request(&'_ self) -> methods::MethodCall<'_> {
methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.1
}
/// Indicate the response to the request to the [`ClientMainTask`].
///
/// Has no effect if the [`ClientMainTask`] has been destroyed.
pub fn respond(mut self, response: methods::Response) {
let request_id = methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.0;
let serialized = response.to_json_response(request_id);
self.responses_notifications_queue
.queue
.push(ToMainTask::RequestResponse(serialized));
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
self.has_sent_response = true;
}
/// Indicate to the [`ClientMainTask`] that the response to the request is `null`.
///
/// Has no effect if the [`ClientMainTask`] has been destroyed.
// TODO: the necessity for this function is basically a hack
pub fn respond_null(mut self) {
let request_id = methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.0;
let serialized = parse::build_success_response(request_id, "null");
self.responses_notifications_queue
.queue
.push(ToMainTask::RequestResponse(serialized));
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
self.has_sent_response = true;
}
/// Indicate to the [`ClientMainTask`] that the request should return an error.
///
/// Has no effect if the [`ClientMainTask`] has been destroyed.
pub fn fail(mut self, error: ErrorResponse) {
let request_id = methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.0;
let serialized = parse::build_error_response(request_id, error, None);
self.responses_notifications_queue
.queue
.push(ToMainTask::RequestResponse(serialized));
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
self.has_sent_response = true;
}
/// Indicate to the [`ClientMainTask`] that the request should return an error.
///
/// This function is similar to [`RequestProcess`], except that an additional JSON payload is
/// attached to the error.
///
/// Has no effect if the [`ClientMainTask`] has been destroyed.
pub fn fail_with_attached_json(mut self, error: ErrorResponse, json: &str) {
let request_id = methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.0;
let serialized = parse::build_error_response(request_id, error, Some(json));
self.responses_notifications_queue
.queue
.push(ToMainTask::RequestResponse(serialized));
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
self.has_sent_response = true;
}
}
impl fmt::Debug for RequestProcess {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Debug::fmt(&self.request, f)
}
}
impl Drop for RequestProcess {
fn drop(&mut self) {
if !self.has_sent_response {
let request_id = methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.0;
let serialized =
parse::build_error_response(request_id, ErrorResponse::InternalError, None);
self.responses_notifications_queue
.queue
.push(ToMainTask::RequestResponse(serialized));
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
}
}
}
/// Object connected to the [`ClientMainTask`] and containing a request that leads to the creation
/// of a subscription.
///
/// If this object is dropped before the request has been answered, an automatic "internal error"
/// error response is automatically sent back.
pub struct SubscriptionStartProcess {
/// Queue where responses and subscriptions push responses/notifications.
responses_notifications_queue: Arc<ResponsesNotificationsQueue>,
/// `Arc` shared with the client main task and that is used to notify that the subscription
/// should be killed.
kill_channel: Arc<SubscriptionKillChannel>,
/// Request in JSON form. Guaranteed to decode successfully.
request: String,
/// Identifier of the subscription. Assigned by the client task.
subscription_id: String,
/// `true` if a response has already been sent.
has_sent_response: bool,
}
impl SubscriptionStartProcess {
/// Returns the request which must be processed.
///
/// The request is guaranteed to be a request that starts a subscription.
// TODO: with stronger typing users wouldn't have to worry about the type of request
pub fn request(&'_ self) -> methods::MethodCall<'_> {
methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.1
}
/// Indicate to the [`ClientMainTask`] that the subscription is accepted.
///
/// The [`ClientMainTask`] will send the confirmation to the JSON-RPC client.
///
/// Has no effect if the [`ClientMainTask`] has been destroyed.
pub fn accept(mut self) -> Subscription {
let (request_id, parsed_request) =
methods::parse_jsonrpc_client_to_server(&self.request).unwrap();
let serialized_response = match parsed_request {
methods::MethodCall::author_submitAndWatchExtrinsic { .. } => {
methods::Response::author_submitAndWatchExtrinsic(Cow::Borrowed(
&self.subscription_id,
))
}
methods::MethodCall::chain_subscribeAllHeads { .. } => {
methods::Response::chain_subscribeAllHeads(Cow::Borrowed(&self.subscription_id))
}
methods::MethodCall::chain_subscribeFinalizedHeads { .. } => {
methods::Response::chain_subscribeFinalizedHeads(Cow::Borrowed(
&self.subscription_id,
))
}
methods::MethodCall::chain_subscribeNewHeads { .. } => {
methods::Response::chain_subscribeNewHeads(Cow::Borrowed(&self.subscription_id))
}
methods::MethodCall::state_subscribeRuntimeVersion { .. } => {
methods::Response::state_subscribeRuntimeVersion(Cow::Borrowed(
&self.subscription_id,
))
}
methods::MethodCall::state_subscribeStorage { .. } => {
methods::Response::state_subscribeStorage(Cow::Borrowed(&self.subscription_id))
}
methods::MethodCall::statement_subscribeStatement { .. } => {
methods::Response::statement_subscribeStatement(Cow::Borrowed(
&self.subscription_id,
))
}
methods::MethodCall::transactionWatch_v1_submitAndWatch { .. } => {
methods::Response::transactionWatch_v1_submitAndWatch(Cow::Borrowed(
&self.subscription_id,
))
}
methods::MethodCall::sudo_network_unstable_watch { .. } => {
methods::Response::sudo_network_unstable_watch(Cow::Borrowed(&self.subscription_id))
}
methods::MethodCall::chainHead_v1_follow { .. } => {
methods::Response::chainHead_v1_follow(Cow::Borrowed(&self.subscription_id))
}
_ => unreachable!(),
}
.to_json_response(request_id);
self.responses_notifications_queue
.queue
.push(ToMainTask::RequestResponse(serialized_response));
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
self.has_sent_response = true;
Subscription {
responses_notifications_queue: self.responses_notifications_queue.clone(),
kill_channel: self.kill_channel.clone(),
subscription_id: mem::take(&mut self.subscription_id),
}
}
/// Indicate to the [`ClientMainTask`] that the subscription start request should return an
/// error.
///
/// Has no effect if the [`ClientMainTask`] has been destroyed.
pub fn fail(mut self, error: ErrorResponse) {
let request_id = methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.0;
let serialized = parse::build_error_response(request_id, error, None);
self.responses_notifications_queue
.queue
.push(ToMainTask::RequestResponse(serialized));
self.responses_notifications_queue
.queue
.push(ToMainTask::SubscriptionDestroyed {
subscription_id: mem::take(&mut self.subscription_id),
});
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
self.has_sent_response = true;
}
}
impl fmt::Debug for SubscriptionStartProcess {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Debug::fmt(&self.request, f)
}
}
impl Drop for SubscriptionStartProcess {
fn drop(&mut self) {
if !self.has_sent_response {
let request_id = methods::parse_jsonrpc_client_to_server(&self.request)
.unwrap()
.0;
let serialized =
parse::build_error_response(request_id, ErrorResponse::InternalError, None);
self.responses_notifications_queue
.queue
.push(ToMainTask::RequestResponse(serialized));
self.responses_notifications_queue
.queue
.push(ToMainTask::SubscriptionDestroyed {
subscription_id: mem::take(&mut self.subscription_id),
});
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
}
}
}
/// Object connected to the [`ClientMainTask`] representing an active subscription.
pub struct Subscription {
/// Queue where responses and subscriptions push responses/notifications.
responses_notifications_queue: Arc<ResponsesNotificationsQueue>,
/// `Arc` shared with the client main task and that is used to notify that the subscription
/// should be killed.
kill_channel: Arc<SubscriptionKillChannel>,
/// Identifier of the subscription. Assigned by the client task.
subscription_id: String,
}
/// See [`Subscription::kill_channel`].
struct SubscriptionKillChannel {
/// `true` if this subscription should be destroyed as soon as possible.
dead: AtomicBool,
/// Notified whenever [`SubscriptionKillChannel::dead`] is modified.
on_dead_changed: event_listener::Event,
}
impl Subscription {
/// Return the identifier of this subscription. Necessary in order to generate answers.
pub fn subscription_id(&self) -> &str {
&self.subscription_id
}
/// Send a notification the [`ClientMainTask`].
///
/// Has no effect if [`Subscription::is_stale`] would return `true`.
///
/// This notification might end up being discarded if the queue of responses to send back to
/// the JSON-RPC client is full and/or if the notification is redundant with another
/// notification sent earlier.
///
/// While this function is asynchronous, it is expected to not take very long provided that
/// [`ClientMainTask::run_until_event`] is called in parallel.
///
/// > **Note**: It is important to run [`ClientMainTask::run_until_event`] concurrently to
/// > this function, otherwise it might never return.
// TODO: with stronger typing we could automatically fill the subscription_id
pub async fn send_notification(&mut self, notification: methods::ServerToClient<'_>) {
let serialized = notification.to_json_request_object_parameters(None);
// Wait until there is space in the queue or that the subscription is dead.
// Note that this is intentionally racy.
{
let mut wait = None;
loop {
// If the subscription is dead, simply do nothing. This is purely an optimization.
if self.kill_channel.dead.load(Ordering::Relaxed) {
return;
}
// If there is space, break out of the loop in order to send.
if self.responses_notifications_queue.queue.len()
< self.responses_notifications_queue.max_len
{
break;
}
if let Some(wait) = wait.take() {
wait.await
} else {
wait = Some(
self.responses_notifications_queue
.on_popped
.listen()
.or(self.kill_channel.on_dead_changed.listen()),
);
}
}
}
// Actually push the element.
self.responses_notifications_queue
.queue
.push(ToMainTask::Notification(serialized));
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
}
/// Returns `true` if the JSON-RPC client has unsubscribed, or the [`ClientMainTask`] has been
/// destroyed, or the queue of responses to send to the JSON-RPC client is clogged and the
/// logic of the subscription requires that it stops altogether in that situation.
///
/// Due to the racy nature of this function, a value of `false` can at any moment switch to
/// `true` and thus should be interpreted as "maybe". A value of `true`, however, actually
/// means "yes", as it can't ever switch back to `false`.
pub fn is_stale(&self) -> bool {
self.kill_channel.dead.load(Ordering::Relaxed)
}
/// Run indefinitely until [`Subscription::is_stale`] returns `true`.
pub async fn wait_until_stale(&mut self) {
// The control flow of this function is a bit magic, but simple enough that it should be
// easy to understand.
let mut wait = None;
loop {
if self.kill_channel.dead.load(Ordering::Acquire) {
return;
}
if let Some(wait) = wait.take() {
wait.await;
} else {
wait = Some(self.kill_channel.on_dead_changed.listen());
}
}
}
}
impl fmt::Debug for Subscription {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("Subscription")
.field(&self.subscription_id)
.finish()
}
}
impl Drop for Subscription {
fn drop(&mut self) {
self.responses_notifications_queue
.queue
.push(ToMainTask::SubscriptionDestroyed {
subscription_id: mem::take(&mut self.subscription_id),
});
self.responses_notifications_queue
.on_pushed
.notify(usize::MAX);
}
}