-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
fstream
1375 lines (1150 loc) · 50.5 KB
/
fstream
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
// fstream standard header
// Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#pragma once
#ifndef _FSTREAM_
#define _FSTREAM_
#include <yvals_core.h>
#if _STL_COMPILER_PREPROCESSOR
#include <istream>
#pragma pack(push, _CRT_PACKING)
#pragma warning(push, _STL_WARNING_LEVEL)
#pragma warning(disable : _STL_DISABLED_WARNINGS)
_STL_DISABLE_CLANG_WARNINGS
#pragma push_macro("new")
#undef new
// TRANSITION, ABI: The _Path_ish functions accepting filesystem::path or experimental::filesystem::path are templates
// which always use the same types as a workaround for user code deriving from iostreams types and
// __declspec(dllexport)ing the derived types. Adding member functions to iostreams broke the ABI of such DLLs.
// Deriving and __declspec(dllexport)ing standard library types is not supported, but in this particular case
// the workaround was inexpensive. The workaround will be removed in the next ABI breaking release of the
// Visual C++ Libraries.
_STD_BEGIN
#if _HAS_CXX17
namespace filesystem {
class path;
}
#endif // _HAS_CXX17
#ifndef _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
#ifdef _M_CEE
#define _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM 0
#else // _M_CEE
#define _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM 1
#endif // _M_CEE
#endif // _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
#if _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
namespace experimental {
namespace filesystem {
inline namespace v1 {
class path;
}
} // namespace filesystem
} // namespace experimental
#endif // _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
// clang-format off
template <class _Ty>
_INLINE_VAR constexpr bool _Is_any_path = _Is_any_of_v<_Ty
#if _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
, experimental::filesystem::path
#endif // _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
#if _HAS_CXX17
, filesystem::path
#endif // _HAS_CXX17
>;
// clang-format on
extern _CRTIMP2_PURE FILE* __CLRCALL_PURE_OR_CDECL _Fiopen(const char*, ios_base::openmode, int);
extern _CRTIMP2_PURE FILE* __CLRCALL_PURE_OR_CDECL _Fiopen(const wchar_t*, ios_base::openmode, int);
#ifdef _NATIVE_WCHAR_T_DEFINED
extern _CRTIMP2_PURE FILE* __CLRCALL_PURE_OR_CDECL _Fiopen(const unsigned short*, ios_base::openmode, int);
#endif // _NATIVE_WCHAR_T_DEFINED
// FUNCTION TEMPLATE _Fgetc
template <class _Elem>
bool _Fgetc(_Elem& _Ch, FILE* _File) { // get an element from a C stream
return _CSTD fread(&_Ch, sizeof(_Elem), 1, _File) == 1;
}
template <>
inline bool _Fgetc(char& _Byte, FILE* _File) { // get a char element from a C stream
int _Meta;
if ((_Meta = _CSTD fgetc(_File)) == EOF) {
return false;
} else { // got one, convert to char
_Byte = static_cast<char>(_Meta);
return true;
}
}
template <>
inline bool _Fgetc(wchar_t& _Wchar, FILE* _File) { // get a wchar_t element from a C stream
wint_t _Meta;
if ((_Meta = _CSTD fgetwc(_File)) == WEOF) {
return false;
} else { // got one, convert to wchar_t
_Wchar = static_cast<wchar_t>(_Meta);
return true;
}
}
#ifdef _NATIVE_WCHAR_T_DEFINED
template <>
inline bool _Fgetc(unsigned short& _Wchar, FILE* _File) { // get an unsigned short element from a C stream
wint_t _Meta;
if ((_Meta = _CSTD fgetwc(_File)) == WEOF) {
return false;
} else { // got one, convert to unsigned short
_Wchar = static_cast<unsigned short>(_Meta);
return true;
}
}
#endif // _NATIVE_WCHAR_T_DEFINED
// FUNCTION TEMPLATE _Fputc
template <class _Elem>
bool _Fputc(_Elem _Ch, FILE* _File) { // put an element to a C stream
return _CSTD fwrite(&_Ch, 1, sizeof(_Elem), _File) == sizeof(_Elem);
}
template <>
inline bool _Fputc(char _Byte, FILE* _File) { // put a char element to a C stream
return _CSTD fputc(_Byte, _File) != EOF;
}
template <>
inline bool _Fputc(wchar_t _Wchar, FILE* _File) { // put a wchar_t element to a C stream
return _CSTD fputwc(_Wchar, _File) != WEOF;
}
#ifdef _NATIVE_WCHAR_T_DEFINED
template <>
inline bool _Fputc(unsigned short _Wchar, FILE* _File) { // put an unsigned short element to a C stream
return _CSTD fputwc(_Wchar, _File) != WEOF;
}
#endif // _NATIVE_WCHAR_T_DEFINED
// FUNCTION TEMPLATE _Ungetc
template <class _Elem>
bool _Ungetc(const _Elem&, FILE*) { // put back an arbitrary element to a C stream (always fail)
return false;
}
template <>
inline bool _Ungetc(const char& _Byte, FILE* _File) { // put back a char element to a C stream
return _CSTD ungetc(static_cast<unsigned char>(_Byte), _File) != EOF;
}
template <>
inline bool _Ungetc(const signed char& _Byte, FILE* _File) { // put back a signed char element to a C stream
return _CSTD ungetc(static_cast<unsigned char>(_Byte), _File) != EOF;
}
template <>
inline bool _Ungetc(const unsigned char& _Byte, FILE* _File) { // put back an unsigned char element to a C stream
return _CSTD ungetc(_Byte, _File) != EOF;
}
template <>
inline bool _Ungetc(const wchar_t& _Wchar, FILE* _File) { // put back a wchar_t element to a C stream
return _CSTD ungetwc(_Wchar, _File) != WEOF;
}
#ifdef _NATIVE_WCHAR_T_DEFINED
template <>
inline bool _Ungetc(const unsigned short& _Wchar, FILE* _File) { // put back an unsigned short element to a C stream
return _CSTD ungetwc(_Wchar, _File) != WEOF;
}
#endif // _NATIVE_WCHAR_T_DEFINED
// CLASS TEMPLATE basic_filebuf
template <class _Elem, class _Traits>
class basic_filebuf : public basic_streambuf<_Elem, _Traits> { // stream buffer associated with a C stream
public:
using _Mysb = basic_streambuf<_Elem, _Traits>;
using _Cvt = codecvt<_Elem, char, typename _Traits::state_type>;
basic_filebuf() : _Mysb() {
_Init(nullptr, _Newfl);
}
explicit basic_filebuf(FILE* const _File) : _Mysb() { // extension
_Init(_File, _Newfl);
}
virtual __CLR_OR_THIS_CALL ~basic_filebuf() noexcept {
if (_Myfile) {
_Reset_back(); // revert from _Mychar buffer
}
if (_Closef) {
close();
}
}
using int_type = typename _Traits::int_type;
using pos_type = typename _Traits::pos_type;
using off_type = typename _Traits::off_type;
basic_filebuf(_Uninitialized) : _Mysb(_Noinit) {}
basic_filebuf(basic_filebuf&& _Right) {
_Init(_Right._Myfile, _Newfl); // match buffering styles
_Init(static_cast<FILE*>(nullptr), _Closefl); // then make *this look closed
_Assign_rv(_STD move(_Right));
}
basic_filebuf& operator=(basic_filebuf&& _Right) {
_Assign_rv(_STD move(_Right));
return *this;
}
void _Assign_rv(basic_filebuf&& _Right) {
if (this != _STD addressof(_Right)) {
close();
this->swap(_Right);
}
}
void swap(basic_filebuf& _Right) {
if (this != _STD addressof(_Right)) {
FILE* _Myfile_sav = _Myfile;
const _Cvt* _Pcvt_sav = _Pcvt;
typename _Traits::state_type _State_sav = _State;
bool _Wrotesome_sav = _Wrotesome;
bool _Closef_sav = _Closef;
bool _Set_eback_sav = _Mysb::eback() == &_Mychar;
bool _Set_eback_live = _Mysb::gptr() == &_Mychar;
_Elem* _Pfirst0 = _Mysb::pbase();
_Elem* _Pnext0 = _Mysb::pptr();
_Elem* _Pend = _Mysb::epptr();
_Elem* _Gfirst0 = _Mysb::eback();
_Elem* _Gnext0 = _Mysb::gptr();
_Elem* _Gend = _Mysb::egptr();
// reinitialize *this
_Init(_Right._Myfile, _Right._Myfile ? _Openfl : _Newfl);
_Mysb::setp(_Right.pbase(), _Right.pptr(), _Right.epptr());
if (_Right.eback() != &_Right._Mychar) {
_Mysb::setg(_Right.eback(), _Right.gptr(), _Right.egptr());
} else if (_Right.gptr() != &_Right._Mychar) {
_Mysb::setg(&_Mychar, &_Mychar + 1, &_Mychar + 1);
} else {
_Mysb::setg(&_Mychar, &_Mychar, &_Mychar + 1);
}
_Pcvt = _Right._Pcvt;
_State = _Right._State;
_Wrotesome = _Right._Wrotesome;
_Closef = _Right._Closef;
// reinitialize _Right
_Right._Init(_Myfile_sav, _Myfile_sav ? _Openfl : _Newfl);
_Right.setp(_Pfirst0, _Pnext0, _Pend);
if (!_Set_eback_sav) {
_Right.setg(_Gfirst0, _Gnext0, _Gend);
} else if (!_Set_eback_live) {
_Right.setg(&_Right._Mychar, &_Right._Mychar + 1, &_Right._Mychar + 1);
} else {
_Right.setg(&_Right._Mychar, &_Right._Mychar, &_Right._Mychar + 1);
}
_Right._Pcvt = _Pcvt_sav;
_Right._State = _State_sav;
_Right._Wrotesome = _Wrotesome_sav;
_Right._Closef = _Closef_sav;
// swap ancillary data
_STD swap(_Set_eback, _Right._Set_eback);
_STD swap(_Set_egptr, _Right._Set_egptr);
_STD swap(_Mychar, _Right._Mychar);
_STD swap(_Mysb::_Plocale, _Right._Plocale);
}
}
basic_filebuf(const basic_filebuf&) = delete;
basic_filebuf& operator=(const basic_filebuf&) = delete;
enum _Initfl { // reasons for a call to _Init
_Newfl,
_Openfl,
_Closefl
};
_NODISCARD bool is_open() const {
return static_cast<bool>(_Myfile);
}
basic_filebuf* open(const char* _Filename, ios_base::openmode _Mode, int _Prot = ios_base::_Default_open_prot) {
// _Prot is an extension
if (_Myfile) {
return nullptr;
}
const auto _File = _Fiopen(_Filename, _Mode, _Prot);
if (!_File) {
return nullptr; // open failed
}
_Init(_File, _Openfl);
_Initcvt(_STD use_facet<_Cvt>(_Mysb::getloc()));
return this; // open succeeded
}
basic_filebuf* open(const string& _Str, ios_base::openmode _Mode, int _Prot = ios_base::_Default_open_prot) {
// _Prot is an extension
return open(_Str.c_str(), _Mode, _Prot);
}
#if _HAS_OLD_IOSTREAMS_MEMBERS
basic_filebuf* open(const char* _Filename, ios_base::open_mode _Mode) {
return open(_Filename, static_cast<ios_base::openmode>(_Mode));
}
#endif // _HAS_OLD_IOSTREAMS_MEMBERS
basic_filebuf* open(const wchar_t* _Filename, ios_base::openmode _Mode, int _Prot = ios_base::_Default_open_prot) {
// in standard as const std::filesystem::path::value_type *; _Prot is an extension
if (_Myfile) {
return nullptr;
}
const auto _File = _Fiopen(_Filename, _Mode, _Prot);
if (!_File) {
return nullptr; // open failed
}
_Init(_File, _Openfl);
_Initcvt(_STD use_facet<_Cvt>(_Mysb::getloc()));
return this; // open succeeded
}
basic_filebuf* open(const wstring& _Str, ios_base::openmode _Mode, int _Prot = ios_base::_Default_open_prot) {
// extension
return open(_Str.c_str(), _Mode, _Prot);
}
#if _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
template <class _Path_ish = experimental::filesystem::path>
basic_filebuf* open(
const _Identity_t<_Path_ish>& _Path, ios_base::openmode _Mode, int _Prot = ios_base::_Default_open_prot) {
// _Prot is an extension
return open(_Path.c_str(), _Mode, _Prot);
}
#endif // _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
#if _HAS_CXX17
template <int = 0, class _Path_ish = filesystem::path>
basic_filebuf* open(
const _Identity_t<_Path_ish>& _Path, ios_base::openmode _Mode, int _Prot = ios_base::_Default_open_prot) {
// _Prot is an extension
return open(_Path.c_str(), _Mode, _Prot);
}
#endif // _HAS_CXX17
#if _HAS_OLD_IOSTREAMS_MEMBERS
basic_filebuf* open(const wchar_t* _Filename, ios_base::open_mode _Mode) {
// in standard as const std::filesystem::path::value_type *
return open(_Filename, static_cast<ios_base::openmode>(_Mode));
}
#endif // _HAS_OLD_IOSTREAMS_MEMBERS
#ifdef _NATIVE_WCHAR_T_DEFINED
basic_filebuf* open(
const unsigned short* _Filename, ios_base::openmode _Mode, int _Prot = ios_base::_Default_open_prot) {
// in standard as const std::filesystem::path::value_type *; _Prot is an extension
if (_Myfile) {
return nullptr;
}
const auto _File = _Fiopen(_Filename, _Mode, _Prot);
if (!_File) {
return nullptr; // open failed
}
_Init(_File, _Openfl);
_Initcvt(_STD use_facet<_Cvt>(_Mysb::getloc()));
return this; // open succeeded
}
#if _HAS_OLD_IOSTREAMS_MEMBERS
basic_filebuf* open(const unsigned short* _Filename, ios_base::open_mode _Mode) {
// in standard as const std::filesystem::path::value_type *
return open(_Filename, static_cast<ios_base::openmode>(_Mode));
}
#endif // _HAS_OLD_IOSTREAMS_MEMBERS
#endif // _NATIVE_WCHAR_T_DEFINED
basic_filebuf* close() {
basic_filebuf* _Ans;
if (_Myfile) { // put any homing sequence and close file
_Ans = this;
if (!_Endwrite()) {
_Ans = nullptr;
}
if (_CSTD fclose(_Myfile) != 0) {
_Ans = nullptr;
}
} else {
_Ans = nullptr;
}
_Init(nullptr, _Closefl);
return _Ans;
}
virtual void __CLR_OR_THIS_CALL _Lock() override { // lock file instead of stream buffer
if (_Myfile) {
_CSTD _lock_file(_Myfile);
}
}
virtual void __CLR_OR_THIS_CALL _Unlock() override { // unlock file instead of stream buffer
if (_Myfile) {
_CSTD _unlock_file(_Myfile);
}
}
protected:
virtual int_type __CLR_OR_THIS_CALL overflow(int_type _Meta = _Traits::eof()) override { // put an element to stream
if (_Traits::eq_int_type(_Traits::eof(), _Meta)) {
return _Traits::not_eof(_Meta); // EOF, return success code
}
if (_Mysb::pptr() && _Mysb::pptr() < _Mysb::epptr()) { // room in buffer, store it
*_Mysb::_Pninc() = _Traits::to_char_type(_Meta);
return _Meta;
}
if (!_Myfile) {
return _Traits::eof(); // no open C stream, fail
}
_Reset_back(); // revert from _Mychar buffer
if (!_Pcvt) { // no codecvt facet, put as is
return _Fputc(_Traits::to_char_type(_Meta), _Myfile) ? _Meta : _Traits::eof();
}
// put using codecvt facet
constexpr size_t _Codecvt_temp_buf = 32;
char _Str[_Codecvt_temp_buf];
const _Elem _Ch = _Traits::to_char_type(_Meta);
const _Elem* _Src;
char* _Dest;
switch (_Pcvt->out(_State, &_Ch, &_Ch + 1, _Src, _Str, _Str + _Codecvt_temp_buf,
_Dest)) { // test result of converting one element
case codecvt_base::partial:
case codecvt_base::ok:
{ // converted something, try to put it out
const auto _Count = static_cast<size_t>(_Dest - _Str);
if (0 < _Count && _Count != static_cast<size_t>(_CSTD fwrite(_Str, 1, _Count, _Myfile))) {
return _Traits::eof(); // write failed
}
_Wrotesome = true; // write succeeded
if (_Src != &_Ch) {
return _Meta; // converted whole element
}
return _Traits::eof(); // conversion failed
}
case codecvt_base::noconv:
// no conversion, put as is
return _Fputc(_Ch, _Myfile) ? _Meta : _Traits::eof();
default:
return _Traits::eof(); // conversion failed
}
}
virtual int_type __CLR_OR_THIS_CALL pbackfail(int_type _Meta = _Traits::eof()) override {
// put an element back to stream
if (_Mysb::gptr() && _Mysb::eback() < _Mysb::gptr()
&& (_Traits::eq_int_type(_Traits::eof(), _Meta)
|| _Traits::eq_int_type(_Traits::to_int_type(_Mysb::gptr()[-1]),
_Meta))) { // just back up position
_Mysb::_Gndec();
return _Traits::not_eof(_Meta);
} else if (!_Myfile || _Traits::eq_int_type(_Traits::eof(), _Meta)) {
return _Traits::eof(); // no open C stream or EOF, fail
} else if (!_Pcvt && _Ungetc(_Traits::to_char_type(_Meta), _Myfile)) {
return _Meta; // no facet and unget succeeded, return
} else if (_Mysb::gptr() != &_Mychar) { // putback to _Mychar
_Mychar = _Traits::to_char_type(_Meta);
_Set_back(); // switch to _Mychar buffer
return _Meta;
} else {
return _Traits::eof(); // nowhere to put back
}
}
virtual int_type __CLR_OR_THIS_CALL underflow() override { // get an element from stream, but don't point past it
int_type _Meta;
if (_Mysb::gptr() && _Mysb::gptr() < _Mysb::egptr()) {
return _Traits::to_int_type(*_Mysb::gptr()); // return buffered
} else if (_Traits::eq_int_type(_Traits::eof(), _Meta = uflow())) {
return _Meta; // uflow failed, return EOF
} else { // get a char, don't point past it
pbackfail(_Meta);
return _Meta;
}
}
virtual int_type __CLR_OR_THIS_CALL uflow() override { // get an element from stream, point past it
if (_Mysb::gptr() && _Mysb::gptr() < _Mysb::egptr()) {
return _Traits::to_int_type(*_Mysb::_Gninc()); // return buffered
}
if (!_Myfile) {
return _Traits::eof(); // no open C stream, fail
}
_Reset_back(); // revert from _Mychar buffer
if (!_Pcvt) { // no codecvt facet, just get it
_Elem _Ch;
return _Fgetc(_Ch, _Myfile) ? _Traits::to_int_type(_Ch) : _Traits::eof();
}
// build string until codecvt succeeds
string _Str;
for (;;) { // get using codecvt facet
const char* _Src;
int _Meta = _CSTD fgetc(_Myfile);
if (_Meta == EOF) {
return _Traits::eof(); // partial char?
}
_Str.push_back(static_cast<char>(_Meta)); // append byte and convert
_Elem _Ch;
_Elem* _Dest;
switch (_Pcvt->in(_State, _Str.data(), _Str.data() + _Str.size(), _Src, &_Ch, &_Ch + 1,
_Dest)) { // test result of converting one element
case codecvt_base::partial:
case codecvt_base::ok:
if (_Dest != &_Ch) { // got an element, put back excess and deliver it
auto _Nleft = _Str.data() + _Str.size() - _Src;
while (0 < _Nleft) {
_CSTD ungetc(_Src[--_Nleft], _Myfile);
}
return _Traits::to_int_type(_Ch);
}
_Str.erase(0, static_cast<size_t>(_Src - _Str.data())); // partial, discard used input
break;
case codecvt_base::noconv:
// noconv is only possible if _Elem is char, so we can use it directly
return static_cast<int_type>(_Str.front());
default:
return _Traits::eof(); // conversion failed
}
}
}
#pragma warning(push)
#pragma warning(disable : 4127) // conditional expression is constant
virtual streamsize __CLR_OR_THIS_CALL xsgetn(_Elem* _Ptr, streamsize _Count) override {
// get _Count characters from stream
if constexpr (sizeof(_Elem) == 1) {
if (_Count <= 0) {
return 0;
}
if (_Pcvt) { // if we need a nontrivial codecvt transform, do the default expensive thing
return _Mysb::xsgetn(_Ptr, _Count);
}
// assuming this is OK because _Ptr + _Count must be valid
auto _Count_s = static_cast<size_t>(_Count);
const auto _Start_count = _Count;
const auto _Available = static_cast<size_t>(_Mysb::_Gnavail());
if (0 < _Available) { // copy from get area
const auto _Read_size = (_STD min)(_Count_s, _Available);
_Traits::copy(_Ptr, _Mysb::gptr(), _Read_size);
_Ptr += _Read_size;
_Count_s -= _Read_size;
_Mysb::gbump(static_cast<int>(_Read_size));
}
if (_Myfile) { // open C stream, attempt read
_Reset_back(); // revert from _Mychar buffer
// process in 4k - 1 chunks to avoid tripping over fread's clobber-the-end behavior when
// doing \r\n -> \n translation
constexpr size_t _Read_size = 4095; // _INTERNAL_BUFSIZ - 1
while (_Read_size < _Count_s) {
const auto _Actual_read = _CSTD fread(_Ptr, sizeof(_Elem), _Read_size, _Myfile);
_Ptr += _Actual_read;
_Count_s -= _Actual_read;
if (_Actual_read != _Read_size) {
return static_cast<streamsize>(_Start_count - _Count_s);
}
}
if (0 < _Count_s) {
_Count_s -= _CSTD fread(_Ptr, sizeof(_Elem), _Count_s, _Myfile);
}
}
return static_cast<streamsize>(_Start_count - _Count_s);
} else { // non-chars always get element-by-element processing
return _Mysb::xsgetn(_Ptr, _Count);
}
}
virtual streamsize __CLR_OR_THIS_CALL xsputn(const _Elem* _Ptr, streamsize _Count) override {
// put _Count characters to stream
if constexpr (sizeof(_Elem) == 1) {
if (_Pcvt) { // if we need a nontrivial codecvt transform, do the default expensive thing
return _Mysb::xsputn(_Ptr, _Count);
}
const streamsize _Start_count = _Count;
streamsize _Size = _Mysb::_Pnavail();
if (0 < _Count && 0 < _Size) { // copy to write buffer
if (_Count < _Size) {
_Size = _Count;
}
_Traits::copy(_Mysb::pptr(), _Ptr, static_cast<size_t>(_Size));
_Ptr += _Size;
_Count -= _Size;
_Mysb::pbump(static_cast<int>(_Size));
}
if (0 < _Count && _Myfile) { // open C stream, attempt write
_Count -= _CSTD fwrite(_Ptr, sizeof(_Elem), static_cast<size_t>(_Count), _Myfile);
}
return _Start_count - _Count;
} else { // non-chars always get element-by-element processing
return _Mysb::xsputn(_Ptr, _Count);
}
}
#pragma warning(pop)
virtual pos_type __CLR_OR_THIS_CALL seekoff(off_type _Off, ios_base::seekdir _Way,
ios_base::openmode = ios_base::in | ios_base::out) override { // change position by _Off
fpos_t _Fileposition;
if (_Mysb::gptr() == &_Mychar // something putback
&& _Way == ios_base::cur // a relative seek
&& !_Pcvt) { // not converting
_Off -= static_cast<off_type>(sizeof(_Elem)); // back up over _Elem bytes
}
if (!_Myfile || !_Endwrite()
|| ((_Off != 0 || _Way != ios_base::cur) && _CSTD _fseeki64(_Myfile, _Off, _Way) != 0)
|| _CSTD fgetpos(_Myfile, &_Fileposition) != 0) {
return pos_type(-1); // report failure
}
_Reset_back(); // revert from _Mychar buffer, discarding any putback
return pos_type(_State, _Fileposition); // return new position
}
virtual pos_type __CLR_OR_THIS_CALL seekpos(
pos_type _Pos, ios_base::openmode = ios_base::in | ios_base::out) override {
// change position to _Pos
off_type _Off = static_cast<off_type>(_Pos);
if (!_Myfile || !_Endwrite() || _CSTD fsetpos(_Myfile, &_Off) != 0) {
return pos_type(-1); // report failure
}
_State = _Pos.state();
_Reset_back(); // revert from _Mychar buffer, discarding any putback
return pos_type(_State, _Off); // return new position
}
virtual _Mysb* __CLR_OR_THIS_CALL setbuf(_Elem* _Buffer, streamsize _Count) override { // offer _Buffer to C stream
int _Mode;
if (!_Buffer && _Count == 0) {
_Mode = _IONBF;
} else {
_Mode = _IOFBF;
}
const size_t _Size = static_cast<size_t>(_Count) * sizeof(_Elem);
if (!_Myfile || _CSTD setvbuf(_Myfile, reinterpret_cast<char*>(_Buffer), _Mode, _Size) != 0) {
return nullptr; // failed
}
// new buffer, reinitialize pointers
_Init(_Myfile, _Openfl);
return this;
}
virtual int __CLR_OR_THIS_CALL sync() override { // synchronize C stream with external file
if (!_Myfile || _Traits::eq_int_type(_Traits::eof(), overflow()) || 0 <= _CSTD fflush(_Myfile)) {
return 0;
}
return -1;
}
virtual void __CLR_OR_THIS_CALL imbue(const locale& _Loc) override {
// set locale to argument (capture nontrivial codecvt facet)
_Initcvt(_STD use_facet<_Cvt>(_Loc));
}
void _Init(FILE* _File, _Initfl _Which) { // initialize to C stream _File after {new, open, close}
using _State_type = typename _Traits::state_type;
__PURE_APPDOMAIN_GLOBAL static _State_type _Stinit; // initial state
_Closef = _Which == _Openfl;
_Wrotesome = false;
_Mysb::_Init(); // initialize stream buffer base object
if (_File && sizeof(_Elem) == 1) { // point inside C stream with [first, first + count) buffer
_Elem** _Pb = nullptr;
_Elem** _Pn = nullptr;
int* _Nr = nullptr;
::_get_stream_buffer_pointers(
_File, reinterpret_cast<char***>(&_Pb), reinterpret_cast<char***>(&_Pn), &_Nr);
int* _Nw = _Nr;
_Mysb::_Init(_Pb, _Pn, _Nr, _Pb, _Pn, _Nw);
}
_Myfile = _File;
_State = _Stinit;
_Pcvt = nullptr; // pointer to codecvt facet
}
bool _Endwrite() { // put shift to initial conversion state, as needed
if (!_Pcvt || !_Wrotesome) {
return true;
}
// may have to put
if (_Traits::eq_int_type(_Traits::eof(), overflow())) {
return false;
}
constexpr size_t _Codecvt_temp_buf = 32;
char _Str[_Codecvt_temp_buf];
char* _Dest;
switch (_Pcvt->unshift(_State, _Str, _Str + _Codecvt_temp_buf, _Dest)) { // test result of homing conversion
case codecvt_base::ok:
_Wrotesome = false; // homed successfully
case codecvt_base::partial: // fall through
{ // put any generated bytes
const auto _Count = static_cast<size_t>(_Dest - _Str);
if (0 < _Count && _Count != static_cast<size_t>(_CSTD fwrite(_Str, 1, _Count, _Myfile))) {
return false; // write failed
}
return !_Wrotesome;
}
case codecvt_base::noconv:
_Wrotesome = false; // homed successfully
return true; // nothing else to do
default:
return false; // conversion failed
}
}
void _Initcvt(const _Cvt& _Newcvt) { // initialize codecvt pointer
if (_Newcvt.always_noconv()) {
_Pcvt = nullptr; // nothing to do
} else { // set up for nontrivial codecvt facet
_Pcvt = _STD addressof(_Newcvt);
_Mysb::_Init(); // reset any buffering
}
}
private:
const _Cvt* _Pcvt; // pointer to codecvt facet (may be null)
_Elem _Mychar; // putback character, when _Ungetc fails
bool _Wrotesome; // true if homing sequence may be needed
typename _Traits::state_type _State; // current conversion state
bool _Closef; // true if C stream must be closed
FILE* _Myfile; // pointer to C stream
void _Reset_back() { // restore buffer after putback
if (_Mysb::eback() == &_Mychar) {
_Mysb::setg(_Set_eback, _Set_eback, _Set_egptr);
}
}
void _Set_back() { // set up putback area
if (_Mysb::eback() != &_Mychar) { // save current get buffer
_Set_eback = _Mysb::eback();
_Set_egptr = _Mysb::egptr();
}
_Mysb::setg(&_Mychar, &_Mychar, &_Mychar + 1);
}
_Elem* _Set_eback; // saves eback() during one-element putback
_Elem* _Set_egptr; // saves egptr()
};
template <class _Elem, class _Traits>
void swap(basic_filebuf<_Elem, _Traits>& _Left, basic_filebuf<_Elem, _Traits>& _Right) {
_Left.swap(_Right);
}
// CLASS TEMPLATE basic_ifstream
template <class _Elem, class _Traits>
class basic_ifstream : public basic_istream<_Elem, _Traits> { // input stream associated with a C stream
public:
using _Mybase = basic_istream<_Elem, _Traits>;
using _Myfb = basic_filebuf<_Elem, _Traits>;
using _Myios = basic_ios<_Elem, _Traits>;
basic_ifstream() : _Mybase(_STD addressof(_Filebuffer)) {}
explicit basic_ifstream(
const char* _Filename, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot)
: _Mybase(_STD addressof(_Filebuffer)) {
// _Prot is an extension
if (!_Filebuffer.open(_Filename, _Mode | ios_base::in, _Prot)) {
_Myios::setstate(ios_base::failbit);
}
}
explicit basic_ifstream(
const string& _Str, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot)
: basic_ifstream(_Str.c_str(), _Mode, _Prot) {} // _Prot is an extension
explicit basic_ifstream(
const wchar_t* _Filename, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot)
: _Mybase(_STD addressof(_Filebuffer)) {
// in standard as const std::filesystem::path::value_type *; _Prot is an extension
if (!_Filebuffer.open(_Filename, _Mode | ios_base::in, _Prot)) {
_Myios::setstate(ios_base::failbit);
}
}
explicit basic_ifstream(
const wstring& _Str, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot)
: basic_ifstream(_Str.c_str(), _Mode, _Prot) {} // extension
template <class _Ty, enable_if_t<_Is_any_path<_Ty>, int> = 0>
explicit basic_ifstream(
const _Ty& _Path, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot)
: basic_ifstream(_Path.c_str(), _Mode, _Prot) {} // _Prot is an extension
#ifdef _NATIVE_WCHAR_T_DEFINED
explicit basic_ifstream(const unsigned short* _Filename, ios_base::openmode _Mode = ios_base::in,
int _Prot = ios_base::_Default_open_prot)
: _Mybase(_STD addressof(_Filebuffer)) {
// in standard as const std::filesystem::path::value_type *; _Prot is an extension
if (_Filebuffer.open(_Filename, _Mode | ios_base::in, _Prot) == 0) {
_Myios::setstate(ios_base::failbit);
}
}
#endif // _NATIVE_WCHAR_T_DEFINED
explicit basic_ifstream(FILE* _File) : _Mybase(_STD addressof(_Filebuffer)), _Filebuffer(_File) {} // extension
basic_ifstream(basic_ifstream&& _Right) : _Mybase(_STD addressof(_Filebuffer)) {
_Assign_rv(_STD move(_Right));
}
basic_ifstream& operator=(basic_ifstream&& _Right) {
_Assign_rv(_STD move(_Right));
return *this;
}
void _Assign_rv(basic_ifstream&& _Right) {
if (this != _STD addressof(_Right)) {
_Filebuffer.close();
this->swap(_Right);
}
}
void swap(basic_ifstream& _Right) {
if (this != _STD addressof(_Right)) {
_Mybase::swap(_Right);
_Filebuffer.swap(_Right._Filebuffer);
}
}
basic_ifstream(const basic_ifstream&) = delete;
basic_ifstream& operator=(const basic_ifstream&) = delete;
void open(
const wchar_t* _Filename, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot) {
// in standard as const std::filesystem::path::value_type *; _Prot is an extension
if (_Filebuffer.open(_Filename, _Mode | ios_base::in, _Prot)) {
_Myios::clear();
} else {
_Myios::setstate(ios_base::failbit);
}
}
void open(const wstring& _Str, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot) {
// extension
open(_Str.c_str(), _Mode, _Prot);
}
#if _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
template <class _Path_ish = experimental::filesystem::path>
void open(const _Identity_t<_Path_ish>& _Path, ios_base::openmode _Mode = ios_base::in,
int _Prot = ios_base::_Default_open_prot) {
// _Prot is an extension
open(_Path.c_str(), _Mode, _Prot);
}
#endif // _FSTREAM_SUPPORTS_EXPERIMENTAL_FILESYSTEM
#if _HAS_CXX17
template <int = 0, class _Path_ish = filesystem::path>
void open(const _Identity_t<_Path_ish>& _Path, ios_base::openmode _Mode = ios_base::in,
int _Prot = ios_base::_Default_open_prot) {
// _Prot is an extension
open(_Path.c_str(), _Mode, _Prot);
}
#endif // _HAS_CXX17
#if _HAS_OLD_IOSTREAMS_MEMBERS
void open(const wchar_t* _Filename, ios_base::open_mode _Mode) {
// in standard as const std::filesystem::path::value_type *
open(_Filename, static_cast<ios_base::openmode>(_Mode));
}
#endif // _HAS_OLD_IOSTREAMS_MEMBERS
#ifdef _NATIVE_WCHAR_T_DEFINED
void open(const unsigned short* _Filename, ios_base::openmode _Mode = ios_base::in,
int _Prot = ios_base::_Default_open_prot) {
// in standard as const std::filesystem::path::value_type *; _Prot is an extension
if (_Filebuffer.open(_Filename, _Mode | ios_base::in, _Prot) == 0) {
_Myios::setstate(ios_base::failbit);
} else {
_Myios::clear();
}
}
#if _HAS_OLD_IOSTREAMS_MEMBERS
void open(const unsigned short* _Filename, ios_base::open_mode _Mode) {
// in standard as const std::filesystem::path::value_type *
open(_Filename, static_cast<ios_base::openmode>(_Mode));
}
#endif // _HAS_OLD_IOSTREAMS_MEMBERS
#endif // _NATIVE_WCHAR_T_DEFINED
virtual __CLR_OR_THIS_CALL ~basic_ifstream() noexcept {}
_NODISCARD _Myfb* rdbuf() const {
return const_cast<_Myfb*>(_STD addressof(_Filebuffer));
}
_NODISCARD bool is_open() const {
return _Filebuffer.is_open();
}
void open(
const char* _Filename, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot) {
// _Prot is an extension
if (_Filebuffer.open(_Filename, _Mode | ios_base::in, _Prot)) {
_Myios::clear();
} else {
_Myios::setstate(ios_base::failbit);
}
}
void open(const string& _Str, ios_base::openmode _Mode = ios_base::in, int _Prot = ios_base::_Default_open_prot) {
// _Prot is an extension
open(_Str.c_str(), _Mode, _Prot);
}
#if _HAS_OLD_IOSTREAMS_MEMBERS
void open(const char* _Filename, ios_base::open_mode _Mode) {
open(_Filename, static_cast<ios_base::openmode>(_Mode));
}
#endif // _HAS_OLD_IOSTREAMS_MEMBERS
void close() {
if (!_Filebuffer.close()) {
_Myios::setstate(ios_base::failbit);
}
}
private:
_Myfb _Filebuffer;
};
template <class _Elem, class _Traits>
void swap(basic_ifstream<_Elem, _Traits>& _Left, basic_ifstream<_Elem, _Traits>& _Right) {
_Left.swap(_Right);
}
// CLASS TEMPLATE basic_ofstream
template <class _Elem, class _Traits>
class basic_ofstream : public basic_ostream<_Elem, _Traits> { // output stream associated with a C stream
public:
using _Mybase = basic_ostream<_Elem, _Traits>;
using _Myfb = basic_filebuf<_Elem, _Traits>;
using _Myios = basic_ios<_Elem, _Traits>;