kdbplus 0.3.9

Dual q/kdb+ interface for API to build a shared library and an IPC client.
Documentation
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
//++++++++++++++++++++++++++++++++++++++++++++++++++//
// >> Load Libraries
//++++++++++++++++++++++++++++++++++++++++++++++++++//

use super::serialize::ENCODING;
use super::Result;
use super::{qtype, K};
use async_trait::async_trait;
use io::BufRead;
use once_cell::sync::Lazy;
use sha1_smol::Sha1;
use std::collections::HashMap;
use std::convert::TryInto;
use std::net::{IpAddr, Ipv4Addr};
use std::path::Path;
use std::{env, fs, io, str};
use tokio::io::{AsyncReadExt, AsyncWriteExt, BufReader};
use tokio::net::{TcpListener, TcpStream};
#[cfg(unix)]
use tokio::net::{UnixListener, UnixStream};
use tokio_native_tls::native_tls::{
    Identity, TlsAcceptor as TlsAcceptorInner, TlsConnector as TlsConnectorInner,
};
use tokio_native_tls::{TlsAcceptor, TlsConnector, TlsStream};
use trust_dns_resolver::TokioAsyncResolver;

//++++++++++++++++++++++++++++++++++++++++++++++++++//
// >> Global Variable
//++++++++++++++++++++++++++++++++++++++++++++++++++//

//%% QStream %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

pub mod qmsg_type {
    //! This module provides a list of q message type used for IPC.
    //!  The motivation to contain them in a module is to tie them up as related items rather
    //!  than scattered values. Hence user should use these indicators with `qmsg_type::` prefix, e.g., `qmsg_type::asynchronous`.
    //!
    //! # Example
    //! ```no_run
    //! use kdbplus::ipc::*;
    //!
    //! // Print `K` object.
    //! fn print(obj: &K) {
    //!     println!("{}", obj);
    //! }
    //!
    //! // Calculate something from two long arguments.
    //! fn nonsense(arg1: i64, arg2: i64) -> i64 {
    //!     arg1 * arg2
    //! }
    //!
    //! #[tokio::main]
    //! async fn main() -> Result<()> {
    //!     // Connect to qprocess running on localhost:5000 via TCP
    //!     let mut socket =
    //!         QStream::connect(ConnectionMethod::TCP, "localhost", 5000_u16, "ideal:person").await?;
    //!
    //!     // Set a function which sends back a non-response message during its execution.
    //!     socket
    //!         .send_async_message(
    //!             &"complex:{neg[.z.w](`print; \"counter\"); what: .z.w (`nonsense; 1; 2); what*100}",
    //!         )
    //!         .await?;
    //!
    //!     // Send a query `(`complex; ::)` without waiting for a response.
    //!     socket
    //!         .send_message(
    //!             &K::new_compound_list(vec![K::new_symbol(String::from("complex")), K::new_null()]),
    //!             qmsg_type::synchronous,
    //!         )
    //!         .await?;
    //!
    //!     // Receive an asynchronous call from the function.
    //!     match socket.receive_message().await {
    //!         Ok((qmsg_type::asynchronous, message)) => {
    //!             println!("asynchronous call: {}", message);
    //!             let list = message.as_vec::<K>().unwrap();
    //!             if list[0].get_symbol().unwrap() == "print" {
    //!                 print(&list[1])
    //!             }
    //!         }
    //!         _ => unreachable!(),
    //!     }
    //!
    //!     // Receive a synchronous call from the function.
    //!     match socket.receive_message().await {
    //!         Ok((qmsg_type::synchronous, message)) => {
    //!             println!("synchronous call: {}", message);
    //!             let list = message.as_vec::<K>().unwrap();
    //!             if list[0].get_symbol().unwrap() == "nonsense" {
    //!                 let res = nonsense(list[1].get_long().unwrap(), list[2].get_long().unwrap());
    //!                 // Send bach a response.
    //!                 socket
    //!                     .send_message(&K::new_long(res), qmsg_type::response)
    //!                     .await?;
    //!             }
    //!         }
    //!         _ => unreachable!(),
    //!     }
    //!
    //!     // Receive a final result.
    //!     match socket.receive_message().await {
    //!         Ok((qmsg_type::response, message)) => {
    //!             println!("final: {}", message);
    //!         }
    //!         _ => unreachable!(),
    //!     }
    //!
    //!     Ok(())
    //! }
    //!```
    /// Used to send a message to q/kdb+ asynchronously.
    pub const asynchronous: u8 = 0;
    /// Used to send a message to q/kdb+ synchronously.
    pub const synchronous: u8 = 1;
    /// Used by q/kdb+ to identify a response for a synchronous query.
    pub const response: u8 = 2;
}

//%% QStream Acceptor %%//vvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Map from user name to password hashed with SHA1.
const ACCOUNTS: Lazy<HashMap<String, String>> = Lazy::new(|| {
    // Map from user to password
    let mut map: HashMap<String, String> = HashMap::new();
    // Open credential file
    let file = fs::OpenOptions::new()
        .read(true)
        .open(env::var("KDBPLUS_ACCOUNT_FILE").expect("KDBPLUS_ACCOUNT_FILE is not set"))
        .expect("failed to open account file");
    let mut reader = io::BufReader::new(file);
    let mut line = String::new();
    loop {
        match reader.read_line(&mut line) {
            Ok(0) => break,
            Ok(_) => {
                let credential = line.as_str().split(':').collect::<Vec<&str>>();
                let mut password = credential[1];
                if password.ends_with('\n') {
                    password = &password[0..password.len() - 1];
                }
                map.insert(credential[0].to_string(), password.to_string());
                line.clear();
            }
            _ => unreachable!(),
        }
    }
    map
});

//++++++++++++++++++++++++++++++++++++++++++++++++++//
// >> Structs
//++++++++++++++++++++++++++++++++++++++++++++++++++//

//%% ConnectionMethod %%//vvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Connection method to q/kdb+.
pub enum ConnectionMethod {
    TCP = 0,
    TLS = 1,
    /// Unix domanin socket.
    UDS = 2,
}

//%% Query %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Feature of query object.
#[async_trait]
pub trait Query: Send + Sync {
    /// Serialize into q IPC bytes including a header (encoding, message type, compresssion flag and total message length).
    ///  If the connection is within the same host, the message is not compressed under any conditions.
    /// # Parameters
    /// - `message_type`: Message type. One of followings:
    ///   - `qmsg_type::asynchronous`
    ///   - `qmsg_type::synchronous`
    ///   - `qmsg_type::response`
    /// - `is_local`: Flag of whether the connection is within the same host.
    async fn serialize(&self, message_type: u8, is_local: bool) -> Vec<u8>;
}

//%% QStreamInner %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Features which streams communicating with q must have.
#[async_trait]
trait QStreamInner: Send + Sync {
    /// Shutdown underlying stream.
    async fn shutdown(&mut self, is_server: bool) -> Result<()>;
    /// Send a message with a specified message type without waiting for a response.
    /// # Parameters
    /// - `message`: q command to execute on the remote q process.
    /// - `message_type`: Asynchronous or synchronous.
    /// - `is_local`: Flag of whether the connection is within the same host.
    async fn send_message(
        &mut self,
        message: &dyn Query,
        message_type: u8,
        is_local: bool,
    ) -> Result<()>;
    /// Send a message asynchronously.
    /// # Parameters
    /// - `message`: q command in two ways:
    ///   - `&str`: q command in a string form.
    ///   - `K`: Query in a functional form.
    /// - `is_local`: Flag of whether the connection is within the same host.
    async fn send_async_message(&mut self, message: &dyn Query, is_local: bool) -> Result<()>;
    /// Send a message asynchronously.
    /// # Parameters
    /// - `message`: q command in two ways:
    ///   - `&str`: q command in a string form.
    ///   - `K`: Query in a functional form.
    /// - `is_local`: Flag of whether the connection is within the same host.
    async fn send_sync_message(&mut self, message: &dyn Query, is_local: bool) -> Result<K>;
    /// Receive a message from a remote q process. The received message is parsed as `K` and message type is
    ///  stored in the first returned value.
    async fn receive_message(&mut self) -> Result<(u8, K)>;
}

//%% QStream %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Stream to communicate with q/kdb+.
pub struct QStream {
    /// Actual stream to communicate.
    stream: Box<dyn QStreamInner>,
    /// Connection method. One of followings:
    /// - TCP
    /// - TLS
    /// - UDS
    method: ConnectionMethod,
    /// Indicator of whether the stream is an acceptor or client.
    /// - `true`: Acceptor
    /// - `false`: Client
    listener: bool,
    /// Indicator of whether the connection is within the same host.
    /// - `true`: Connection within the same host.
    /// - `false`: Connection with outseide.
    local: bool,
}

//%% MessageHeader %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Header of q IPC data frame.
#[derive(Clone, Copy, Debug)]
struct MessageHeader {
    /// Ennoding.
    /// - 0: Big Endian
    /// - 1: Little Endian
    encoding: u8,
    /// Message type. One of followings:
    /// - 0: Asynchronous
    /// - 1: Synchronous
    /// - 2: Response
    message_type: u8,
    /// Indicator of whether the message is compressed or not.
    /// - 0: Uncompressed
    /// - 1: Compressed
    compressed: u8,
    /// Reserved byte.
    _unused: u8,
    /// Total length of the uncompressed message.
    length: u32,
}

//++++++++++++++++++++++++++++++++++++++++++++++++++//
// >> Implementation
//++++++++++++++++++++++++++++++++++++++++++++++++++//

//%% Query %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Text query.
#[async_trait]
impl Query for &str {
    async fn serialize(&self, message_type: u8, _: bool) -> Vec<u8> {
        //  Build header //--------------------------------/
        // Message header + (type indicator of string + header of string type) + string length
        let byte_message = self.as_bytes();
        let message_length = byte_message.len() as u32;
        let total_length = MessageHeader::size() as u32 + 6 + message_length;

        let total_length_bytes = match ENCODING {
            0 => total_length.to_be_bytes(),
            _ => total_length.to_le_bytes(),
        };

        // encode, message type, 0x00 for compression and 0x00 for reserved.
        // Do not compress string data because it is highly unlikely that the length of the string query
        //  is greater than 2000.
        let mut message = Vec::with_capacity(message_length as usize + MessageHeader::size());
        message.extend_from_slice(&[ENCODING, message_type, 0, 0]);
        // total body length
        message.extend_from_slice(&total_length_bytes);
        // vector type and 0x00 for attribute
        message.extend_from_slice(&[qtype::STRING as u8, 0]);

        //  Build body //---------------------------------/
        let length_info = match ENCODING {
            0 => message_length.to_be_bytes(),
            _ => message_length.to_le_bytes(),
        };

        // length of vector(message)
        message.extend_from_slice(&length_info);
        // message
        message.extend_from_slice(byte_message);

        message
    }
}

/// Functional query.
#[async_trait]
impl Query for K {
    async fn serialize(&self, message_type: u8, is_local: bool) -> Vec<u8> {
        //  Build header //--------------------------------/
        // Message header + encoded data size
        let mut byte_message = self.q_ipc_encode();
        let message_length = byte_message.len();
        let total_length = (MessageHeader::size() + message_length) as u32;

        let total_length_bytes = match ENCODING {
            0 => total_length.to_be_bytes(),
            _ => total_length.to_le_bytes(),
        };

        // Compression is trigerred when entire message size is more than 2000 bytes
        //  and the connection is with outseide.
        if message_length > 1992 && !is_local {
            // encode, message type, 0x00 for compression, 0x00 for reserved and 0x00000000 for total size
            let mut message = Vec::with_capacity(message_length + 8);
            message.extend_from_slice(&[ENCODING, message_type as u8, 0, 0, 0, 0, 0, 0]);
            message.append(&mut byte_message);
            // Try to encode entire message.
            match compress(message).await {
                (true, compressed) => {
                    // Message was compressed
                    return compressed;
                }
                (false, mut uncompressed) => {
                    // Message was not compressed.
                    // Write original total data size.
                    uncompressed[4..8].copy_from_slice(&total_length_bytes);
                    return uncompressed;
                }
            }
        } else {
            // encode, message type, 0x00 for compression and 0x00 for reserved
            let mut message = Vec::with_capacity(message_length + MessageHeader::size());
            message.extend_from_slice(&[ENCODING, message_type as u8, 0, 0]);
            // Total length of body
            message.extend_from_slice(&total_length_bytes);
            message.append(&mut byte_message);
            return message;
        }
    }
}

//%% QStream %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

impl QStream {
    /// General constructor of `QStream`.
    fn new(
        stream: Box<dyn QStreamInner>,
        method: ConnectionMethod,
        is_listener: bool,
        is_local: bool,
    ) -> Self {
        QStream {
            stream: stream,
            method: method,
            listener: is_listener,
            local: is_local,
        }
    }

    /// Connect to q/kdb+ specifying a connection method, destination host, destination port and access credential.
    /// # Parameters
    /// - `method`: Connection method. One of followings:
    ///   - TCP
    ///   - TLS
    ///   - UDS
    /// - `host`: Hostname or IP address of the target q process. Empty `str` for Unix domain socket.
    /// - `port`: Port of the target q process.
    /// - `credential`: Credential in the form of `username:password` to connect to the target q process.
    /// # Example
    /// ```
    /// use kdbplus::qattribute;
    /// use kdbplus::ipc::*;
    ///
    /// #[tokio::main(flavor = "multi_thread", worker_threads = 2)]
    /// async fn main() -> Result<()> {
    ///     let mut socket =
    ///         QStream::connect(ConnectionMethod::UDS, "", 5000_u16, "ideal:person").await?;
    ///     println!("Connection type: {}", socket.get_connection_type());
    ///
    ///     // Set remote function with asynchronous message
    ///     socket.send_async_message(&"collatz:{[n] seq:enlist n; while[not n = 1; seq,: n:$[n mod 2; 1 + 3 * n; `long$n % 2]]; seq}").await?;
    ///
    ///     // Send a query synchronously
    ///     let mut result = socket.send_sync_message(&"collatz[12]").await?;
    ///     println!("collatz[12]: {}", result);
    ///
    ///     // Send a functional query.
    ///     let mut message = K::new_compound_list(vec![
    ///         K::new_symbol(String::from("collatz")),
    ///         K::new_long(100),
    ///     ]);
    ///     result = socket.send_sync_message(&message).await?;
    ///     println!("collatz[100]: {}", result);
    ///
    ///     // Send a functional asynchronous query.
    ///     message = K::new_compound_list(vec![
    ///         K::new_string(String::from("show"), qattribute::NONE),
    ///         K::new_symbol(String::from("goodbye")),
    ///     ]);
    ///     socket.send_async_message(&message).await?;
    ///
    ///     socket.shutdown().await?;
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn connect(
        method: ConnectionMethod,
        host: &str,
        port: u16,
        credential: &str,
    ) -> Result<Self> {
        match method {
            ConnectionMethod::TCP => {
                let stream = connect_tcp(host, port, credential).await?;
                let is_local = match host {
                    "localhost" | "127.0.0.1" => true,
                    _ => false,
                };
                Ok(QStream::new(
                    Box::new(stream),
                    ConnectionMethod::TCP,
                    false,
                    is_local,
                ))
            }
            ConnectionMethod::TLS => {
                let stream = connect_tls(host, port, credential).await?;
                Ok(QStream::new(
                    Box::new(stream),
                    ConnectionMethod::TLS,
                    false,
                    false,
                ))
            }
            ConnectionMethod::UDS => {
                let stream = connect_uds(port, credential).await?;
                Ok(QStream::new(
                    Box::new(stream),
                    ConnectionMethod::UDS,
                    false,
                    true,
                ))
            }
        }
    }

    /// Accept connection and does handshake.
    /// # Parameters
    /// - `method`: Connection method. One of followings:
    ///   - TCP
    ///   - TLS
    ///   - UDS
    /// - host: Hostname or IP address of this listener. Empty `str` for Unix domain socket.
    /// - port: Listening port.
    /// # Example
    /// ```no_run
    /// use kdbplus::ipc::*;
    ///  
    /// #[tokio::main]
    /// async fn main() -> Result<()> {
    ///     // Start listenening over UDS at the port 7000 with authentication enabled.
    ///     while let Ok(mut socket) = QStream::accept(ConnectionMethod::UDS, "", 7000).await {
    ///         tokio::task::spawn(async move {
    ///             loop {
    ///                 match socket.receive_message().await {
    ///                     Ok((_, message)) => {
    ///                         println!("request: {}", message);
    ///                     }
    ///                     _ => {
    ///                         socket.shutdown().await.unwrap();
    ///                         break;
    ///                     }
    ///                 }
    ///             }
    ///         });
    ///     }
    ///
    ///     Ok(())
    /// }
    /// ```
    /// q processes can connect and send messages to this acceptor.
    /// ```q
    /// q)// Process1
    /// q)h:hopen `:unix://7000:reluctant:slowday
    /// q)neg[h] (`monalizza; 3.8)
    /// q)neg[h] (`pizza; 125)
    /// ```
    /// ```q
    /// q)// Process2
    /// q)h:hopen `:unix://7000:mattew:oracle
    /// q)neg[h] (`teddy; "bear")
    /// ```
    /// # Note
    /// - TLS acceptor sets `.kdbplus.close_tls_connection_` on q clien via an asynchronous message. This function is necessary to close
    ///  the socket from the server side without crashing server side application.
    /// - TLS acceptor and UDS acceptor use specific environmental variables to work. See the [Environmental Variable](../ipc/index.html#environmentl-variables) section for details.
    pub async fn accept(method: ConnectionMethod, host: &str, port: u16) -> Result<Self> {
        match method {
            ConnectionMethod::TCP => {
                // Bind to the endpoint.
                let listener = TcpListener::bind(&format!("{}:{}", host, port)).await?;
                // Listen to the endpoint.
                let (mut socket, ip_address) = listener.accept().await?;
                // Read untill null bytes and send back capacity.
                while let Err(_) = read_client_input(&mut socket).await {
                    // Continue to listen in case of error.
                    socket = listener.accept().await?.0;
                }
                // Check if the connection is local
                Ok(QStream::new(
                    Box::new(socket),
                    ConnectionMethod::TCP,
                    true,
                    ip_address.ip() == IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)),
                ))
            }
            ConnectionMethod::TLS => {
                // Bind to the endpoint.
                let listener = TcpListener::bind(&format!("{}:{}", host, port)).await?;
                // Check if key exists and decode an identity with a given password.
                let identity = build_identity_from_cert().await?;
                // Build TLS acceptor.
                let tls_acceptor = TlsAcceptor::from(TlsAcceptorInner::new(identity).unwrap());
                // Listen to the endpoint.
                let (mut socket, _) = listener.accept().await?;
                // TLS processing.
                let mut tls_socket = tls_acceptor
                    .accept(socket)
                    .await
                    .expect("failed to accept TLS connection");
                // Read untill null bytes and send back a capacity.
                while let Err(_) = read_client_input(&mut tls_socket).await {
                    // Continue to listen in case of error.
                    socket = listener.accept().await?.0;
                    tls_socket = tls_acceptor
                        .accept(socket)
                        .await
                        .expect("failed to accept TLS connection");
                }
                // TLS is always a remote connection
                let mut qstream = QStream::new(
                    Box::new(TlsStream::from(tls_socket)),
                    ConnectionMethod::TCP,
                    true,
                    false,
                );
                // In order to close the connection from the server side, it needs to tell a client to close the connection.
                // The `kdbplus_close_tls_connection_` will be called from the server at shutdown.
                qstream
                    .send_async_message(&".kdbplus.close_tls_connection_:{[] hclose .z.w;}")
                    .await?;
                Ok(qstream)
            }
            ConnectionMethod::UDS => {
                // uild a sockt file path.
                let uds_path = create_sockfile_path(port)?;
                let abstract_sockfile_ = format!("\x00{}", uds_path);
                let abstract_sockfile = Path::new(&abstract_sockfile_);
                // Bind to the file
                let listener = UnixListener::bind(&abstract_sockfile).unwrap();
                // Listen to the endpoint
                let (mut socket, _) = listener.accept().await?;
                // Read untill null bytes and send back capacity.
                while let Err(_) = read_client_input(&mut socket).await {
                    // Continue to listen in case of error.
                    socket = listener.accept().await?.0;
                }
                // UDS is always a local connection
                Ok(QStream::new(Box::new(socket), method, true, true))
            }
        }
    }

    /// Shutdown the socket for a q process.
    /// # Example
    /// See the example of [`connect`](#method.connect).
    pub async fn shutdown(mut self) -> Result<()> {
        self.stream.shutdown(self.listener).await
    }

    /// Send a message with a specified message type without waiting for a response even for a synchronous message.
    ///  If you need to receive a response you need to use [`receive_message`](#method.receive_message).
    /// # Note
    /// The usage of this function for a synchronous message is to handle an asynchronous message or a synchronous message
    ///   sent by a remote function during its execution.
    /// # Parameters
    /// - `message`: q command to execute on the remote q process.
    ///   - `&str`: q command in a string form.
    ///   - `K`: Query in a functional form.
    /// - `message_type`: Asynchronous or synchronous.
    /// # Example
    /// See the example of [`connect`](#method.connect).
    pub async fn send_message(&mut self, message: &dyn Query, message_type: u8) -> Result<()> {
        self.stream
            .send_message(message, message_type, self.local)
            .await
    }

    /// Send a message asynchronously.
    /// # Parameters
    /// - `message`: q command to execute on the remote q process.
    ///   - `&str`: q command in a string form.
    ///   - `K`: Query in a functional form.
    /// # Example
    /// See the example of [`connect`](#method.connect).
    pub async fn send_async_message(&mut self, message: &dyn Query) -> Result<()> {
        self.stream.send_async_message(message, self.local).await
    }

    /// Send a message synchronously.
    /// # Note
    /// Remote function must NOT send back a message of asynchronous or synchronous type durning execution of the function.
    /// # Parameters
    /// - `message`: q command to execute on the remote q process.
    ///   - `&str`: q command in a string form.
    ///   - `K`: Query in a functional form.
    /// # Example
    /// See the example of [`connect`](#method.connect).
    pub async fn send_sync_message(&mut self, message: &dyn Query) -> Result<K> {
        self.stream.send_sync_message(message, self.local).await
    }

    /// Receive a message from a remote q process. The received message is parsed as `K` and message type is
    ///  stored in the first returned value.
    /// # Example
    /// See the example of [`accept`](#method.accept).
    pub async fn receive_message(&mut self) -> Result<(u8, K)> {
        self.stream.receive_message().await
    }

    /// Return underlying connection type. One of `TCP`, `TLS` or `UDS`.
    /// # Example
    /// See the example of [`connect`](#method.connect).
    pub fn get_connection_type(&self) -> &str {
        match self.method {
            ConnectionMethod::TCP => "TCP",
            ConnectionMethod::TLS => "TLS",
            ConnectionMethod::UDS => "UDS",
        }
    }

    /// Enforce compression if the size of a message exceeds 2000 regardless of locality of the connection.
    ///  This flag is not revertible intentionally.
    pub fn enforce_compression(&mut self) {
        self.local = false;
    }
}

//%% QStreamInner %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

#[async_trait]
impl QStreamInner for TcpStream {
    async fn shutdown(&mut self, _: bool) -> Result<()> {
        AsyncWriteExt::shutdown(self).await?;
        Ok(())
    }

    async fn send_message(
        &mut self,
        message: &dyn Query,
        message_type: u8,
        is_local: bool,
    ) -> Result<()> {
        // Serialize a message
        let byte_message = message.serialize(message_type, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        Ok(())
    }

    async fn send_async_message(&mut self, message: &dyn Query, is_local: bool) -> Result<()> {
        // Serialize a message
        let byte_message = message.serialize(qmsg_type::asynchronous, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        Ok(())
    }

    async fn send_sync_message(&mut self, message: &dyn Query, is_local: bool) -> Result<K> {
        // Serialize a message
        let byte_message = message.serialize(qmsg_type::synchronous, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        // Receive a response. If message type is not response it returns an error.
        match receive_message(self).await {
            Ok((qmsg_type::response, response)) => Ok(response),
            Err(error) => Err(error),
            Ok((_, message)) => Err(io::Error::new(
                io::ErrorKind::InvalidData,
                format!("expected a response: {}", message),
            )
            .into()),
        }
    }

    async fn receive_message(&mut self) -> Result<(u8, K)> {
        receive_message(self).await
    }
}

#[async_trait]
impl QStreamInner for TlsStream<TcpStream> {
    async fn shutdown(&mut self, is_listener: bool) -> Result<()> {
        if is_listener {
            // Closing the handle from the server side by `self.get_mut().shutdown()` crashes due to 'assertion failed: !self.context.is_null()'.
            // No reason to compress.
            self.send_async_message(&".kdbplus.close_tls_connection_[]", false)
                .await
                .into()
        } else {
            self.get_mut().shutdown()?;
            Ok(())
        }
    }

    async fn send_message(
        &mut self,
        message: &dyn Query,
        message_type: u8,
        is_local: bool,
    ) -> Result<()> {
        // Serialize a message
        let byte_message = message.serialize(message_type, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        Ok(())
    }

    async fn send_async_message(&mut self, message: &dyn Query, is_local: bool) -> Result<()> {
        // Serialize a message
        let byte_message = message.serialize(qmsg_type::asynchronous, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        Ok(())
    }

    async fn send_sync_message(&mut self, message: &dyn Query, is_local: bool) -> Result<K> {
        // Serialize a message
        let byte_message = message.serialize(qmsg_type::synchronous, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        // Receive a response. If message type is not response it returns an error.
        match receive_message(self).await {
            Ok((qmsg_type::response, response)) => Ok(response),
            Err(error) => Err(error),
            Ok((_, message)) => Err(io::Error::new(
                io::ErrorKind::InvalidData,
                format!("expected a response: {}", message),
            )
            .into()),
        }
    }

    async fn receive_message(&mut self) -> Result<(u8, K)> {
        receive_message(self).await
    }
}

#[async_trait]
impl QStreamInner for UnixStream {
    /// Close a handle to a q process which is connected with Unix Domain Socket.
    ///  Socket file is removed.
    async fn shutdown(&mut self, _: bool) -> Result<()> {
        AsyncWriteExt::shutdown(self).await?;
        Ok(())
    }

    async fn send_message(
        &mut self,
        message: &dyn Query,
        message_type: u8,
        is_local: bool,
    ) -> Result<()> {
        // Serialize a message
        let byte_message = message.serialize(message_type, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        Ok(())
    }

    async fn send_async_message(&mut self, message: &dyn Query, is_local: bool) -> Result<()> {
        // Serialize a message
        let byte_message = message.serialize(qmsg_type::asynchronous, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        Ok(())
    }

    async fn send_sync_message(&mut self, message: &dyn Query, is_local: bool) -> Result<K> {
        // Serialize a message
        let byte_message = message.serialize(qmsg_type::synchronous, is_local).await;
        // Send the message
        write_all_cancellation_safe(self, &byte_message).await?;
        // Receive a response. If message type is not response it returns an error.
        match receive_message(self).await {
            Ok((qmsg_type::response, response)) => Ok(response),
            Err(error) => Err(error),
            Ok((_, message)) => Err(io::Error::new(
                io::ErrorKind::InvalidData,
                format!("expected a response: {}", message),
            )
            .into()),
        }
    }

    async fn receive_message(&mut self) -> Result<(u8, K)> {
        receive_message(self).await
    }
}

//%% MessageHeader %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

impl MessageHeader {
    /// Constructor.
    fn new(encoding: u8, message_type: u8, compressed: u8, length: u32) -> Self {
        MessageHeader {
            encoding: encoding,
            message_type: message_type,
            compressed: compressed,
            _unused: 0,
            length: length,
        }
    }

    /// Constructor from bytes.
    fn from_bytes(bytes: [u8; 8]) -> Self {
        let encoding = bytes[0];

        let length = match encoding {
            0 => u32::from_be_bytes(bytes[4..8].try_into().unwrap()),
            _ => u32::from_le_bytes(bytes[4..8].try_into().unwrap()),
        };

        // Build header
        MessageHeader::new(encoding, bytes[1], bytes[2], length)
    }

    /// Length of bytes for a header.
    fn size() -> usize {
        8
    }
}

//++++++++++++++++++++++++++++++++++++++++++++++++++//
// >> Private Functions
//++++++++++++++++++++++++++++++++++++++++++++++++++//

//%% QStream Connector %%//vvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Inner function of `connect_tcp` and `connect_tls` to establish a TCP connection with the sepcified
///  endpoint. The hostname is resolved to an IP address with a system DNS resolver or parsed directly
///  as an IP address.
///
/// Tries to connect to multiple resolved IP addresses until the first successful connection. Error is
///  returned if none of them are valid.
/// # Parameters
/// - `host`: Hostname or IP address of the target q/kdb+ process.
/// - `port`: Port of the target q process
async fn connect_tcp_impl(host: &str, port: u16) -> Result<TcpStream> {
    // DNS system resolver (should not fail)
    let resolver =
        TokioAsyncResolver::tokio_from_system_conf().expect("failed to create a resolver");

    // Check if we were given an IP address
    let ips;
    if let Ok(ip) = host.parse::<IpAddr>() {
        ips = vec![ip.to_string()]
    } else {
        // Resolve the given hostname
        ips = resolver
            .ipv4_lookup(format!("{}.", host).as_str())
            .await
            .unwrap()
            .iter()
            .map(|result| result.to_string())
            .collect()
    };

    for answer in ips {
        let host_port = format!("{}:{}", answer, port);
        // Return if this IP address is valid
        match TcpStream::connect(&host_port).await {
            Ok(socket) => {
                println!("connected: {}", host_port);
                return Ok(socket);
            }
            Err(_) => {
                eprintln!("connection refused: {}. try next.", host_port);
            }
        }
    }
    // All addresses failed.
    Err(io::Error::new(io::ErrorKind::ConnectionRefused, "failed to connect").into())
}

/// Send a credential and receive a common capacity.
async fn handshake<S>(socket: &mut S, credential_: &str, method_bytes: &str) -> Result<()>
where
    S: Unpin + AsyncWriteExt + AsyncReadExt,
{
    // Send credential
    let credential = credential_.to_string() + method_bytes;
    write_all_cancellation_safe(socket, credential.as_bytes()).await?;

    // Placeholder of common capablility
    let mut cap = [0u8; 1];
    if let Err(_) = socket.read_exact(&mut cap).await {
        // Connection is closed in case of authentication failure
        Err(io::Error::new(io::ErrorKind::ConnectionAborted, "authentication failure").into())
    } else {
        Ok(())
    }
}

/// Connect to q process running on a specified `host` and `port` via TCP with a credential `username:password`.
/// # Parameters
/// - `host`: Hostname or IP address of the target q process.
/// - `port`: Port of the target q process.
/// - `credential`: Credential in the form of `username:password` to connect to the target q process.
async fn connect_tcp(host: &str, port: u16, credential: &str) -> Result<TcpStream> {
    // Connect via TCP
    let mut socket = connect_tcp_impl(host, port).await?;
    // Handshake
    handshake(&mut socket, credential, "\x03\x00").await?;
    Ok(socket)
}

/// TLS version of `connect_tcp`.
/// # Parameters
/// - `host`: Hostname or IP address of the target q process.
/// - `port`: Port of the target q process.
/// - `credential`: Credential in the form of `username:password` to connect to the target q process.
async fn connect_tls(host: &str, port: u16, credential: &str) -> Result<TlsStream<TcpStream>> {
    // Connect via TCP
    let socket_ = connect_tcp_impl(host, port).await?;
    // Use TLS
    let connector = TlsConnector::from(TlsConnectorInner::new().unwrap());
    let mut socket = connector
        .connect(host, socket_)
        .await
        .expect("failed to create TLS session");
    // Handshake
    handshake(&mut socket, credential, "\x03\x00").await?;
    Ok(socket)
}

/// Build a path of a socket file.
fn create_sockfile_path(port: u16) -> Result<String> {
    // Create file path
    let udspath = match env::var("QUDSPATH") {
        Ok(dir) => format!("{}/kx.{}", dir, port),
        Err(_) => format!("/tmp/kx.{}", port),
    };

    Ok(udspath)
}

/// Connect to q process running on the specified `port` via Unix domain socket with a credential `username:password`.
/// # Parameters
/// - `port`: Port of the target q process.
/// - `credential`: Credential in the form of `username:password` to connect to the target q process.
#[cfg(unix)]
async fn connect_uds(port: u16, credential: &str) -> Result<UnixStream> {
    // Create a file path.
    let uds_path = create_sockfile_path(port)?;
    let abstract_sockfile_ = format!("\x00{}", uds_path);
    let abstract_sockfile = Path::new(&abstract_sockfile_);
    // Connect to kdb+.
    let mut socket = UnixStream::connect(&abstract_sockfile).await?;
    // Handshake
    handshake(&mut socket, credential, "\x06\x00").await?;

    Ok(socket)
}

//%% QStream Acceptor %%//vvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Read username, password, capacity and null byte from q client at the connection and does authentication.
///  Close the handle if the authentication fails.
async fn read_client_input<S>(socket: &mut S) -> Result<()>
where
    S: Unpin + AsyncWriteExt + AsyncReadExt,
{
    // Buffer to read inputs.
    let mut client_input = [0u8; 32];
    // credential will be built from small fractions of bytes.
    let mut passed_credential = String::new();
    loop {
        // Read a client credential input.
        match socket.read(&mut client_input).await {
            Ok(0) => {
                // No bytes were read
            }
            Ok(_) => {
                // Locate a byte denoting a capacity
                if let Some(index) = client_input
                    .iter()
                    .position(|byte| *byte == 0x03 || *byte == 0x06)
                {
                    let capacity = client_input[index];
                    passed_credential
                        .push_str(str::from_utf8(&client_input[0..index]).expect("invalid bytes"));
                    let credential = passed_credential.as_str().split(':').collect::<Vec<&str>>();
                    if let Some(encoded) = ACCOUNTS.get(&credential[0].to_string()) {
                        // User exists
                        let mut hasher = Sha1::new();
                        hasher.update(credential[1].as_bytes());
                        let encoded_password = hasher.digest().to_string();
                        if encoded == &encoded_password {
                            // Client passed correct credential
                            socket.write_all(&[capacity; 1]).await?;
                            return Ok(());
                        } else {
                            // Authentication failure.
                            // Close connection.
                            socket.shutdown().await?;
                            return Err(io::Error::new(
                                io::ErrorKind::InvalidData,
                                "authentication failed",
                            )
                            .into());
                        }
                    } else {
                        // Authentication failure.
                        // Close connection.
                        socket.shutdown().await?;
                        return Err(io::Error::new(
                            io::ErrorKind::InvalidData,
                            "authentication failed",
                        )
                        .into());
                    }
                } else {
                    // Append a fraction of credential
                    passed_credential
                        .push_str(str::from_utf8(&client_input).expect("invalid bytes"));
                }
            }
            Err(error) => {
                return Err(error.into());
            }
        }
    }
}

/// Check if server key exists and return teh contents.
async fn build_identity_from_cert() -> Result<Identity> {
    // Check if server key exists.
    if let Ok(path) = env::var("KDBPLUS_TLS_KEY_FILE") {
        if let Ok(password) = env::var("KDBPLUS_TLS_KEY_FILE_SECRET") {
            let cert_file = tokio::fs::File::open(Path::new(&path)).await.unwrap();
            let mut reader = BufReader::new(cert_file);
            let mut der: Vec<u8> = Vec::new();
            // Read the key file.
            reader.read_to_end(&mut der).await?;
            // Create identity.
            if let Ok(identity) = Identity::from_pkcs12(&der, &password) {
                return Ok(identity);
            } else {
                return Err(
                    io::Error::new(io::ErrorKind::InvalidData, "authentication failed").into(),
                );
            }
        } else {
            return Err(io::Error::new(
                io::ErrorKind::NotFound,
                "KDBPLUS_TLS_KEY_FILE_SECRET is not set",
            )
            .into());
        }
    } else {
        return Err(
            io::Error::new(io::ErrorKind::NotFound, "KDBPLUS_TLS_KEY_FILE is not set").into(),
        );
    }
}

//%% QStream Query %%//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvv/

/// Read bytes exactly the same length of bytes as the buffer length.
async fn read_exact_cancellation_safe<S>(socket: &mut S, buffer: &mut [u8]) -> Result<usize>
where
    S: Unpin + AsyncReadExt,
{
    let mut read_total = 0;
    let to_read = buffer.len();
    loop {
        read_total += socket.read(buffer).await?;
        if read_total == to_read {
            break;
        }
    }
    Ok(read_total)
}

/// Write all bytes in the buffer length.
async fn write_all_cancellation_safe<S>(socket: &mut S, buffer: &[u8]) -> Result<usize>
where
    S: Unpin + AsyncWriteExt,
{
    let mut write_total = 0;
    let to_write = buffer.len();
    loop {
        write_total += socket.write(&buffer[write_total..]).await?;
        if write_total == to_write {
            break;
        }
    }
    Ok(write_total)
}

/// Receive a message from q process with decompression if necessary. The received message is parsed as `K` and message type is
///  stored in the first returned value.
/// # Parameters
/// - `socket`: Socket to communicate with a q process. Either of `TcpStream`, `TlsStream<TcpStream>` or `UnixStream`.
async fn receive_message<S>(socket: &mut S) -> Result<(u8, K)>
where
    S: Unpin + AsyncReadExt,
{
    // Read header
    let mut header_buffer = [0u8; 8];
    if let Err(err) = read_exact_cancellation_safe(socket, &mut header_buffer).await {
        // The expected message is header or EOF (close due to q process failure resulting from a bad query)
        return Err(io::Error::new(
            io::ErrorKind::ConnectionAborted,
            format!("Connection dropped: {}", err),
        )
        .into());
    }

    // Parse message header
    let header = MessageHeader::from_bytes(header_buffer);

    // Read body
    let body_length = header.length as usize - MessageHeader::size();
    let mut body: Vec<u8> = Vec::with_capacity(body_length);
    body.resize(body_length, 0_u8);
    if let Err(err) = read_exact_cancellation_safe(socket, &mut body).await {
        // Fails if q process fails before reading the body
        return Err(io::Error::new(
            io::ErrorKind::UnexpectedEof,
            format!("Failed to read body of message: {}", err),
        )
        .into());
    }

    // Decompress if necessary
    if header.compressed == 0x01 {
        body = decompress(body, header.encoding).await;
    }

    Ok((
        header.message_type,
        K::q_ipc_decode(&body, header.encoding).await,
    ))
}

/// Compress body. The combination of serializing the data and compressing will result in
/// the same output as shown in the q language by using the -18! function e.g.
/// serializing 2000 bools set to true, then compressing, will have the same output as `-18!2000#1b`.
/// # Parameter
/// - `raw`: Serialized message.
/// - `encode`: `0` if Big Endian; `1` if Little Endian.
async fn compress(raw: Vec<u8>) -> (bool, Vec<u8>) {
    let mut i = 0_u8;
    let mut f = 0_u8;
    let mut h0 = 0_usize;
    let mut h = 0_usize;
    let mut g: bool;
    let mut compressed: Vec<u8> = Vec::with_capacity((raw.len()) / 2);
    // Assure that vector is filled with 0
    compressed.resize((raw.len()) / 2, 0_u8);

    // Start index of compressed body
    // 12 bytes are reserved for the header + size of raw bytes
    let mut c = 12;
    let mut d = c;
    let e = compressed.len();
    let mut p = 0_usize;
    let mut q: usize;
    let mut r: usize;
    let mut s0 = 0_usize;

    // Body starts from index 8
    let mut s = 8_usize;
    let t = raw.len();
    let mut a = [0_i32; 256];

    // Copy encode, message type, compressed and reserved
    compressed[0..4].copy_from_slice(&raw[0..4]);
    // Set compressed flag
    compressed[2] = 1;

    // Write size of raw bytes including a header
    let raw_size = match ENCODING {
        0 => (t as u32).to_be_bytes(),
        _ => (t as u32).to_le_bytes(),
    };
    compressed[8..12].copy_from_slice(&raw_size);

    while s < t {
        if i == 0 {
            if d > e - 17 {
                // Early return when compressing to less than half failed
                return (false, raw);
            }
            i = 1;
            compressed[c] = f;
            c = d;
            d += 1;
            f = 0;
        }
        g = s > t - 3;
        if !g {
            h = (raw[s] ^ raw[s + 1]) as usize;
            p = a[h] as usize;
            g = (0 == p) || (0 != (raw[s] ^ raw[p]));
        }
        if 0 < s0 {
            a[h0] = s0 as i32;
            s0 = 0;
        }
        if g {
            h0 = h;
            s0 = s;
            compressed[d] = raw[s];
            d += 1;
            s += 1;
        } else {
            a[h] = s as i32;
            f |= i;
            p += 2;
            s += 2;
            r = s;
            q = if s + 255 > t { t } else { s + 255 };
            while (s < q) && (raw[p] == raw[s]) {
                s += 1;
                if s < q {
                    p += 1;
                }
            }
            compressed[d] = h as u8;
            d += 1;
            compressed[d] = (s - r) as u8;
            d += 1;
        }
        i = i.wrapping_mul(2);
    }
    compressed[c] = f;
    // Final compressed data size
    let compressed_size = match ENCODING {
        0 => (d as u32).to_be_bytes(),
        _ => (d as u32).to_le_bytes(),
    };
    compressed[4..8].copy_from_slice(&compressed_size);
    let _ = compressed.split_off(d);
    (true, compressed)
}

/// Decompress body. The combination of decompressing and deserializing the data
///  will result in the same output as shown in the q language by using the `-19!` function.
/// # Parameter
/// - `compressed`: Compressed serialized message.
/// - `encoding`:
///   - `0`: Big Endian
///   - `1`: Little Endian.
async fn decompress(compressed: Vec<u8>, encoding: u8) -> Vec<u8> {
    let mut n = 0;
    let mut r: usize;
    let mut f = 0_usize;

    // Header has already been removed.
    // Start index of decompressed bytes is 0
    let mut s = 0_usize;
    let mut p = s;
    let mut i = 0_usize;

    // Subtract 8 bytes from decoded bytes size as 8 bytes have already been taken as header
    let size = match encoding {
        0 => {
            i32::from_be_bytes(
                compressed[0..4]
                    .try_into()
                    .expect("slice does not have length 4"),
            ) - 8
        }
        _ => {
            i32::from_le_bytes(
                compressed[0..4]
                    .try_into()
                    .expect("slice does not have length 4"),
            ) - 8
        }
    };
    let mut decompressed: Vec<u8> = Vec::with_capacity(size as usize);
    // Assure that vector is filled with 0
    decompressed.resize(size as usize, 0_u8);

    // Start index of compressed body.
    // 8 bytes have already been removed as header
    let mut d = 4;
    let mut aa = [0_i32; 256];
    while s < decompressed.len() {
        if i == 0 {
            f = (0xff & compressed[d]) as usize;
            d += 1;
            i = 1;
        }
        if (f & i) != 0 {
            r = aa[(0xff & compressed[d]) as usize] as usize;
            d += 1;
            decompressed[s] = decompressed[r];
            s += 1;
            r += 1;
            decompressed[s] = decompressed[r];
            s += 1;
            r += 1;
            n = (0xff & compressed[d]) as usize;
            d += 1;
            for m in 0..n {
                decompressed[s + m] = decompressed[r + m];
            }
        } else {
            decompressed[s] = compressed[d];
            s += 1;
            d += 1;
        }
        while p < s - 1 {
            aa[((0xff & decompressed[p]) ^ (0xff & decompressed[p + 1])) as usize] = p as i32;
            p += 1;
        }
        if (f & i) != 0 {
            s += n;
            p = s;
        }
        i *= 2;
        if i == 256 {
            i = 0;
        }
    }
    decompressed
}