ReactOS 0.4.16-dev-937-g7afcd2a
putch.cpp File Reference
#include <conio.h>
#include <corecrt_internal_lowio.h>
#include <corecrt_internal_mbstring.h>
#include <corecrt_internal_stdio.h>
#include <corecrt_internal_ptd_propagation.h>
#include <stdlib.h>
Include dependency graph for putch.cpp:

Go to the source code of this file.

Functions

int __cdecl _putch (int const c)
 
int __cdecl _putch_nolock_internal (int const c, __crt_cached_ptd_host &ptd)
 
int __cdecl _putch_nolock (int const c)
 

Function Documentation

◆ _putch()

int __cdecl _putch ( int const  c)

Definition at line 17 of file putch.cpp.

18{
19 return __acrt_lock_and_call(__acrt_conio_lock, [&]
20 {
21 return _putch_nolock(c);
22 });
23}
@ __acrt_conio_lock
const GLubyte * c
Definition: glext.h:8905
int __cdecl _putch_nolock(int const c)
Definition: putch.cpp:78

◆ _putch_nolock()

int __cdecl _putch_nolock ( int const  c)

Definition at line 78 of file putch.cpp.

79{
80 __crt_cached_ptd_host ptd;
82}
_In_ size_t const _In_ int _In_ bool const _In_ unsigned const _In_ __acrt_rounding_mode const _Inout_ __crt_cached_ptd_host & ptd
Definition: cvt.cpp:355
int __cdecl _putch_nolock_internal(int const c, __crt_cached_ptd_host &ptd)
Definition: putch.cpp:25

Referenced by _putch().

◆ _putch_nolock_internal()

int __cdecl _putch_nolock_internal ( int const  c,
__crt_cached_ptd_host &  ptd 
)

Definition at line 25 of file putch.cpp.

26{
27 __acrt_ptd* const raw_ptd = ptd.get_raw_ptd();
28 unsigned char* const ch_buf = raw_ptd->_putch_buffer;
29 unsigned short* const pch_buf_used = &raw_ptd->_putch_buffer_used;
30
31 // We can only use the character directly if we are sure that the machine
32 // is big-endian.
33 int result = c;
34
35 // Why are we using putwch to write to Console when we could have
36 // written straight away to Console? The problem we have in writing to
37 // Console is that CRT codepage is different from Console codepage and
38 // thus to write to console, we will need to convert the codepage. Here
39 // we can use unicode version of these routines and this way we will
40 // only have to do one conversion and rest will be handled by putwch.
41
42 // The usual way people call putch is character by character. Also
43 // there is no way we can convert partial MBCS to unicode character. To
44 // address this issue, we buffer all the lead bytes and combine them
45 // with trail bytes and then do the conversion.
46 if (*pch_buf_used == 1)
47 {
48 _ASSERTE(isleadbyte(ch_buf[0]) != 0);
49
50 ch_buf[1] = static_cast<unsigned char>(c);
51 }
52 else
53 {
54 ch_buf[0] = static_cast<unsigned char>(c);
55 }
56
57 if (*pch_buf_used == 0 && isleadbyte(ch_buf[0]))
58 {
59 // We still need trail byte, wait for it.
60 *pch_buf_used = 1;
61 }
62 else
63 {
64 wchar_t wchar;
65 if (_mbtowc_internal(&wchar, reinterpret_cast<char const*>(ch_buf), *pch_buf_used + 1, ptd) == -1 ||
67 {
68 result = EOF;
69 }
70
71 // Since we have processed full MBCS character, we should reset ch_buf_used.
72 *pch_buf_used = 0;
73 }
74
75 return result;
76}
#define _ASSERTE(expr)
Definition: crtdbg.h:114
GLuint64EXT * result
Definition: glext.h:11304
#define EOF
Definition: stdio.h:24
#define isleadbyte(_c)
Definition: wchar.h:598
#define c
Definition: ke_i.h:80
int __cdecl _mbtowc_internal(wchar_t *pwc, const char *s, size_t n, __crt_cached_ptd_host &ptd)
Definition: mbtowc.cpp:45
#define WEOF
Definition: conio.h:185
_Check_return_opt_ _CRTIMP wint_t __cdecl _putwch_nolock(wchar_t _WCh)
Definition: putwch.cpp:22
unsigned char _putch_buffer[MB_LEN_MAX]
unsigned short _putch_buffer_used
size_t const wchar_t const wchar
Definition: wcrtomb.cpp:53
#define const
Definition: zconf.h:233

Referenced by _putch_nolock().