ReactOS 0.4.16-dev-937-g7afcd2a
cgetws.cpp File Reference
#include <conio.h>
#include <corecrt_internal_lowio.h>
#include <corecrt_internal_securecrt.h>
#include <stdlib.h>
Include dependency graph for cgetws.cpp:

Go to the source code of this file.

Functions

errno_t __cdecl _cgetws_s (wchar_t *const string_buffer, size_t const size_in_words, size_t *const size_read)
 
wchar_t *__cdecl _cgetws (_Inout_z_ wchar_t *const string)
 

Variables

wchar_t __console_wchar_buffer = 0
 
int __console_wchar_buffer_used = 0
 

Function Documentation

◆ _cgetws()

wchar_t *__cdecl _cgetws ( _Inout_z_ wchar_t *const  string)

Definition at line 138 of file cgetws.cpp.

139{
140 _VALIDATE_CLEAR_OSSERR_RETURN(string != nullptr, EINVAL, nullptr);
141 _VALIDATE_CLEAR_OSSERR_RETURN(string[0] > 0, EINVAL, nullptr);
142
143 size_t const size_in_words = static_cast<size_t>(string[0]);
144
145 size_t size_read = 0;
146 // warning 26018: Potential overflow of null terminated buffer using expression string+2
147 // Suppressing warning since _cgetws is purposefully unsafe.
148#pragma warning(suppress:__WARNING_POTENTIAL_BUFFER_OVERFLOW_NULLTERMINATED)
149 errno_t const result = _cgetws_s(string + 2, size_in_words, &size_read);
150
151 // warning 26018: Potential overflow of null terminated buffer using expression string[1]
152 // Suppressing warning since _cgetws is purposefully unsafe.
153#pragma warning(suppress:__WARNING_POTENTIAL_BUFFER_OVERFLOW_NULLTERMINATED)
154 string[1] = static_cast<wchar_t>(size_read);
155
156 return result == 0 ? string + 2 : nullptr;
157}
#define EINVAL
Definition: acclib.h:90
errno_t __cdecl _cgetws_s(wchar_t *const string_buffer, size_t const size_in_words, size_t *const size_read)
Definition: cgetws.cpp:25
GLuint64EXT * result
Definition: glext.h:11304
#define _VALIDATE_CLEAR_OSSERR_RETURN(expr, errorcode, retexpr)
int errno_t
Definition: corecrt.h:615

◆ _cgetws_s()

errno_t __cdecl _cgetws_s ( wchar_t *const  string_buffer,
size_t const  size_in_words,
size_t *const  size_read 
)

Definition at line 25 of file cgetws.cpp.

26{
27 _VALIDATE_CLEAR_OSSERR_RETURN_ERRCODE(string_buffer != nullptr, EINVAL);
29 _RESET_STRING(string_buffer, size_in_words);
30
31 _VALIDATE_CLEAR_OSSERR_RETURN_ERRCODE(size_read != nullptr, EINVAL);
32
34 errno_t retval = 0;
35 __try
36 {
37 wchar_t* string = string_buffer;
38
39 // We need to decrement size_in_words because ReadConsole reads as many
40 // characters as the parameter passed. It doesn't null-terminate:
41 size_t size_remaining = size_in_words - 1;
42 *size_read = 0;
43
44 // If size_in_words was 1, then there's only room for the null terminator:
45 if (size_remaining == 0)
46 __leave;
47
48 // If there is a buffered character, first fill with the buffered
49 // character then proceed with reading from the console:
51 {
52 *string++ = __console_wchar_buffer;
53 --size_remaining;
54 (*size_read)++;
55
56 if (__console_wchar_buffer == L'\0')
57 size_remaining = 0;
58
60 }
61
62 if (size_remaining == 0)
63 __leave;
64
65 /*
66 * __dcrt_lowio_console_input_handle, the handle to the console input, is created the first
67 * time that either _getch() or _cgets() or _kbhit() is called.
68 */
69
71 {
73 retval = errno;
74 __leave;
75 }
76
77 ULONG old_state;
80
81 ULONG wchars_read;
82 BOOL read_console_result = __dcrt_read_console(
83 string,
84 static_cast<DWORD>(size_remaining),
85 &wchars_read);
86
87 if (!read_console_result)
88 {
90 retval = errno;
91 __leave;
92 }
93
94 // Set the length of the string and null terminate it:
95 if (wchars_read >= 2 && string[wchars_read - 2] == L'\r')
96 {
97 *size_read += wchars_read - 2;
98 string[wchars_read - 2] = L'\0';
99 }
100 else if (wchars_read == size_remaining && string[wchars_read - 1] == L'\r')
101 {
102 // Special case 1: \r\n straddles the boundary:
103 string[wchars_read - 1] = L'\0';
104 *size_read += wchars_read - 1;
105 }
106 else if (wchars_read == 1 && string[0] == L'\n')
107 {
108 // Special case 2: Read a single \n:
109 string[0] = L'\0';
110 *size_read += 0;
111 }
112 else
113 {
114 *size_read += wchars_read;
115 string[wchars_read] = L'\0';
116 }
117
119 }
121 {
123 }
125
126 return retval;
127}
int __console_wchar_buffer_used
Definition: cgetws.cpp:19
wchar_t __console_wchar_buffer
Definition: cgetws.cpp:18
void __cdecl __acrt_unlock(_In_ __acrt_lock_id lock)
Definition: locks.cpp:57
@ __acrt_conio_lock
void __cdecl __acrt_errno_map_os_error(unsigned long)
Definition: errno.cpp:91
#define _RESET_STRING(_String, _Size)
__acrt_lock(__acrt_heap_lock)
#define FALSE
Definition: types.h:117
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
BOOL __cdecl __dcrt_read_console(_Out_ LPVOID lpBuffer, _In_ DWORD nNumberOfCharsToRead, _Out_ LPDWORD lpNumberOfCharsRead)
Definition: initconin.cpp:85
BOOL __cdecl __dcrt_get_input_console_mode(_Out_ LPDWORD lpMode)
Definition: initconin.cpp:136
BOOL __cdecl __dcrt_lowio_ensure_console_input_initialized()
Definition: initconin.cpp:31
BOOL __cdecl __dcrt_set_input_console_mode(_In_ DWORD dwMode)
Definition: initconin.cpp:150
#define _VALIDATE_CLEAR_OSSERR_RETURN_ERRCODE(expr, errorcode)
#define L(x)
Definition: ntvdm.h:50
#define __try
Definition: pseh2_64.h:188
#define __leave
Definition: pseh2_64.h:192
#define __endtry
Definition: pseh2_64.h:191
#define __finally
Definition: pseh2_64.h:190
#define errno
Definition: errno.h:18
uint32_t ULONG
Definition: typedefs.h:59
int retval
Definition: wcstombs.cpp:91
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define ENABLE_ECHO_INPUT
Definition: wincon.h:80
#define ENABLE_LINE_INPUT
Definition: wincon.h:79
#define ENABLE_PROCESSED_INPUT
Definition: wincon.h:78

Referenced by _cgets_s(), and _cgetws().

Variable Documentation

◆ __console_wchar_buffer

wchar_t __console_wchar_buffer = 0

Definition at line 18 of file cgetws.cpp.

Referenced by _cgets_s(), and _cgetws_s().

◆ __console_wchar_buffer_used

int __console_wchar_buffer_used = 0

Definition at line 19 of file cgetws.cpp.

Referenced by _cgets_s(), and _cgetws_s().