-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathhostcalls.rs
1255 lines (1162 loc) · 36.6 KB
/
hostcalls.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
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use crate::dispatcher;
use crate::types::*;
use std::ptr::{null, null_mut};
use std::time::{Duration, SystemTime, UNIX_EPOCH};
extern "C" {
fn proxy_log(level: LogLevel, message_data: *const u8, message_size: usize) -> Status;
}
pub fn log(level: LogLevel, message: &str) -> Result<(), Status> {
unsafe {
match proxy_log(level, message.as_ptr(), message.len()) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_get_log_level(return_level: *mut LogLevel) -> Status;
}
pub fn get_log_level() -> Result<LogLevel, Status> {
let mut return_level: LogLevel = LogLevel::Trace;
unsafe {
match proxy_get_log_level(&mut return_level) {
Status::Ok => Ok(return_level),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_get_current_time_nanoseconds(return_time: *mut u64) -> Status;
}
pub fn get_current_time() -> Result<SystemTime, Status> {
let mut return_time: u64 = 0;
unsafe {
match proxy_get_current_time_nanoseconds(&mut return_time) {
Status::Ok => Ok(UNIX_EPOCH + Duration::from_nanos(return_time)),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_set_tick_period_milliseconds(period: u32) -> Status;
}
pub fn set_tick_period(period: Duration) -> Result<(), Status> {
unsafe {
match proxy_set_tick_period_milliseconds(period.as_millis() as u32) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_get_buffer_bytes(
buffer_type: BufferType,
start: usize,
max_size: usize,
return_buffer_data: *mut *mut u8,
return_buffer_size: *mut usize,
) -> Status;
}
pub fn get_buffer(
buffer_type: BufferType,
start: usize,
max_size: usize,
) -> Result<Option<Bytes>, Status> {
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
unsafe {
match proxy_get_buffer_bytes(
buffer_type,
start,
max_size,
&mut return_data,
&mut return_size,
) {
Status::Ok => {
if !return_data.is_null() {
Ok(Some(Vec::from_raw_parts(
return_data,
return_size,
return_size,
)))
} else {
Ok(None)
}
}
Status::NotFound => Ok(None),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_set_buffer_bytes(
buffer_type: BufferType,
start: usize,
size: usize,
buffer_data: *const u8,
buffer_size: usize,
) -> Status;
}
pub fn set_buffer(
buffer_type: BufferType,
start: usize,
size: usize,
value: &[u8],
) -> Result<(), Status> {
unsafe {
match proxy_set_buffer_bytes(buffer_type, start, size, value.as_ptr(), value.len()) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_get_header_map_pairs(
map_type: MapType,
return_map_data: *mut *mut u8,
return_map_size: *mut usize,
) -> Status;
}
pub fn get_map(map_type: MapType) -> Result<Vec<(String, String)>, Status> {
unsafe {
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
match proxy_get_header_map_pairs(map_type, &mut return_data, &mut return_size) {
Status::Ok => {
if !return_data.is_null() {
let serialized_map = std::slice::from_raw_parts(return_data, return_size);
Ok(utils::deserialize_map(serialized_map))
} else {
Ok(Vec::new())
}
}
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn get_map_bytes(map_type: MapType) -> Result<Vec<(String, Bytes)>, Status> {
unsafe {
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
match proxy_get_header_map_pairs(map_type, &mut return_data, &mut return_size) {
Status::Ok => {
if !return_data.is_null() {
let serialized_map = std::slice::from_raw_parts(return_data, return_size);
Ok(utils::deserialize_map_bytes(serialized_map))
} else {
Ok(Vec::new())
}
}
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_set_header_map_pairs(
map_type: MapType,
map_data: *const u8,
map_size: usize,
) -> Status;
}
pub fn set_map(map_type: MapType, map: Vec<(&str, &str)>) -> Result<(), Status> {
let serialized_map = utils::serialize_map(map);
unsafe {
match proxy_set_header_map_pairs(map_type, serialized_map.as_ptr(), serialized_map.len()) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn set_map_bytes(map_type: MapType, map: Vec<(&str, &[u8])>) -> Result<(), Status> {
let serialized_map = utils::serialize_map_bytes(map);
unsafe {
match proxy_set_header_map_pairs(map_type, serialized_map.as_ptr(), serialized_map.len()) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_get_header_map_value(
map_type: MapType,
key_data: *const u8,
key_size: usize,
return_value_data: *mut *mut u8,
return_value_size: *mut usize,
) -> Status;
}
pub fn get_map_value(map_type: MapType, key: &str) -> Result<Option<String>, Status> {
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
unsafe {
match proxy_get_header_map_value(
map_type,
key.as_ptr(),
key.len(),
&mut return_data,
&mut return_size,
) {
Status::Ok => {
if !return_data.is_null() {
Ok(Some(
String::from_utf8(Vec::from_raw_parts(
return_data,
return_size,
return_size,
))
.unwrap(),
))
} else {
Ok(Some(String::new()))
}
}
Status::NotFound => Ok(None),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn get_map_value_bytes(map_type: MapType, key: &str) -> Result<Option<Bytes>, Status> {
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
unsafe {
match proxy_get_header_map_value(
map_type,
key.as_ptr(),
key.len(),
&mut return_data,
&mut return_size,
) {
Status::Ok => {
if !return_data.is_null() {
Ok(Some(Vec::from_raw_parts(
return_data,
return_size,
return_size,
)))
} else {
Ok(Some(Vec::new()))
}
}
Status::NotFound => Ok(None),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_remove_header_map_value(
map_type: MapType,
key_data: *const u8,
key_size: usize,
) -> Status;
}
pub fn remove_map_value(map_type: MapType, key: &str) -> Result<(), Status> {
unsafe {
match proxy_remove_header_map_value(map_type, key.as_ptr(), key.len()) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_replace_header_map_value(
map_type: MapType,
key_data: *const u8,
key_size: usize,
value_data: *const u8,
value_size: usize,
) -> Status;
}
pub fn set_map_value(map_type: MapType, key: &str, value: Option<&str>) -> Result<(), Status> {
unsafe {
if let Some(value) = value {
match proxy_replace_header_map_value(
map_type,
key.as_ptr(),
key.len(),
value.as_ptr(),
value.len(),
) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
} else {
match proxy_remove_header_map_value(map_type, key.as_ptr(), key.len()) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
}
pub fn set_map_value_bytes(
map_type: MapType,
key: &str,
value: Option<&[u8]>,
) -> Result<(), Status> {
unsafe {
if let Some(value) = value {
match proxy_replace_header_map_value(
map_type,
key.as_ptr(),
key.len(),
value.as_ptr(),
value.len(),
) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
} else {
match proxy_remove_header_map_value(map_type, key.as_ptr(), key.len()) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
}
extern "C" {
fn proxy_add_header_map_value(
map_type: MapType,
key_data: *const u8,
key_size: usize,
value_data: *const u8,
value_size: usize,
) -> Status;
}
pub fn add_map_value(map_type: MapType, key: &str, value: &str) -> Result<(), Status> {
unsafe {
match proxy_add_header_map_value(
map_type,
key.as_ptr(),
key.len(),
value.as_ptr(),
value.len(),
) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn add_map_value_bytes(map_type: MapType, key: &str, value: &[u8]) -> Result<(), Status> {
unsafe {
match proxy_add_header_map_value(
map_type,
key.as_ptr(),
key.len(),
value.as_ptr(),
value.len(),
) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_get_property(
path_data: *const u8,
path_size: usize,
return_value_data: *mut *mut u8,
return_value_size: *mut usize,
) -> Status;
}
pub fn get_property(path: Vec<&str>) -> Result<Option<Bytes>, Status> {
let serialized_path = utils::serialize_property_path(path);
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
unsafe {
match proxy_get_property(
serialized_path.as_ptr(),
serialized_path.len(),
&mut return_data,
&mut return_size,
) {
Status::Ok => {
if !return_data.is_null() {
Ok(Some(Vec::from_raw_parts(
return_data,
return_size,
return_size,
)))
} else {
Ok(None)
}
}
Status::NotFound => Ok(None),
Status::SerializationFailure => Err(Status::SerializationFailure),
Status::InternalFailure => Err(Status::InternalFailure),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_set_property(
path_data: *const u8,
path_size: usize,
value_data: *const u8,
value_size: usize,
) -> Status;
}
pub fn set_property(path: Vec<&str>, value: Option<&[u8]>) -> Result<(), Status> {
let serialized_path = utils::serialize_property_path(path);
unsafe {
match proxy_set_property(
serialized_path.as_ptr(),
serialized_path.len(),
value.map_or(null(), |value| value.as_ptr()),
value.map_or(0, |value| value.len()),
) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_get_shared_data(
key_data: *const u8,
key_size: usize,
return_value_data: *mut *mut u8,
return_value_size: *mut usize,
return_cas: *mut u32,
) -> Status;
}
pub fn get_shared_data(key: &str) -> Result<(Option<Bytes>, Option<u32>), Status> {
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
let mut return_cas: u32 = 0;
unsafe {
match proxy_get_shared_data(
key.as_ptr(),
key.len(),
&mut return_data,
&mut return_size,
&mut return_cas,
) {
Status::Ok => {
let cas = match return_cas {
0 => None,
cas => Some(cas),
};
if !return_data.is_null() {
Ok((
Some(Vec::from_raw_parts(return_data, return_size, return_size)),
cas,
))
} else {
Ok((None, cas))
}
}
Status::NotFound => Ok((None, None)),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_set_shared_data(
key_data: *const u8,
key_size: usize,
value_data: *const u8,
value_size: usize,
cas: u32,
) -> Status;
}
pub fn set_shared_data(key: &str, value: Option<&[u8]>, cas: Option<u32>) -> Result<(), Status> {
unsafe {
match proxy_set_shared_data(
key.as_ptr(),
key.len(),
value.map_or(null(), |value| value.as_ptr()),
value.map_or(0, |value| value.len()),
cas.unwrap_or(0),
) {
Status::Ok => Ok(()),
Status::CasMismatch => Err(Status::CasMismatch),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_register_shared_queue(
name_data: *const u8,
name_size: usize,
return_id: *mut u32,
) -> Status;
}
pub fn register_shared_queue(name: &str) -> Result<u32, Status> {
unsafe {
let mut return_id: u32 = 0;
match proxy_register_shared_queue(name.as_ptr(), name.len(), &mut return_id) {
Status::Ok => Ok(return_id),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_resolve_shared_queue(
vm_id_data: *const u8,
vm_id_size: usize,
name_data: *const u8,
name_size: usize,
return_id: *mut u32,
) -> Status;
}
pub fn resolve_shared_queue(vm_id: &str, name: &str) -> Result<Option<u32>, Status> {
let mut return_id: u32 = 0;
unsafe {
match proxy_resolve_shared_queue(
vm_id.as_ptr(),
vm_id.len(),
name.as_ptr(),
name.len(),
&mut return_id,
) {
Status::Ok => Ok(Some(return_id)),
Status::NotFound => Ok(None),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_dequeue_shared_queue(
queue_id: u32,
return_value_data: *mut *mut u8,
return_value_size: *mut usize,
) -> Status;
}
pub fn dequeue_shared_queue(queue_id: u32) -> Result<Option<Bytes>, Status> {
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
unsafe {
match proxy_dequeue_shared_queue(queue_id, &mut return_data, &mut return_size) {
Status::Ok => {
if !return_data.is_null() {
Ok(Some(Vec::from_raw_parts(
return_data,
return_size,
return_size,
)))
} else {
Ok(None)
}
}
Status::Empty => Ok(None),
Status::NotFound => Err(Status::NotFound),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_enqueue_shared_queue(
queue_id: u32,
value_data: *const u8,
value_size: usize,
) -> Status;
}
pub fn enqueue_shared_queue(queue_id: u32, value: Option<&[u8]>) -> Result<(), Status> {
unsafe {
match proxy_enqueue_shared_queue(
queue_id,
value.map_or(null(), |value| value.as_ptr()),
value.map_or(0, |value| value.len()),
) {
Status::Ok => Ok(()),
Status::NotFound => Err(Status::NotFound),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_continue_stream(stream_type: StreamType) -> Status;
}
pub fn resume_downstream() -> Result<(), Status> {
unsafe {
match proxy_continue_stream(StreamType::Downstream) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn resume_upstream() -> Result<(), Status> {
unsafe {
match proxy_continue_stream(StreamType::Upstream) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn resume_http_request() -> Result<(), Status> {
unsafe {
match proxy_continue_stream(StreamType::HttpRequest) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn resume_http_response() -> Result<(), Status> {
unsafe {
match proxy_continue_stream(StreamType::HttpResponse) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_close_stream(stream_type: StreamType) -> Status;
}
pub fn close_downstream() -> Result<(), Status> {
unsafe {
match proxy_close_stream(StreamType::Downstream) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn close_upstream() -> Result<(), Status> {
unsafe {
match proxy_close_stream(StreamType::Upstream) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn reset_http_request() -> Result<(), Status> {
unsafe {
match proxy_close_stream(StreamType::HttpRequest) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn reset_http_response() -> Result<(), Status> {
unsafe {
match proxy_close_stream(StreamType::HttpResponse) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_send_local_response(
status_code: u32,
status_code_details_data: *const u8,
status_code_details_size: usize,
body_data: *const u8,
body_size: usize,
headers_data: *const u8,
headers_size: usize,
grpc_status: i32,
) -> Status;
}
pub fn send_http_response(
status_code: u32,
headers: Vec<(&str, &str)>,
body: Option<&[u8]>,
) -> Result<(), Status> {
let serialized_headers = utils::serialize_map(headers);
unsafe {
match proxy_send_local_response(
status_code,
null(),
0,
body.map_or(null(), |body| body.as_ptr()),
body.map_or(0, |body| body.len()),
serialized_headers.as_ptr(),
serialized_headers.len(),
-1,
) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn send_grpc_response(
grpc_status: GrpcStatusCode,
grpc_status_message: Option<&str>,
custom_metadata: Vec<(&str, &[u8])>,
) -> Result<(), Status> {
let serialized_custom_metadata = utils::serialize_map_bytes(custom_metadata);
unsafe {
match proxy_send_local_response(
200,
null(),
0,
grpc_status_message.map_or(null(), |grpc_status_message| grpc_status_message.as_ptr()),
grpc_status_message.map_or(0, |grpc_status_message| grpc_status_message.len()),
serialized_custom_metadata.as_ptr(),
serialized_custom_metadata.len(),
grpc_status as i32,
) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_http_call(
upstream_data: *const u8,
upstream_size: usize,
headers_data: *const u8,
headers_size: usize,
body_data: *const u8,
body_size: usize,
trailers_data: *const u8,
trailers_size: usize,
timeout: u32,
return_token: *mut u32,
) -> Status;
}
pub fn dispatch_http_call(
upstream: &str,
headers: Vec<(&str, &str)>,
body: Option<&[u8]>,
trailers: Vec<(&str, &str)>,
timeout: Duration,
) -> Result<u32, Status> {
let serialized_headers = utils::serialize_map(headers);
let serialized_trailers = utils::serialize_map(trailers);
let mut return_token: u32 = 0;
unsafe {
match proxy_http_call(
upstream.as_ptr(),
upstream.len(),
serialized_headers.as_ptr(),
serialized_headers.len(),
body.map_or(null(), |body| body.as_ptr()),
body.map_or(0, |body| body.len()),
serialized_trailers.as_ptr(),
serialized_trailers.len(),
timeout.as_millis() as u32,
&mut return_token,
) {
Status::Ok => {
dispatcher::register_callout(return_token);
Ok(return_token)
}
Status::BadArgument => Err(Status::BadArgument),
Status::InternalFailure => Err(Status::InternalFailure),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_grpc_call(
upstream_data: *const u8,
upstream_size: usize,
service_name_data: *const u8,
service_name_size: usize,
method_name_data: *const u8,
method_name_size: usize,
initial_metadata_data: *const u8,
initial_metadata_size: usize,
message_data_data: *const u8,
message_data_size: usize,
timeout: u32,
return_callout_id: *mut u32,
) -> Status;
}
pub fn dispatch_grpc_call(
upstream_name: &str,
service_name: &str,
method_name: &str,
initial_metadata: Vec<(&str, &[u8])>,
message: Option<&[u8]>,
timeout: Duration,
) -> Result<u32, Status> {
let mut return_callout_id = 0;
let serialized_initial_metadata = utils::serialize_map_bytes(initial_metadata);
unsafe {
match proxy_grpc_call(
upstream_name.as_ptr(),
upstream_name.len(),
service_name.as_ptr(),
service_name.len(),
method_name.as_ptr(),
method_name.len(),
serialized_initial_metadata.as_ptr(),
serialized_initial_metadata.len(),
message.map_or(null(), |message| message.as_ptr()),
message.map_or(0, |message| message.len()),
timeout.as_millis() as u32,
&mut return_callout_id,
) {
Status::Ok => {
dispatcher::register_grpc_callout(return_callout_id);
Ok(return_callout_id)
}
Status::ParseFailure => Err(Status::ParseFailure),
Status::InternalFailure => Err(Status::InternalFailure),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_grpc_stream(
upstream_data: *const u8,
upstream_size: usize,
service_name_data: *const u8,
service_name_size: usize,
method_name_data: *const u8,
method_name_size: usize,
initial_metadata_data: *const u8,
initial_metadata_size: usize,
return_stream_id: *mut u32,
) -> Status;
}
pub fn open_grpc_stream(
upstream_name: &str,
service_name: &str,
method_name: &str,
initial_metadata: Vec<(&str, &[u8])>,
) -> Result<u32, Status> {
let mut return_stream_id = 0;
let serialized_initial_metadata = utils::serialize_map_bytes(initial_metadata);
unsafe {
match proxy_grpc_stream(
upstream_name.as_ptr(),
upstream_name.len(),
service_name.as_ptr(),
service_name.len(),
method_name.as_ptr(),
method_name.len(),
serialized_initial_metadata.as_ptr(),
serialized_initial_metadata.len(),
&mut return_stream_id,
) {
Status::Ok => {
dispatcher::register_grpc_stream(return_stream_id);
Ok(return_stream_id)
}
Status::ParseFailure => Err(Status::ParseFailure),
Status::InternalFailure => Err(Status::InternalFailure),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_grpc_send(
token: u32,
message_ptr: *const u8,
message_len: usize,
end_stream: bool,
) -> Status;
}
pub fn send_grpc_stream_message(
token: u32,
message: Option<&[u8]>,
end_stream: bool,
) -> Result<(), Status> {
unsafe {
match proxy_grpc_send(
token,
message.map_or(null(), |message| message.as_ptr()),
message.map_or(0, |message| message.len()),
end_stream,
) {
Status::Ok => Ok(()),
Status::BadArgument => Err(Status::BadArgument),
Status::NotFound => Err(Status::NotFound),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_grpc_cancel(token_id: u32) -> Status;
}
pub fn cancel_grpc_call(token_id: u32) -> Result<(), Status> {
unsafe {
match proxy_grpc_cancel(token_id) {
Status::Ok => Ok(()),
Status::NotFound => Err(Status::NotFound),
status => panic!("unexpected status: {}", status as u32),
}
}
}
pub fn cancel_grpc_stream(token_id: u32) -> Result<(), Status> {
unsafe {
match proxy_grpc_cancel(token_id) {
Status::Ok => Ok(()),
Status::NotFound => Err(Status::NotFound),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_grpc_close(token_id: u32) -> Status;
}
pub fn close_grpc_stream(token_id: u32) -> Result<(), Status> {
unsafe {
match proxy_grpc_close(token_id) {
Status::Ok => Ok(()),
Status::NotFound => Err(Status::NotFound),
status => panic!("unexpected status: {}", status as u32),
}
}
}
extern "C" {
fn proxy_get_status(
return_code: *mut u32,
return_message_data: *mut *mut u8,
return_message_size: *mut usize,
) -> Status;
}
pub fn get_grpc_status() -> Result<(u32, Option<String>), Status> {
let mut return_code: u32 = 0;
let mut return_data: *mut u8 = null_mut();
let mut return_size: usize = 0;
unsafe {
match proxy_get_status(&mut return_code, &mut return_data, &mut return_size) {
Status::Ok => {
if !return_data.is_null() {
Ok((
return_code,
Some(
String::from_utf8(Vec::from_raw_parts(
return_data,
return_size,
return_size,
))