-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio.h
1496 lines (1360 loc) · 55.8 KB
/
io.h
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
/**
* \file io.h
*
* This file defines serialization and deserialization functions `read` and
* `write`, as well as the `print` function for all fundamental types and core
* data structures.
*
* The file also contains the definition and implementation of the
* `core::memory_stream` class, which may be used to read/write to an in-memory
* buffer.
*
* Scribes
* -------
*
* The `read`, `write`, and `print` functions in this library follow a very
* regular argument structure: The first argument is the object to
* read/write/print. The second argument is the stream to read from/write
* to/print to. Most functions also require a third (optional) argument called
* the `scribe`, which controls how the subobjects are read/written/printed.
* The scribe is typically passed to the read/write/print functions when
* operating on subobjects of the given object.
*
* Calling read/write/print with core::default_scribe will call the same
* function without the third argument. This largely corresponds to the
* "default" behavior of those functions.
*
* For example, `write(const core::array<T>& a, Stream& out, Writer&&... writer)`
* will call the function `write(a[i], out, writer)` for every element `a[i]`
* in `a`. This enables users to define their own scribes, and define new ways
* to read/write/print objects without having to re-implement the
* read/write/print functions for container structures such as core::array. The
* following example demonstrates how the behavior of the `print` function for
* an array of integers can be altered using a custom scribe.
*
* ```{.cpp}
* #include <core/io.h>
* using namespace core;
*
* struct my_string_scribe {
* const char* strings[3];
* };
*
* template<typename Stream>
* bool print(int i, Stream& out, const my_string_scribe& printer) {
* return print(printer.strings[i], out);
* }
*
* int main() {
* array<int> a = array<int>(8);
* a.add(1); a.add(2); a.add(0);
*
* print(a, stdout); print(' ', stdout);
*
* default_scribe def;
* print(a, stdout, def); print(' ', stdout);
*
* my_string_scribe printer;
* printer.strings[0] = "vici";
* printer.strings[1] = "veni";
* printer.strings[2] = "vidi";
*
* print(a, stdout, printer);
* }
* ```
*
* This example has expected output `[1, 2, 0] [1, 2, 0] [veni, vidi, vici]`.
*
* <!-- Created on: Aug 29, 2014
* Author: asaparov -->
*/
#ifndef IO_H_
#define IO_H_
#include "array.h"
#include "map.h"
#include <stdarg.h>
#include <cstdint>
#include <errno.h>
#if defined(__APPLE__)
#include <cwchar>
inline size_t mbrtoc32(char32_t* wc, const char* s, size_t n, mbstate_t* ps) {
wchar_t c;
size_t result = mbrtowc(&c, s, n, ps);
if (result < (size_t) -2 && wc != nullptr)
*wc = c;
return result;
}
#else /* __APPLE__ */
#include <cuchar>
#endif /* __APPLE__ */
namespace core {
/**
* Reads `sizeof(T)` bytes from `in` and writes them to the memory referenced
* by `value`. This function does not perform endianness transformations.
* \param in the stream given by a [FILE](https://en.cppreference.com/w/c/io) pointer.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool read(T& value, FILE* in) {
return (fread(&value, sizeof(T), 1, in) == 1);
}
/**
* Reads `length` elements from `in` and writes them to the native array
* `values`. This function does not perform endianness transformations.
* \param in the stream given by a [FILE](https://en.cppreference.com/w/c/io) pointer.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename SizeType, typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool read(T* values, FILE* in, SizeType length) {
return (fread(values, sizeof(T), length, in) == length);
}
/**
* Writes `sizeof(T)` bytes to `out` from the memory referenced by `value`.
* This function does not perform endianness transformations.
* \param out the stream given by a [FILE](https://en.cppreference.com/w/c/io) pointer.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool write(const T& value, FILE* out) {
return (fwrite(&value, sizeof(T), 1, out) == 1);
}
/**
* Writes `length` elements to `out` from the native array `values`. This
* function does not perform endianness transformations.
* \param out the stream given by a [FILE](https://en.cppreference.com/w/c/io) pointer.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename SizeType, typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool write(const T* values, FILE* out, SizeType length) {
return (fwrite(values, sizeof(T), length, out) == length);
}
/**
* Prints the character `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const char& value, FILE* out) {
return (fputc(value, out) != EOF);
}
/**
* Prints the int `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const int& value, FILE* out) {
return (fprintf(out, "%d", value) > 0);
}
/**
* Prints the long `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const long& value, FILE* out) {
return (fprintf(out, "%ld", value) > 0);
}
/**
* Prints the long long `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const long long& value, FILE* out) {
return (fprintf(out, "%lld", value) > 0);
}
/**
* Prints the unsigned int `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const unsigned int& value, FILE* out) {
return (fprintf(out, "%u", value) > 0);
}
/**
* Prints the unsigned long `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const unsigned long& value, FILE* out) {
return (fprintf(out, "%lu", value) > 0);
}
/**
* Prints the unsigned long long `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const unsigned long long& value, FILE* out) {
return (fprintf(out, "%llu", value) > 0);
}
/**
* Prints the float `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const float& value, FILE* out) {
return (fprintf(out, "%f", (double) value) > 0);
}
/**
* Prints the double `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const double& value, FILE* out) {
return (fprintf(out, "%lf", value) > 0);
}
/**
* Prints the float `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`
* with the given `precision`.
*/
inline bool print(const float& value, FILE* out, unsigned int precision) {
return (fprintf(out, "%.*f", precision, (double) value) > 0);
}
/**
* Prints the double `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`
* with the given `precision`.
*/
inline bool print(const double& value, FILE* out, unsigned int precision) {
return (fprintf(out, "%.*lf", precision, value) > 0);
}
/**
* Prints the null-terminated C string `value` to the stream given by the
* [FILE](https://en.cppreference.com/w/c/io) pointer `out`.
*/
inline bool print(const char* values, FILE* out) {
return (fprintf(out, "%s", values) >= 0);
}
namespace detail {
template<typename A, typename C> static auto test_readable(int32_t) ->
decltype(bool(read(std::declval<A&>(), std::declval<C&>())), std::true_type{});
template<typename A, typename C> static auto test_readable(int64_t) -> std::false_type;
template<typename A, typename C> static auto test_writeable(int32_t) ->
decltype(bool(write(std::declval<const A&>(), std::declval<C&>())), std::true_type{});
template<typename A, typename C> static auto test_writeable(int64_t) -> std::false_type;
template<typename A, typename C> static auto test_printable(int32_t) ->
decltype(bool(print(std::declval<const A&>(), std::declval<C&>())), std::true_type{});
template<typename A, typename C> static auto test_printable(int64_t) -> std::false_type;
}
/**
* This type trait is [true_type](https://en.cppreference.com/w/cpp/types/integral_constant)
* if and only if the function `bool read(integral&, T&)` is defined where
* `integral` is any integral type.
*/
template<typename T> struct is_readable : and_type<
decltype(core::detail::test_readable<bool, T>(0)),
decltype(core::detail::test_readable<char, T>(0)),
decltype(core::detail::test_readable<char16_t, T>(0)),
decltype(core::detail::test_readable<char32_t, T>(0)),
decltype(core::detail::test_readable<wchar_t, T>(0)),
decltype(core::detail::test_readable<short, T>(0)),
decltype(core::detail::test_readable<int, T>(0)),
decltype(core::detail::test_readable<long, T>(0)),
decltype(core::detail::test_readable<long long, T>(0)),
decltype(core::detail::test_readable<unsigned char, T>(0)),
decltype(core::detail::test_readable<unsigned short, T>(0)),
decltype(core::detail::test_readable<unsigned int, T>(0)),
decltype(core::detail::test_readable<unsigned long, T>(0)),
decltype(core::detail::test_readable<unsigned long long, T>(0))>::type {};
/**
* This type trait is [true_type](https://en.cppreference.com/w/cpp/types/integral_constant)
* if and only if the function `bool fwrite(const integral&, T&)` is defined where
* `integral` is any integral type.
*/
template<typename T> struct is_writeable : and_type<
decltype(core::detail::test_writeable<bool, T>(0)),
decltype(core::detail::test_writeable<char, T>(0)),
decltype(core::detail::test_writeable<char16_t, T>(0)),
decltype(core::detail::test_writeable<char32_t, T>(0)),
decltype(core::detail::test_writeable<wchar_t, T>(0)),
decltype(core::detail::test_writeable<short, T>(0)),
decltype(core::detail::test_writeable<int, T>(0)),
decltype(core::detail::test_writeable<long, T>(0)),
decltype(core::detail::test_writeable<long long, T>(0)),
decltype(core::detail::test_writeable<unsigned char, T>(0)),
decltype(core::detail::test_writeable<unsigned short, T>(0)),
decltype(core::detail::test_writeable<unsigned int, T>(0)),
decltype(core::detail::test_writeable<unsigned long, T>(0)),
decltype(core::detail::test_writeable<unsigned long long, T>(0))>::type {};
/**
* This type trait is [true_type](https://en.cppreference.com/w/cpp/types/integral_constant)
* if and only if the function `bool print(value, T&)` is defined.
*/
template<typename T> struct is_printable : and_type<
decltype(core::detail::test_printable<char, T>(0)),
decltype(core::detail::test_printable<int, T>(0)),
decltype(core::detail::test_printable<unsigned int, T>(0)),
decltype(core::detail::test_printable<unsigned long, T>(0)),
decltype(core::detail::test_printable<unsigned long long, T>(0)),
decltype(core::detail::test_printable<float, T>(0)),
decltype(core::detail::test_printable<double, T>(0))>::type {};
/**
* Represents a stream to read/write from an in-memory buffer.
*/
struct memory_stream {
/**
* The size of the stream.
*/
unsigned int length;
/**
* The current position of the stream in the buffer.
*/
unsigned int position;
/**
* The underlying buffer.
*/
char* buffer;
/**
* The default constructor does not initialize any fields.
*/
memory_stream() { }
/**
* Initializes the stream with memory_stream::length given by
* `initial_capacity` and memory_stream::position set to `0`.
* memory_stream::buffer is allocated but not initialized to any value.
*/
memory_stream(unsigned int initial_capacity) : length(initial_capacity), position(0) {
buffer = (char*) malloc(sizeof(char) * length);
if (buffer == NULL) {
fprintf(stderr, "memory_stream ERROR: Unable to initialize buffer.\n");
exit(EXIT_FAILURE);
}
}
/**
* Initializes the stream with the memory_stream::buffer given by `buf`,
* memory_stream::length given by `length`, and memory_stream::position set
* to `0`.
*/
memory_stream(const char* buf, unsigned int length) : length(length), position(0) {
buffer = (char*) malloc(sizeof(char) * length);
if (buffer == NULL) {
fprintf(stderr, "memory_stream ERROR: Unable to initialize buffer.\n");
exit(EXIT_FAILURE);
}
memcpy(buffer, buf, sizeof(char) * length);
}
~memory_stream() {
free(buffer);
}
/**
* Reads a number of bytes given by `bytes` from the memory_stream and
* writes them to `dst`. This function assumes `dst` has sufficient capacity.
*/
inline bool read(void* dst, unsigned int bytes) {
if (position + bytes >= length)
return false;
memcpy(dst, buffer + position, bytes);
position += bytes;
return true;
}
/**
* Checks whether the stream has sufficient size for an additional number
* of bytes given by `bytes` at its current memory_stream::position. If
* not, this function attempts to expand the buffer to a new size computed
* as `memory_stream::position + bytes`.
*/
inline bool ensure_capacity(unsigned int bytes) {
if (position + bytes <= length)
return true;
unsigned int new_length = length;
if (!core::expand(buffer, new_length, position + bytes))
return false;
length = new_length;
return true;
}
/**
* Writes a number of bytes given by `bytes` from the given native array
* `src` to the current position in this stream. memory_stream::ensure_capacity
* is called to ensure the underlying buffer has sufficient size.
*/
inline bool write(const void* src, unsigned int bytes) {
if (!ensure_capacity(bytes))
return false;
memcpy(buffer + position, src, bytes);
position += bytes;
return true;
}
};
/**
* Reads `sizeof(T)` bytes from `in` and writes them to the memory referenced
* by `value`. This function does not perform endianness transformations.
* \param in a memory_stream.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool read(T& value, memory_stream& in) {
return in.read(&value, sizeof(T));
}
/**
* Reads `length` elements from `in` and writes them to the native array
* `values`. This function does not perform endianness transformations.
* \param in a memory_stream.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool read(T* values, memory_stream& in, unsigned int length) {
return in.read(values, (unsigned int) sizeof(T) * length);
}
/**
* Writes `sizeof(T)` bytes to `out` from the memory referenced by `value`.
* This function does not perform endianness transformations.
* \param out a memory_stream.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool write(const T& value, memory_stream& out) {
return out.write(&value, sizeof(T));
}
/**
* Writes `length` elements to `out` from the native array `values`. This
* function does not perform endianness transformations.
* \param out a memory_stream.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool write(const T* values, memory_stream& out, unsigned int length) {
return out.write(values, (unsigned int) sizeof(T) * length);
}
/**
* Reads an array of `n` elements, each with a size of `size` bytes, from the
* memory_stream `in`, to the memory address referenced by `dst`.
* \see This function mirrors the equivalent [fread](http://en.cppreference.com/w/cpp/io/c/fread)
* for [FILE](https://en.cppreference.com/w/c/io) pointer streams.
* \returns the number of elements read.
*/
inline size_t fread(void* dst, size_t size, size_t count, memory_stream& in) {
size_t num_bytes = size * count;
if (in.position + num_bytes > in.length) {
count = (in.length - in.position) / size;
num_bytes = size * count;
}
memcpy(dst, in.buffer + in.position, num_bytes);
in.position += num_bytes;
return count;
}
/**
* Writes the array of `n` elements, each with a size of `size` bytes, from the
* memory address referenced by `src` to the memory_stream `out`.
* \see This function mirrors the equivalent [fwrite](http://en.cppreference.com/w/cpp/io/c/fwrite)
* for [FILE](https://en.cppreference.com/w/c/io) pointer streams.
* \returns either `n` if the write is successful, or `0` upon failure.
*/
inline size_t fwrite(const void* src, size_t size, size_t n, memory_stream& out) {
if (out.write(src, (unsigned int) (size * n)))
return n;
else return 0;
}
/**
* Retrieves the current position in the given memory_stream.
* \see This function mirrors the equivalent [fgetpos](https://en.cppreference.com/w/c/io/fgetpos)
* for [FILE](https://en.cppreference.com/w/c/io) pointer streams.
* \returns 0 on success; nonzero value otherwise.
*/
inline int fgetpos(const memory_stream& stream, fpos_t* pos) {
#if defined(_WIN32) || defined(__APPLE__) /* on Windows or Mac */
*pos = (fpos_t) stream.position;
#else /* on Windows or Linux */
pos->__pos = stream.position;
#endif
return 0;
}
/**
* Sets the current position in the given memory_stream.
* \see This function mirrors the equivalent [fsetpos](https://en.cppreference.com/w/c/io/fsetpos)
* for [FILE](https://en.cppreference.com/w/c/io) pointer streams.
* \returns 0 on success; nonzero value otherwise.
*/
inline int fsetpos(memory_stream& stream, const fpos_t* pos) {
#if defined(_WIN32) || defined(__APPLE__) /* on Windows or Mac */
stream.position = (unsigned int) *pos;
#else /* on Windows or Linux */
stream.position = pos->__pos;
#endif
return 0;
}
/**
* Writes the given character `c` to the memory_stream `out`.
* \see This function mirrors the equivalent [fputc](http://en.cppreference.com/w/cpp/io/c/fputc)
* for [FILE](https://en.cppreference.com/w/c/io) pointer streams.
*/
inline int fputc(int c, memory_stream& out) {
char ch = (char) c;
if (out.write(&ch, sizeof(char)))
return c;
else return EOF;
}
/**
* Writes the given null-terminated C string `s` to the memory_stream `out`.
* \see This function mirrors the equivalent [fputs](http://en.cppreference.com/w/cpp/io/c/fputs)
* for [FILE](https://en.cppreference.com/w/c/io) pointer streams.
*/
inline int fputs(const char* s, memory_stream& out) {
if (out.write(s, (unsigned int) strlen(s)))
return 1;
else return EOF;
}
/**
* Writes the given arguments according to the format string `format` to the
* memory_stream `out`.
* \see This function mirrors the equivalent [fprintf](http://en.cppreference.com/w/cpp/io/c/fprintf)
* for [FILE](https://en.cppreference.com/w/c/io) pointer streams.
* \returns the number of bytes written to the stream, or `-1` upon error.
*/
inline int fprintf(memory_stream& out, const char* format, ...) {
va_list argptr;
va_start(argptr, format);
#if defined(_WIN32)
int required = _vscprintf(format, argptr);
if (!out.ensure_capacity((unsigned int) required + 1)) {
fprintf(stderr, "fprintf ERROR: Unable to expand memory stream buffer.\n");
va_end(argptr);
return -1;
}
int written = vsnprintf_s(out.buffer + out.position, out.length - out.position, (size_t) required, format, argptr);
#else
int written = vsnprintf(out.buffer + out.position, out.length - out.position, format, argptr);
if (written < 0) {
va_end(argptr);
return -1;
} else if ((unsigned) written < out.length - out.position) {
va_end(argptr);
out.position += written;
return written;
}
if (!out.ensure_capacity(written + 1)) {
fprintf(stderr, "fprintf ERROR: Unable to expand memory stream buffer.\n");
va_end(argptr);
return -1;
}
written = vsnprintf(out.buffer + out.position, out.length - out.position, format, argptr);
#endif
va_end(argptr);
if (written < 0) return -1;
out.position += written;
return written;
}
/**
* Prints the character `value` to the stream given by the memory_stream `out`.
*/
inline bool print(const char& value, memory_stream& out) {
return (fputc(value, out) != EOF);
}
/**
* Prints the int `value` to the stream given by the memory_stream `out`.
*/
inline bool print(const int& value, memory_stream& out) {
return (fprintf(out, "%d", value) > 0);
}
/**
* Prints the long `value` to the stream given by the memory_stream `out`.
*/
inline bool print(const long& value, memory_stream& out) {
return (fprintf(out, "%ld", value) > 0);
}
/**
* Prints the long long `value` to the stream given by the memory_stream `out`.
*/
inline bool print(const long long& value, memory_stream& out) {
return (fprintf(out, "%lld", value) > 0);
}
/**
* Prints the unsigned int `value` to the stream given by the memory_stream
* `out`.
*/
inline bool print(const unsigned int& value, memory_stream& out) {
return (fprintf(out, "%u", value) > 0);
}
/**
* Prints the unsigned long `value` to the stream given by the memory_stream
* `out`.
*/
inline bool print(const unsigned long& value, memory_stream& out) {
return (fprintf(out, "%lu", value) > 0);
}
/**
* Prints the unsigned long long `value` to the stream given by the
* memory_stream `out`.
*/
inline bool print(const unsigned long long& value, memory_stream& out) {
return (fprintf(out, "%llu", value) > 0);
}
/**
* Prints the float `value` to the stream given by the memory_stream `out`.
*/
inline bool print(const float& value, memory_stream& out) {
return (fprintf(out, "%f", (double) value) > 0);
}
/**
* Prints the double `value` to the stream given by the memory_stream `out`.
*/
inline bool print(const double& value, memory_stream& out) {
return (fprintf(out, "%lf", value) > 0);
}
/**
* Prints the float `value` to the stream given by the memory_stream `out` with
* the given `precision`.
*/
inline bool print(const float& value, memory_stream& out, unsigned int precision) {
return (fprintf(out, "%.*f", precision, (double) value) > 0);
}
/**
* Prints the double `value` to the stream given by the memory_stream `out`
* with the given `precision`.
*/
inline bool print(const double& value, memory_stream& out, unsigned int precision) {
return (fprintf(out, "%.*lf", precision, value) > 0);
}
/**
* Prints the null-terminated C string `value` to the stream given by the
* memory_stream `out`.
*/
inline bool print(const char* values, memory_stream& out) {
return (fprintf(out, "%s", values) >= 0);
}
/**
* A stream wrapper for reading UTF-32 characters from an underlying multibyte
* stream (such as UTF-8).
*/
template<unsigned int BufferSize, typename Stream>
struct buffered_stream {
Stream& underlying_stream;
char buffer[BufferSize];
unsigned int position;
unsigned int length;
mbstate_t shift;
buffered_stream(Stream& underlying_stream) : underlying_stream(underlying_stream), position(0) {
shift = {0};
fill_buffer();
}
inline void fill_buffer() {
length = fread(buffer, sizeof(char), BufferSize, underlying_stream);
}
/**
* Returns the next UTF-32 character (as a `char32_t`) from the stream. If
* there are no further bytes in the underlying stream or an error occurred,
* `static_cast<char32_t>(-1)` is returned.
*/
char32_t fgetc32() {
static_assert(BufferSize >= MB_LEN_MAX, "BufferSize must be at least MB_LEN_MAX");
while (true)
{
if (length == 0)
return static_cast<char32_t>(-1);
char32_t c;
size_t status = mbrtoc32(&c, buffer + position, sizeof(char) * (length - position), &shift);
if (status == static_cast<size_t>(-1)) {
/* encoding error occurred */
return static_cast<char32_t>(-1);
} else if (status == static_cast<size_t>(-2)) {
/* the character is valid but incomplete */
position = 0;
fill_buffer();
continue;
} else {
if (status == 0)
position += 1;
else position += status;
if (position == length) {
position = 0;
fill_buffer();
}
return c;
}
}
}
};
template<unsigned int BufferSize>
struct buffered_stream<BufferSize, memory_stream> {
memory_stream& underlying_stream;
mbstate_t shift;
buffered_stream(memory_stream& underlying_stream) : underlying_stream(underlying_stream) {
shift = {0};
}
/**
* Returns the next UTF-32 character (as a `char32_t`) from the stream. If
* there are no further bytes in the underlying stream or an error occurred,
* `static_cast<char32_t>(-1)` is returned.
*/
char32_t fgetc32() {
if (underlying_stream.position == underlying_stream.length)
return static_cast<char32_t>(-1);
char32_t c;
size_t status = mbrtoc32(&c, underlying_stream.buffer + underlying_stream.position, sizeof(char) * (underlying_stream.length - underlying_stream.position), &shift);
if (status == static_cast<size_t>(-1) || status == static_cast<size_t>(-2)) {
/* encoding error occurred or the character is incomplete */
return static_cast<char32_t>(-1);
}
if (status == 0)
underlying_stream.position += 1;
else underlying_stream.position += status;
return c;
}
};
/**
* Returns the next UTF-32 character (as a `char32_t`) from the buffered_stream
* `input`. If there are no further bytes in the underlying stream or an error
* occurred, `static_cast<char32_t>(-1)` is returned.
*/
template<unsigned int BufferSize, typename Stream>
inline char32_t fgetc32(buffered_stream<BufferSize, Stream>& input)
{
return input.fgetc32();
}
/**
* A stream wrapper for reading/writing integral types as fixed-width integral
* values. This is useful for cross-platform readability and writeability.
*/
template<typename Stream, typename BoolType = uint8_t,
typename CharType = int8_t, typename UCharType = uint8_t,
typename ShortType = int16_t, typename UShortType = uint16_t,
typename IntType = int32_t, typename UIntType = uint32_t,
typename LongType = uint64_t, typename ULongType = uint64_t,
typename LongLongType = uint64_t, typename ULongLongType = uint64_t,
typename FloatType = float, typename DoubleType = double>
struct fixed_width_stream {
Stream& stream;
fixed_width_stream(Stream& stream) : stream(stream) { }
template<typename T, class Enable = void> struct type { };
template<class Enable> struct type<bool, Enable> { typedef BoolType value; };
template<class Enable> struct type<char, Enable> { typedef CharType value; };
template<class Enable> struct type<unsigned char, Enable> { typedef UCharType value; };
template<class Enable> struct type<short, Enable> { typedef ShortType value; };
template<class Enable> struct type<unsigned short, Enable> { typedef UShortType value; };
template<class Enable> struct type<int, Enable> { typedef IntType value; };
template<class Enable> struct type<unsigned int, Enable> { typedef UIntType value; };
template<class Enable> struct type<long, Enable> { typedef LongType value; };
template<class Enable> struct type<unsigned long, Enable> { typedef ULongType value; };
template<class Enable> struct type<long long, Enable> { typedef LongLongType value; };
template<class Enable> struct type<unsigned long long, Enable> { typedef ULongLongType value; };
template<class Enable> struct type<float, Enable> { typedef FloatType value; };
template<class Enable> struct type<double, Enable> { typedef DoubleType value; };
};
/**
* Reads `size(K)` bytes from `in` where `K` is the appropriate template
* argument in the fixed_width_stream and writes them to the memory referenced
* by `value`. This function does not perform endianness transformations.
* \param in a fixed_width_stream.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename Stream, typename... Args,
typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool read(T& value, fixed_width_stream<Stream, Args...>& in) {
typedef typename fixed_width_stream<Stream, Args...>::template type<T>::value value_type;
value_type c;
if (!read(c, in.stream)) return false;
value = (T) c;
return true;
}
/**
* Reads `length` elements from `in` and writes them to the native array
* `values`. This function does not perform endianness transformations.
* \param in a fixed_width_stream.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename Stream, typename SizeType, typename... Args,
typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool read(T* values, fixed_width_stream<Stream, Args...>& in, SizeType length) {
for (SizeType i = 0; i < length; i++)
if (!read(values[i], in)) return false;
return true;
}
/**
* Writes `sizeof(K)` bytes to `out` from the memory referenced by `value`
* where `K` is the appropriate template argument in the fixed_width_stream.
* This function does not perform endianness transformations.
* \param out a fixed_width_stream.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename Stream, typename... Args,
typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool write(const T& value, fixed_width_stream<Stream, Args...>& out) {
typedef typename fixed_width_stream<Stream, Args...>::template type<T>::value value_type;
return write((value_type) value, out.stream);
}
/**
* Writes `length` elements to `out` from the native array `values`. This
* function does not perform endianness transformations.
* \param out a fixed_width_stream.
* \tparam T satisfies [is_fundamental](https://en.cppreference.com/w/cpp/types/is_fundamental).
*/
template<typename T, typename Stream, typename SizeType, typename... Args,
typename std::enable_if<std::is_fundamental<T>::value>::type* = nullptr>
inline bool write(const T* values, fixed_width_stream<Stream, Args...>& out, SizeType length) {
for (SizeType i = 0; i < length; i++)
if (!write(values[i], out)) return false;
return true;
}
/**
* Writes the given null-terminated C string `values` to the stream `out`.
* \tparam Stream satisfies is_writeable.
*/
template<typename Stream,
typename std::enable_if<is_writeable<Stream>::value>::type* = nullptr>
inline bool write(const char* values, Stream& out) {
return write(values, out, strlen(values));
}
/**
* The default scribe implementation that provides the default behavior for
* read/write/print functions.
* \see [Section on scribes](#scribes).
*/
struct default_scribe { };
/* a type trait for detecting whether the function 'print' is defined with a default_scribe argument */
namespace detail {
template<typename T, typename Stream> static auto test_default_read(int) ->
decltype(bool(read(std::declval<T&>(), std::declval<Stream&>(), std::declval<default_scribe&>())), std::true_type{});
template<typename T, typename Stream> static auto test_default_read(long) -> std::false_type;
template<typename T, typename Stream> static auto test_default_write(int) ->
decltype(bool(write(std::declval<const T&>(), std::declval<Stream&>(), std::declval<default_scribe&>())), std::true_type{});
template<typename T, typename Stream> static auto test_default_write(long) -> std::false_type;
template<typename T, typename Stream> static auto test_default_print(int) ->
decltype(bool(print(std::declval<const T&>(), std::declval<Stream&>(), std::declval<default_scribe&>())), std::true_type{});
template<typename T, typename Stream> static auto test_default_print(long) -> std::false_type;
}
template<typename T, typename Stream> struct has_default_read : decltype(core::detail::test_default_read<T, Stream>(0)){};
template<typename T, typename Stream> struct has_default_write : decltype(core::detail::test_default_write<T, Stream>(0)){};
template<typename T, typename Stream> struct has_default_print : decltype(core::detail::test_default_print<T, Stream>(0)){};
/**
* Calls and returns `read(value, in)`, dropping the default_scribe argument.
* \tparam Stream satisfies is_readable.
*/
template<typename T, typename Stream,
typename std::enable_if<is_readable<Stream>::value && !has_default_read<T, Stream>::value>::type** = nullptr>
inline bool read(T& value, Stream& in, default_scribe& scribe) {
return read(value, in);
}
/**
* Calls and returns `write(value, out)`, dropping the default_scribe argument.
* \tparam Stream satisfies is_writeable.
*/
template<typename T, typename Stream,
typename std::enable_if<is_writeable<Stream>::value && !has_default_write<T, Stream>::value>::type* = nullptr>
inline bool write(const T& value, Stream& out, default_scribe& scribe) {
return write(value, out);
}
/**
* Calls and returns `print(value, out)`, dropping the default_scribe argument.
* \tparam Stream satisfies is_printable.
*/
template<typename T, typename Stream,
typename std::enable_if<is_printable<Stream>::value && !has_default_print<T, Stream>::value>::type* = nullptr>
inline auto print(const T& value, Stream& out, default_scribe& scribe) -> decltype(print(value, out)) {
return print(value, out);
}
/**
* A scribe that prints pointers by dereferencing the pointer and calling the
* appropriate read/write/print function.
* \see [Section on scribes](#scribes).
*/
struct pointer_scribe { };
/**
* Allocates memory and stores the address in `value`, and then calls
* `read(*value, in, reader)`, dropping the pointer_scribe argument. Note that
* since `reader` is a variadic argument, it may be empty.
* \tparam Stream satisfies is_readable.
*/
template<typename T, typename Stream, typename... Reader,
typename std::enable_if<is_readable<Stream>::value>::type* = nullptr>
inline bool read(T*& value, Stream& in, const pointer_scribe& scribe, Reader&&... reader) {
value = (T*) malloc(sizeof(T));
if (value == NULL) {
fprintf(stderr, "read ERROR: Out of memory.\n");
return false;
} else if (!read(*value, in, std::forward<Reader>(reader)...)) {
free(value);
return false;
}
return true;
}
/**
* Calls and returns `write(*value, out, writer)`, dropping the pointer_scribe
* argument. Note that since `writer` is a variadic argument, it may be empty.
* \tparam Stream satisfies is_writeable.
*/
template<typename T, typename Stream, typename... Writer,
typename std::enable_if<is_writeable<Stream>::value>::type* = nullptr>
inline bool write(const T* const value, Stream& out, const pointer_scribe& scribe, Writer&&... writer) {
return write(*value, out, std::forward<Writer>(writer)...);
}
/**
* Calls and returns `print(*value, out, printer)`, dropping the pointer_scribe
* argument. Note that since `printer` is a variadic argument, it may be empty.
* \tparam Stream satisfies is_printable.
*/
template<typename T, typename Stream, typename... Printer,
typename std::enable_if<is_printable<Stream>::value>::type* = nullptr>
inline bool print(const T* const value, Stream& out, const pointer_scribe& scribe, Printer&&... printer) {
return print(*value, out, std::forward<Printer>(printer)...);
}
/**
* The default left delimitter "[" for the array print functions.
*/
char default_left_bracket[] = "[";
/**
* The default right delimitter "]" for the array print functions.
*/
char default_right_bracket[] = "]";
/**
* The default separator between elements ", " for the array print functions.
*/
char default_array_separator[] = ", ";
/**
* Prints the given native array of `values` each of type `T`, where `length`
* is the number of elements in the array. The output stream is `out`.
* \param printer a scribe for which the function `bool print(const T&, Stream&, Printer&)`
* is defined. Note that since this is a variadic argument, it may be empty.
* \tparam Stream satisfies is_printable.
*/
template<typename T,
const char* LeftBracket = default_left_bracket,