ReactOS 0.4.16-dev-937-g7afcd2a
fgetwc.cpp File Reference
Include dependency graph for fgetwc.cpp:

Go to the source code of this file.

Functions

wint_t __cdecl _fgetwc_nolock (FILE *const public_stream)
 
wint_t __cdecl _getwc_nolock (FILE *const stream)
 
wint_t __cdecl fgetwc (FILE *const stream)
 
wint_t __cdecl getwc (FILE *const stream)
 
wint_t __cdecl _fgetwchar ()
 
wint_t __cdecl getwchar ()
 

Function Documentation

◆ _fgetwc_nolock()

wint_t __cdecl _fgetwc_nolock ( FILE *const  public_stream)

Definition at line 14 of file fgetwc.cpp.

15{
16 __crt_stdio_stream const stream(public_stream);
17
18 // If the stream is backed by a real file and is open in a Unicode text mode,
19 // we need to read two bytes (note that we read two bytes for both UTF-8 and
20 // UTF-16 backed streams, since lowio translates UTF-8 to UTF-16 when we read.
21 if (!stream.is_string_backed() &&
23 {
24 wchar_t wc;
25
26 // Compose the wide character by reading byte-by-byte from the stream:
27 char* const wc_first = reinterpret_cast<char*>(&wc);
28 char* const wc_last = wc_first + sizeof(wc);
29
30 for (char* it = wc_first; it != wc_last; ++it)
31 {
32 int const c = _getc_nolock(stream.public_stream());
33 if (c == EOF)
34 return WEOF;
35
36 *it = static_cast<char>(c);
37 }
38
39 return wc;
40 }
41
42 if (!stream.is_string_backed() &&
43 (_osfile_safe(_fileno(stream.public_stream())) & FTEXT))
44 {
45 int size = 1;
46 int ch;
47 char mbc[4];
48 wchar_t wch;
49
50 /* text (multi-byte) mode */
51 if ((ch = _getc_nolock(stream.public_stream())) == EOF)
52 return WEOF;
53
54 mbc[0] = static_cast<char>(ch);
55
56 if (isleadbyte(static_cast<unsigned char>(mbc[0])))
57 {
58 if ((ch = _getc_nolock(stream.public_stream())) == EOF)
59 {
60 ungetc(mbc[0], stream.public_stream());
61 return WEOF;
62 }
63 mbc[1] = static_cast<char>(ch);
64 size = 2;
65 }
66
67 if (mbtowc(&wch, mbc, size) == -1)
68 {
69 // Conversion failed! Set errno and return failure:
70 errno = EILSEQ;
71 return WEOF;
72 }
73
74 return wch;
75 }
76
77 // binary (Unicode) mode
78 if (stream->_cnt >= static_cast<int>(sizeof(wchar_t)))
79 {
80 stream->_cnt -= static_cast<int>(sizeof(wchar_t));
81 return *reinterpret_cast<wchar_t*&>(stream->_ptr)++;
82 }
83 else
84 {
85 return static_cast<wint_t>(__acrt_stdio_refill_and_read_wide_nolock(stream.public_stream()));
86 }
87}
int wint_t
Definition: _apple.h:38
int __cdecl __acrt_stdio_refill_and_read_wide_nolock(FILE *const stream)
Definition: _filbuf.cpp:185
GLsizeiptr size
Definition: glext.h:5919
const GLubyte * c
Definition: glext.h:8905
_Check_return_ _CRTIMP int __cdecl _fileno(_In_ FILE *_File)
#define EOF
Definition: stdio.h:24
#define _getc_nolock(_stream)
Definition: stdio.h:1144
_Check_return_opt_ _CRTIMP_ALT int __cdecl ungetc(_In_ int _Ch, _Inout_ FILE *_File)
#define isleadbyte(_c)
Definition: wchar.h:598
#define c
Definition: ke_i.h:80
#define WEOF
Definition: conio.h:185
#define errno
Definition: errno.h:18
#define EILSEQ
Definition: errno.h:109
#define _textmode_safe(i)
Definition: internal.h:81
#define _osfile_safe(i)
Definition: internal.h:78
Definition: parse.h:23
#define mbtowc(wp, cp, len)
Definition: wchar.h:155
#define wchar_t
Definition: wchar.h:102
char mbc

Referenced by _getwc_nolock(), and fgetwc().

◆ _fgetwchar()

wint_t __cdecl _fgetwchar ( void  )

Definition at line 127 of file fgetwc.cpp.

128{
129 return fgetwc(stdin);
130}
wint_t __cdecl fgetwc(FILE *const stream)
Definition: fgetwc.cpp:98
#define stdin
Definition: stdio.h:98

Referenced by getwchar().

◆ _getwc_nolock()

wint_t __cdecl _getwc_nolock ( FILE *const  stream)

Definition at line 91 of file fgetwc.cpp.

92{
93 return _fgetwc_nolock(stream);
94}
wint_t __cdecl _fgetwc_nolock(FILE *const public_stream)
Definition: fgetwc.cpp:14

◆ fgetwc()

wint_t __cdecl fgetwc ( FILE *const  stream)

Definition at line 98 of file fgetwc.cpp.

99{
100 _VALIDATE_RETURN(stream != nullptr, EINVAL, WEOF);
101
102 wint_t return_value = 0;
103
105 __try
106 {
107 return_value = _fgetwc_nolock(stream);
108 }
110 {
112 }
114
115 return return_value;
116}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
_CRTIMP void __cdecl _unlock_file(_Inout_ FILE *_File)
_CRTIMP void __cdecl _lock_file(_Inout_ FILE *_File)
#define __try
Definition: pseh2_64.h:188
#define __endtry
Definition: pseh2_64.h:191
#define __finally
Definition: pseh2_64.h:190

Referenced by _fgetwchar(), and getwc().

◆ getwc()

wint_t __cdecl getwc ( FILE *const  stream)

Definition at line 120 of file fgetwc.cpp.

121{
122 return fgetwc(stream);
123}

◆ getwchar()

wint_t __cdecl getwchar ( void  )

Definition at line 134 of file fgetwc.cpp.

135{
136 return _fgetwchar();
137}
wint_t __cdecl _fgetwchar()
Definition: fgetwc.cpp:127