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
|
/*!The Treasure Box Library
*
* TBox is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* TBox 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with TBox;
* If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a>
*
* Copyright (C) 2009 - 2015, ruki All rights reserved.
*
* @author ruki
* @file stream.h
* @ingroup stream
*
*/
#ifndef TB_STREAM_H
#define TB_STREAM_H
/* //////////////////////////////////////////////////////////////////////////////////////
* includes
*/
#include "prefix.h"
#include "async_stream.h"
#include "static_stream.h"
#include "transfer.h"
#include "transfer_pool.h"
#include "filter.h"
/*!architecture
*
*
* <pre>
* wait - loop
* |
* | - data
* [aioo] |
* ----- stream -------- stream ----------------------- file
* | | |
* | | - sock
* | | |
* | | - http
* | | - charset
* | | |
* | - filter - |- chunked
* transfer --------- | |
* | |- cache
* | |
* | - zip
* |
* ----- stream
*
* - loop
* [asio] |
* aicp -| loop
* | |
* | - ... - data
* [aico] |
* -------------------- async_stream -------- async_stream ------------ file
* | | |
* | | - sock
* ---------------- | |
* | | - http
* ----- transfer | - charset
* | | | |
* | ---------------- - filter - |- chunked
* | | | |
* transfer_pool ----- transfer | | |- cache
* | | | |
* | | | - zip
* | | |
* ----- ... | |
* | static_stream - [data, size]
* |
* -------------------- async_stream
* url:
* data://base64
* file://path or unix path: e.g. /root/xxxx/file
* sock://host:port?tcp=
* sock://host:port?udp=
* socks://host:port
* http://host:port/path?arg0=&arg1=...
* https://host:port/path?arg0=&arg1=...
* </pre>
*
*/
/* //////////////////////////////////////////////////////////////////////////////////////
* extern
*/
__tb_extern_c_enter__
/* //////////////////////////////////////////////////////////////////////////////////////
* macros
*/
// the stream block maxn
#define TB_STREAM_BLOCK_MAXN (8192)
// the stream bitops
#ifdef TB_WORDS_BIGENDIAN
# define tb_stream_bread_u16_ne(stream, pvalue) tb_stream_bread_u16_be(stream, pvalue)
# define tb_stream_bread_s16_ne(stream, pvalue) tb_stream_bread_s16_be(stream, pvalue)
# define tb_stream_bread_u24_ne(stream, pvalue) tb_stream_bread_u24_be(stream, pvalue)
# define tb_stream_bread_s24_ne(stream, pvalue) tb_stream_bread_s24_be(stream, pvalue)
# define tb_stream_bread_u32_ne(stream, pvalue) tb_stream_bread_u32_be(stream, pvalue)
# define tb_stream_bread_s32_ne(stream, pvalue) tb_stream_bread_s32_be(stream, pvalue)
# define tb_stream_bread_u64_ne(stream, pvalue) tb_stream_bread_u64_be(stream, pvalue)
# define tb_stream_bread_s64_ne(stream, pvalue) tb_stream_bread_s64_be(stream, pvalue)
# define tb_stream_bwrit_u16_ne(stream, value) tb_stream_bwrit_u16_be(stream, value)
# define tb_stream_bwrit_s16_ne(stream, value) tb_stream_bwrit_s16_be(stream, value)
# define tb_stream_bwrit_u24_ne(stream, value) tb_stream_bwrit_u24_be(stream, value)
# define tb_stream_bwrit_s24_ne(stream, value) tb_stream_bwrit_s24_be(stream, value)
# define tb_stream_bwrit_u32_ne(stream, value) tb_stream_bwrit_u32_be(stream, value)
# define tb_stream_bwrit_s32_ne(stream, value) tb_stream_bwrit_s32_be(stream, value)
# define tb_stream_bwrit_u64_ne(stream, value) tb_stream_bwrit_u64_be(stream, value)
# define tb_stream_bwrit_s64_ne(stream, value) tb_stream_bwrit_s64_be(stream, value)
#else
# define tb_stream_bread_u16_ne(stream, pvalue) tb_stream_bread_u16_le(stream, pvalue)
# define tb_stream_bread_s16_ne(stream, pvalue) tb_stream_bread_s16_le(stream, pvalue)
# define tb_stream_bread_u24_ne(stream, pvalue) tb_stream_bread_u24_le(stream, pvalue)
# define tb_stream_bread_s24_ne(stream, pvalue) tb_stream_bread_s24_le(stream, pvalue)
# define tb_stream_bread_u32_ne(stream, pvalue) tb_stream_bread_u32_le(stream, pvalue)
# define tb_stream_bread_s32_ne(stream, pvalue) tb_stream_bread_s32_le(stream, pvalue)
# define tb_stream_bread_u64_ne(stream, pvalue) tb_stream_bread_u64_le(stream, pvalue)
# define tb_stream_bread_s64_ne(stream, pvalue) tb_stream_bread_s64_le(stream, pvalue)
# define tb_stream_bwrit_u16_ne(stream, value) tb_stream_bwrit_u16_le(stream, value)
# define tb_stream_bwrit_s16_ne(stream, value) tb_stream_bwrit_s16_le(stream, value)
# define tb_stream_bwrit_u24_ne(stream, value) tb_stream_bwrit_u24_le(stream, value)
# define tb_stream_bwrit_s24_ne(stream, value) tb_stream_bwrit_s24_le(stream, value)
# define tb_stream_bwrit_u32_ne(stream, value) tb_stream_bwrit_u32_le(stream, value)
# define tb_stream_bwrit_s32_ne(stream, value) tb_stream_bwrit_s32_le(stream, value)
# define tb_stream_bwrit_u64_ne(stream, value) tb_stream_bwrit_u64_le(stream, value)
# define tb_stream_bwrit_s64_ne(stream, value) tb_stream_bwrit_s64_le(stream, value)
#endif
#ifdef TB_CONFIG_TYPE_HAVE_FLOAT
# ifdef TB_FLOAT_BIGENDIAN
# define tb_stream_bread_double_nbe(stream, pvalue) tb_stream_bread_double_bbe(stream, pvalue)
# define tb_stream_bread_double_nle(stream, pvalue) tb_stream_bread_double_ble(stream, pvalue)
# define tb_stream_bwrit_double_nbe(stream, value) tb_stream_bwrit_double_bbe(stream, value)
# define tb_stream_bwrit_double_nle(stream, value) tb_stream_bwrit_double_ble(stream, value)
# else
# define tb_stream_bread_double_nbe(stream, pvalue) tb_stream_bread_double_lbe(stream, pvalue)
# define tb_stream_bread_double_nle(stream, pvalue) tb_stream_bread_double_lle(stream, pvalue)
# define tb_stream_bwrit_double_nbe(stream, value) tb_stream_bwrit_double_lbe(stream, value)
# define tb_stream_bwrit_double_nle(stream, value) tb_stream_bwrit_double_lle(stream, value)
# endif
# ifdef TB_WORDS_BIGENDIAN
# define tb_stream_bread_float_ne(stream, pvalue) tb_stream_bread_float_be(stream, pvalue)
# define tb_stream_bwrit_float_ne(stream, value) tb_stream_bwrit_float_be(stream, value)
# define tb_stream_bread_double_nne(stream, pvalue) tb_stream_bread_double_nbe(stream, pvalue)
# define tb_stream_bread_double_bne(stream, pvalue) tb_stream_bread_double_bbe(stream, pvalue)
# define tb_stream_bread_double_lne(stream, pvalue) tb_stream_bread_double_lbe(stream, pvalue)
# define tb_stream_bwrit_double_nne(stream, value) tb_stream_bwrit_double_nbe(stream, value)
# define tb_stream_bwrit_double_bne(stream, value) tb_stream_bwrit_double_bbe(stream, value)
# define tb_stream_bwrit_double_lne(stream, value) tb_stream_bwrit_double_lbe(stream, value)
# else
# define tb_stream_bread_float_ne(stream, pvalue) tb_stream_bread_float_le(stream, pvalue)
# define tb_stream_bwrit_float_ne(stream, value) tb_stream_bwrit_float_le(stream, value)
# define tb_stream_bread_double_nne(stream, pvalue) tb_stream_bread_double_nle(stream, pvalue)
# define tb_stream_bread_double_bne(stream, pvalue) tb_stream_bread_double_ble(stream, pvalue)
# define tb_stream_bread_double_lne(stream, pvalue) tb_stream_bread_double_lle(stream, pvalue)
# define tb_stream_bwrit_double_nne(stream, value) tb_stream_bwrit_double_nle(stream, value)
# define tb_stream_bwrit_double_bne(stream, value) tb_stream_bwrit_double_ble(stream, value)
# define tb_stream_bwrit_double_lne(stream, value) tb_stream_bwrit_double_lle(stream, value)
# endif
#endif
/* //////////////////////////////////////////////////////////////////////////////////////
* interfaces
*/
/*! init stream
*
* @param type the stream type
* @param type_size the stream type size
* @param cache the cache size
* @param open the stream impl func: open
* @param clos the stream impl func: clos
* @param exit the stream impl func: exit, optional
* @param ctrl the stream impl func: ctrl
* @param wait the stream impl func: wait
* @param read the stream impl func: read
* @param writ the stream impl func: writ
* @param seek the stream impl func: seek, optional
* @param sync the stream impl func: sync, optional
* @param kill the stream impl func: kill, optional
*
* @return the stream
*
* @code
// the custom xxxx stream type
typedef struct __tb_stream_xxxx_impl_t
{
// the xxxx data
tb_handle_t xxxx;
}tb_stream_xxxx_impl_t;
static tb_bool_t tb_stream_xxxx_impl_open(tb_stream_ref_t stream)
{
// check
tb_stream_xxxx_impl_t* impl = (tb_stream_xxxx_impl_t*)stream;
tb_assert_and_check_return_val(impl, tb_false);
// ok
return tb_true;
}
static tb_bool_t tb_stream_xxxx_impl_clos(tb_stream_ref_t stream)
{
// check
tb_stream_xxxx_impl_t* impl = (tb_stream_xxxx_impl_t*)stream;
tb_assert_and_check_return_val(impl, tb_false);
// ok
return tb_true;
}
// define other xxxx stream func
// ...
// init stream
tb_stream_ref_t stream = tb_stream_init( TB_STREAM_TYPE_XXXX
, sizeof(tb_stream_xxxx_impl_t)
, 0
, tb_stream_xxxx_impl_open
, tb_stream_xxxx_impl_clos
, tb_stream_xxxx_impl_exit
, tb_stream_xxxx_impl_ctrl
, tb_stream_xxxx_impl_wait
, tb_stream_xxxx_impl_read
, tb_stream_xxxx_impl_writ
, tb_stream_xxxx_impl_seek
, tb_stream_xxxx_impl_sync
, tb_stream_xxxx_impl_kill);
// using stream
// ...
* @endcode
*/
tb_stream_ref_t tb_stream_init( tb_size_t type
, tb_size_t type_size
, tb_size_t cache
, tb_bool_t (*open)(tb_stream_ref_t stream)
, tb_bool_t (*clos)(tb_stream_ref_t stream)
, tb_void_t (*exit)(tb_stream_ref_t stream)
, tb_bool_t (*ctrl)(tb_stream_ref_t stream, tb_size_t ctrl, tb_va_list_t args)
, tb_long_t (*wait)(tb_stream_ref_t stream, tb_size_t wait, tb_long_t timeout)
, tb_long_t (*read)(tb_stream_ref_t stream, tb_byte_t* data, tb_size_t size)
, tb_long_t (*writ)(tb_stream_ref_t stream, tb_byte_t const* data, tb_size_t size)
, tb_bool_t (*seek)(tb_stream_ref_t stream, tb_hize_t offset)
, tb_bool_t (*sync)(tb_stream_ref_t stream, tb_bool_t bclosing)
, tb_void_t (*kill)(tb_stream_ref_t stream));
/*! init data stream
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_data(tb_noarg_t);
/*! init file stream
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_file(tb_noarg_t);
/*! init sock stream
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_sock(tb_noarg_t);
/*! init http stream
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_http(tb_noarg_t);
/*! init filter stream
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_filter(tb_noarg_t);
/*! exit stream
*
* @param stream the stream
*/
tb_void_t tb_stream_exit(tb_stream_ref_t stream);
/*! init stream from url
*
* @code
*
// init stream
tb_stream_ref_t stream = tb_stream_init_from_url("http://www.xxx.com/file");
if (stream)
{
// open stream
if (tb_stream_open(stream))
{
// ...
}
// exit stream
tb_stream_exit(stream);
}
*
* @endcode
*
* @param url the url
* - data://base64
* - file://path or unix path: e.g. /root/xxxx/file
* - sock://host:port?tcp=
* - sock://host:port?udp=
* - socks://host:port
* - http://host:port/path?arg0=&arg1=...
* - https://host:port/path?arg0=&arg1=...
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_from_url(tb_char_t const* url);
/*! init stream from data
*
* @param data the data
* @param size the size
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_from_data(tb_byte_t const* data, tb_size_t size);
/*! init stream from file
*
* @param path the file path
* @param mode the file mode, using the default ro mode if zero
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_from_file(tb_char_t const* path, tb_size_t mode);
/*! init stream from sock
*
* @param host the host
* @param port the port
* @param type the socket type, tcp or udp
* @param bssl enable ssl?
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_from_sock(tb_char_t const* host, tb_uint16_t port, tb_size_t type, tb_bool_t bssl);
/*! init stream from http or https
*
* @param host the host
* @param port the port
* @param path the path
* @param bssl enable ssl?
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_from_http(tb_char_t const* host, tb_uint16_t port, tb_char_t const* path, tb_bool_t bssl);
/*! init filter stream from null
*
* @param stream the stream
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_filter_from_null(tb_stream_ref_t stream);
/*! init filter stream from zip
*
* @param stream the stream
* @param algo the zip algorithm
* @param action the zip action
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_filter_from_zip(tb_stream_ref_t stream, tb_size_t algo, tb_size_t action);
/*! init filter stream from cache
*
* @param stream the stream
* @param size the initial cache size, using the default size if be zero
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_filter_from_cache(tb_stream_ref_t stream, tb_size_t size);
/*! init filter stream from charset
*
* @param stream the stream
* @param fr the from charset
* @param to the to charset
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_filter_from_charset(tb_stream_ref_t stream, tb_size_t fr, tb_size_t to);
/*! init filter stream from chunked
*
* @param stream the stream
* @param dechunked decode the chunked data?
*
* @return the stream
*/
tb_stream_ref_t tb_stream_init_filter_from_chunked(tb_stream_ref_t stream, tb_bool_t dechunked);
/*! wait stream
*
* blocking wait the single event object, so need not aiop
* return the event type if ok, otherwise return 0 for timeout
*
* @param stream the stream
* @param wait the wait type
* @param timeout the timeout value, return immediately if 0, infinity if -1
*
* @return the event type, return 0 if timeout, return -1 if error
*/
tb_long_t tb_stream_wait(tb_stream_ref_t stream, tb_size_t wait, tb_long_t timeout);
/*! the state
*
* @param stream the stream
*
* @return the state
*/
tb_size_t tb_stream_state(tb_stream_ref_t stream);
/*! set the state
*
* @param stream the stream
* @param state the state
*/
tb_void_t tb_stream_state_set(tb_stream_ref_t stream, tb_size_t state);
/*! the stream type
*
* @param stream the stream
*
* @return the stream type
*/
tb_size_t tb_stream_type(tb_stream_ref_t stream);
/*! the stream size and not seeking it
*
* @param stream the stream
*
* @return the stream size, no size: -1, empty or error: 0
*/
tb_hong_t tb_stream_size(tb_stream_ref_t stream);
/*! the stream left size and not seeking it
*
* @param stream the stream
*
* @return the stream left size, no size: infinity, empty or end: 0
*/
tb_hize_t tb_stream_left(tb_stream_ref_t stream);
/*! the stream is end?
*
* @param stream the stream
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_beof(tb_stream_ref_t stream);
/*! the stream offset
*
* the offset is read + writ and using seek for modifying it if size != -1, .e.g: data, file, ..
* the offset is calculated from the last read/writ and not seeking it if size == -1, .e.g: sock, filter, ..
*
* @param stream the stream
*
* @return the stream offset
*/
tb_hize_t tb_stream_offset(tb_stream_ref_t stream);
/*! is opened?
*
* @param stream the stream
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_is_opened(tb_stream_ref_t stream);
/*! is closed?
*
* @param stream the stream
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_is_closed(tb_stream_ref_t stream);
/*! is killed?
*
* @param stream the stream
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_is_killed(tb_stream_ref_t stream);
/*! the stream url
*
* @param stream the stream
*
* @return the stream url
*/
tb_url_ref_t tb_stream_url(tb_stream_ref_t stream);
/*! the stream timeout
*
* @param stream the stream
*
* @return the stream timeout
*/
tb_long_t tb_stream_timeout(tb_stream_ref_t stream);
/*! ctrl stream
*
* @param stream the stream
* @param ctrl the ctrl code
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_ctrl(tb_stream_ref_t stream, tb_size_t ctrl, ...);
/*! ctrl stream with arguments
*
* @param stream the stream
* @param ctrl the ctrl code
* @param args the ctrl args
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_ctrl_with_args(tb_stream_ref_t stream, tb_size_t ctrl, tb_va_list_t args);
/*! kill stream
*
* @param stream the stream
*/
tb_void_t tb_stream_kill(tb_stream_ref_t stream);
/*! open stream
*
* @param stream the stream
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_open(tb_stream_ref_t stream);
/*! close stream
*
* @param stream the stream
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_clos(tb_stream_ref_t stream);
/*! read data, non-blocking
*
* @code
tb_long_t read = 0;
tb_byte_t data[TB_STREAM_BLOCK_MAXN];
while (!tb_stream_beof(stream))
{
// read data
tb_long_t real = tb_stream_read(stream, data, sizeof(data));
// ok?
if (real > 0) read += real;
// no data? continue it
else if (!real)
{
// wait
real = tb_stream_wait(stream, TB_STREAM_WAIT_READ, tb_stream_timeout(stream));
tb_check_break(real > 0);
// has read?
tb_assert_and_check_break(real & TB_STREAM_WAIT_READ);
}
// failed or end?
else break;
}
* @endcode
*
* @param stream the stream
* @param data the data
* @param size the size
*
* @return the real size or -1
*/
tb_long_t tb_stream_read(tb_stream_ref_t stream, tb_byte_t* data, tb_size_t size);
/*! writ data, non-blocking
*
* @param stream the stream
* @param data the data
* @param size the size
*
* @return the real size or -1
*/
tb_long_t tb_stream_writ(tb_stream_ref_t stream, tb_byte_t const* data, tb_size_t size);
/*! block read
*
* @code
*
// get stream size
//
// @note
// size may be < -1 for the http(chunked)/filter/.. stream
// we need call tb_stream_read for reading data if size < 0
//
tb_hong_t size = tb_stream_size(stream);
tb_assert(size > 0);
// make data
tb_byte_t* data = tb_malloc((tb_size_t)size);
if (data)
{
// read data
tb_bool_t ok = tb_stream_bread(stream, data, size);
// exit data
tb_free(data)
}
*
* @endcode
*
* @param stream the stream
* @param data the data
* @param size the size
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread(tb_stream_ref_t stream, tb_byte_t* data, tb_size_t size);
/*! block writ
*
* @param stream the stream
* @param data the data
* @param size the size
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit(tb_stream_ref_t stream, tb_byte_t const* data, tb_size_t size);
/*! sync stream
*
* @param stream the stream
* @param bclosing is closing?
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_sync(tb_stream_ref_t stream, tb_bool_t bclosing);
/*! need stream
*
* @code
// need 16-bytes data
tb_byte_t* data = tb_null;
if (tb_stream_need(stream, &data, 16))
{
// ..
}
* @endcode
*
* @param stream the stream
* @param data the data
* @param size the size
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_need(tb_stream_ref_t stream, tb_byte_t** data, tb_size_t size);
/*! seek stream
*
* @param stream the stream
* @param offset the offset
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_seek(tb_stream_ref_t stream, tb_hize_t offset);
/*! skip stream
*
* @param stream the stream
* @param size the size
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_skip(tb_stream_ref_t stream, tb_hize_t size);
/*! block writ format data
*
* @param stream the stream
* @param fmt the format
*
* @return the real size, failed: -1
*/
tb_long_t tb_stream_printf(tb_stream_ref_t stream, tb_char_t const* fmt, ...);
/*! block read line
*
* @code
*
// read line
tb_long_t size = 0;
tb_char_t line[8192];
while ((size = tb_stream_bread_line(stream, line, sizeof(line))) >= 0)
{
// trace
tb_trace_i("line: %s", line);
}
*
* @endcode
*
* @param stream the stream
* @param data the data
* @param size the size
*
* @return the real size
*/
tb_long_t tb_stream_bread_line(tb_stream_ref_t stream, tb_char_t* data, tb_size_t size);
/*! block writ line
*
* @param stream the stream
* @param data the data
* @param size the size
*
* @return the real size
*/
tb_long_t tb_stream_bwrit_line(tb_stream_ref_t stream, tb_char_t* data, tb_size_t size);
/*! block read all data
*
* @code
*
// read all data
tb_size_t size = 0;
tb_byte_t* data = tb_stream_bread_all(stream, tb_false, &size);
if (data)
{
// exit data
tb_free(data);
}
// read all cstr and append '\0'
tb_size_t size = 0;
tb_char_t* cstr = (tb_char_t*)tb_stream_bread_all(stream, tb_true, &size);
if (cstr)
{
// exit cstr
tb_free(cstr);
}
* @endcode
*
* @param stream the stream
* @param is_cstr will append '\0' if be c-string
* @param psize the size pointer, optional
*
* @return the data
*/
tb_byte_t* tb_stream_bread_all(tb_stream_ref_t stream, tb_bool_t is_cstr, tb_size_t* psize);
/*! block read uint8 integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u8(tb_stream_ref_t stream, tb_uint8_t* pvalue);
/*! block read sint8 integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s8(tb_stream_ref_t stream, tb_sint8_t* pvalue);
/*! block read uint16-le integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u16_le(tb_stream_ref_t stream, tb_uint16_t* pvalue);
/*! block read sint16-le integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s16_le(tb_stream_ref_t stream, tb_sint16_t* pvalue);
/*! block read uint24-le integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u24_le(tb_stream_ref_t stream, tb_uint32_t* pvalue);
/*! block read sint24-le integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s24_le(tb_stream_ref_t stream, tb_sint32_t* pvalue);
/*! block read uint32-le integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u32_le(tb_stream_ref_t stream, tb_uint32_t* pvalue);
/*! block read sint32-le integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s32_le(tb_stream_ref_t stream, tb_sint32_t* pvalue);
/*! block read uint64-le integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u64_le(tb_stream_ref_t stream, tb_uint64_t* pvalue);
/*! block read sint64-le integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s64_le(tb_stream_ref_t stream, tb_sint64_t* pvalue);
/*! block read uint16-be integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u16_be(tb_stream_ref_t stream, tb_uint16_t* pvalue);
/*! block read sint16-be integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s16_be(tb_stream_ref_t stream, tb_sint16_t* pvalue);
/*! block read uint24-be integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u24_be(tb_stream_ref_t stream, tb_uint32_t* pvalue);
/*! block read sint24-be integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s24_be(tb_stream_ref_t stream, tb_sint32_t* pvalue);
/*! block read uint32-be integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u32_be(tb_stream_ref_t stream, tb_uint32_t* pvalue);
/*! block read sint32-be integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s32_be(tb_stream_ref_t stream, tb_sint32_t* pvalue);
/*! block read uint64-be integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_u64_be(tb_stream_ref_t stream, tb_uint64_t* pvalue);
/*! block read sint64-be integer
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_s64_be(tb_stream_ref_t stream, tb_sint64_t* pvalue);
/*! block writ uint8 integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u8(tb_stream_ref_t stream, tb_uint8_t value);
/*! block writ sint8 integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s8(tb_stream_ref_t stream, tb_sint8_t value);
/*! block writ uint16-le integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u16_le(tb_stream_ref_t stream, tb_uint16_t value);
/*! block writ sint16-le integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s16_le(tb_stream_ref_t stream, tb_sint16_t value);
/*! block writ uint24-le integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u24_le(tb_stream_ref_t stream, tb_uint32_t value);
/*! block writ sint24-le integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s24_le(tb_stream_ref_t stream, tb_sint32_t value);
/*! block writ uint32-le integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u32_le(tb_stream_ref_t stream, tb_uint32_t value);
/*! block writ sint32-le integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s32_le(tb_stream_ref_t stream, tb_sint32_t value);
/*! block writ uint64-le integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u64_le(tb_stream_ref_t stream, tb_uint64_t value);
/*! block writ sint64-le integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s64_le(tb_stream_ref_t stream, tb_sint64_t value);
/*! block writ uint16-be integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u16_be(tb_stream_ref_t stream, tb_uint16_t value);
/*! block writ sint16-be integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s16_be(tb_stream_ref_t stream, tb_sint16_t value);
/*! block writ uint24-be integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u24_be(tb_stream_ref_t stream, tb_uint32_t value);
/*! block writ sint24-be integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s24_be(tb_stream_ref_t stream, tb_sint32_t value);
/*! block writ uint32-be integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u32_be(tb_stream_ref_t stream, tb_uint32_t value);
/*! block writ sint32-be integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s32_be(tb_stream_ref_t stream, tb_sint32_t value);
/*! block writ uint64-be integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_u64_be(tb_stream_ref_t stream, tb_uint64_t value);
/*! block writ sint64-be integer
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_s64_be(tb_stream_ref_t stream, tb_sint64_t value);
#ifdef TB_CONFIG_TYPE_HAVE_FLOAT
/*! read float-le number
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_float_le(tb_stream_ref_t stream, tb_float_t* pvalue);
/*! read float-be number
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_float_be(tb_stream_ref_t stream, tb_float_t* pvalue);
/*! read double-ble number
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_double_ble(tb_stream_ref_t stream, tb_double_t* pvalue);
/*! read double-bbe number
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_double_bbe(tb_stream_ref_t stream, tb_double_t* pvalue);
/*! read double-lle number
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_double_lle(tb_stream_ref_t stream, tb_double_t* pvalue);
/*! read double-lbe number
*
* @param stream the stream
* @param pvalue the value pointer
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bread_double_lbe(tb_stream_ref_t stream, tb_double_t* pvalue);
/*! writ float-le number
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_float_le(tb_stream_ref_t stream, tb_float_t value);
/*! writ float-be number
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_float_be(tb_stream_ref_t stream, tb_float_t value);
/*! writ double-ble number
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_double_ble(tb_stream_ref_t stream, tb_double_t value);
/*! writ double-bbe number
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_double_bbe(tb_stream_ref_t stream, tb_double_t value);
/*! writ double-lle number
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_double_lle(tb_stream_ref_t stream, tb_double_t value);
/*! writ double-lbe number
*
* @param stream the stream
* @param value the value
*
* @return tb_true or tb_false
*/
tb_bool_t tb_stream_bwrit_double_lbe(tb_stream_ref_t stream, tb_double_t value);
#endif
/* //////////////////////////////////////////////////////////////////////////////////////
* extern
*/
__tb_extern_c_leave__
#endif
|