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
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#include "precomp.h"
static HANDLE vhStdIn = INVALID_HANDLE_VALUE;
static HANDLE vhStdOut = INVALID_HANDLE_VALUE;
static BOOL vfConsoleIn = FALSE;
static BOOL vfConsoleOut = FALSE;
static CONSOLE_SCREEN_BUFFER_INFO vcsbiInfo;
extern "C" HRESULT DAPI ConsoleInitialize()
{
Assert(INVALID_HANDLE_VALUE == vhStdOut);
HRESULT hr = S_OK;
UINT er;
vhStdIn = ::GetStdHandle(STD_INPUT_HANDLE);
if (INVALID_HANDLE_VALUE == vhStdIn)
{
ExitOnLastError(hr, "failed to open stdin");
}
vhStdOut = ::GetStdHandle(STD_OUTPUT_HANDLE);
if (INVALID_HANDLE_VALUE == vhStdOut)
{
ExitOnLastError(hr, "failed to open stdout");
}
// check if we have a std in on the console
if (::GetConsoleScreenBufferInfo(vhStdIn, &vcsbiInfo))
{
vfConsoleIn = TRUE;
}
else
{
er = ::GetLastError();
if (ERROR_INVALID_HANDLE == er)
{
vfConsoleIn= FALSE;
hr = S_OK;
}
else
{
ExitOnWin32Error(er, hr, "failed to get input console screen buffer info");
}
}
if (::GetConsoleScreenBufferInfo(vhStdOut, &vcsbiInfo))
{
vfConsoleOut = TRUE;
}
else // no console
{
memset(&vcsbiInfo, 0, sizeof(vcsbiInfo));
er = ::GetLastError();
if (ERROR_INVALID_HANDLE == er)
{
vfConsoleOut = FALSE;
hr = S_OK;
}
else
{
ExitOnWin32Error(er, hr, "failed to get output console screen buffer info");
}
}
LExit:
if (FAILED(hr))
{
if (INVALID_HANDLE_VALUE != vhStdOut)
{
::CloseHandle(vhStdOut);
}
if (INVALID_HANDLE_VALUE != vhStdIn && vhStdOut != vhStdIn)
{
::CloseHandle(vhStdIn);
}
vhStdOut = INVALID_HANDLE_VALUE;
vhStdIn = INVALID_HANDLE_VALUE;
}
return hr;
}
extern "C" void DAPI ConsoleUninitialize()
{
memset(&vcsbiInfo, 0, sizeof(vcsbiInfo));
if (INVALID_HANDLE_VALUE != vhStdOut)
{
::CloseHandle(vhStdOut);
}
if (INVALID_HANDLE_VALUE != vhStdIn && vhStdOut != vhStdIn)
{
::CloseHandle(vhStdIn);
}
vhStdOut = INVALID_HANDLE_VALUE;
vhStdIn = INVALID_HANDLE_VALUE;
}
extern "C" void DAPI ConsoleGreen()
{
AssertSz(INVALID_HANDLE_VALUE != vhStdOut, "ConsoleInitialize() has not been called");
if (vfConsoleOut)
{
::SetConsoleTextAttribute(vhStdOut, FOREGROUND_GREEN | FOREGROUND_INTENSITY);
}
}
extern "C" void DAPI ConsoleRed()
{
AssertSz(INVALID_HANDLE_VALUE != vhStdOut, "ConsoleInitialize() has not been called");
if (vfConsoleOut)
{
::SetConsoleTextAttribute(vhStdOut, FOREGROUND_RED | FOREGROUND_INTENSITY);
}
}
extern "C" void DAPI ConsoleYellow()
{
AssertSz(INVALID_HANDLE_VALUE != vhStdOut, "ConsoleInitialize() has not been called");
if (vfConsoleOut)
{
::SetConsoleTextAttribute(vhStdOut, FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_INTENSITY);
}
}
extern "C" void DAPI ConsoleNormal()
{
AssertSz(INVALID_HANDLE_VALUE != vhStdOut, "ConsoleInitialize() has not been called");
if (vfConsoleOut)
{
::SetConsoleTextAttribute(vhStdOut, vcsbiInfo.wAttributes);
}
}
/********************************************************************
ConsoleWrite - full color printfA without libc
NOTE: use FormatMessage formatting ("%1" or "%1!d!") not plain printf formatting ("%ls" or "%d")
assumes already in normal color and resets the screen to normal color
********************************************************************/
extern "C" HRESULT DAPI ConsoleWrite(
CONSOLE_COLOR cc,
__in_z __format_string LPCSTR szFormat,
...
)
{
AssertSz(INVALID_HANDLE_VALUE != vhStdOut, "ConsoleInitialize() has not been called");
HRESULT hr = S_OK;
LPSTR pszOutput = NULL;
DWORD cchOutput = 0;
DWORD cbWrote = 0;
DWORD cbTotal = 0;
// set the color
switch (cc)
{
case CONSOLE_COLOR_NORMAL: break; // do nothing
case CONSOLE_COLOR_RED: ConsoleRed(); break;
case CONSOLE_COLOR_YELLOW: ConsoleYellow(); break;
case CONSOLE_COLOR_GREEN: ConsoleGreen(); break;
}
va_list args;
va_start(args, szFormat);
hr = StrAnsiAllocFormattedArgs(&pszOutput, szFormat, args);
va_end(args);
ExitOnFailure(hr, "failed to format message: \"%s\"", szFormat);
cchOutput = lstrlenA(pszOutput);
while (cbTotal < (sizeof(*pszOutput) * cchOutput))
{
if (!::WriteFile(vhStdOut, reinterpret_cast<BYTE*>(pszOutput) + cbTotal, cchOutput * sizeof(*pszOutput) - cbTotal, &cbWrote, NULL))
{
ExitOnLastError(hr, "failed to write output to console: %s", pszOutput);
}
cbTotal += cbWrote;
}
// reset the color to normal
if (CONSOLE_COLOR_NORMAL != cc)
{
ConsoleNormal();
}
LExit:
ReleaseStr(pszOutput);
return hr;
}
/********************************************************************
ConsoleWriteLine - full color printfA plus newline without libc
NOTE: use FormatMessage formatting ("%1" or "%1!d!") not plain printf formatting ("%ls" or "%d")
assumes already in normal color and resets the screen to normal color
********************************************************************/
extern "C" HRESULT DAPI ConsoleWriteLine(
CONSOLE_COLOR cc,
__in_z __format_string LPCSTR szFormat,
...
)
{
AssertSz(INVALID_HANDLE_VALUE != vhStdOut, "ConsoleInitialize() has not been called");
HRESULT hr = S_OK;
LPSTR pszOutput = NULL;
DWORD cchOutput = 0;
DWORD cbWrote = 0;
DWORD cbTotal = 0;
LPCSTR szNewLine = "\r\n";
// set the color
switch (cc)
{
case CONSOLE_COLOR_NORMAL: break; // do nothing
case CONSOLE_COLOR_RED: ConsoleRed(); break;
case CONSOLE_COLOR_YELLOW: ConsoleYellow(); break;
case CONSOLE_COLOR_GREEN: ConsoleGreen(); break;
}
va_list args;
va_start(args, szFormat);
hr = StrAnsiAllocFormattedArgs(&pszOutput, szFormat, args);
va_end(args);
ExitOnFailure(hr, "failed to format message: \"%s\"", szFormat);
//
// write the string
//
cchOutput = lstrlenA(pszOutput);
while (cbTotal < (sizeof(*pszOutput) * cchOutput))
{
if (!::WriteFile(vhStdOut, reinterpret_cast<BYTE*>(pszOutput) + cbTotal, cchOutput * sizeof(*pszOutput) - cbTotal, &cbWrote, NULL))
ExitOnLastError(hr, "failed to write output to console: %s", pszOutput);
cbTotal += cbWrote;
}
//
// write the newline
//
if (!::WriteFile(vhStdOut, reinterpret_cast<const BYTE*>(szNewLine), 2, &cbWrote, NULL))
{
ExitOnLastError(hr, "failed to write newline to console");
}
// reset the color to normal
if (CONSOLE_COLOR_NORMAL != cc)
{
ConsoleNormal();
}
LExit:
ReleaseStr(pszOutput);
return hr;
}
/********************************************************************
ConsoleWriteError - display an error to the screen
NOTE: use FormatMessage formatting ("%1" or "%1!d!") not plain printf formatting ("%s" or "%d")
********************************************************************/
HRESULT ConsoleWriteError(
HRESULT hrError,
CONSOLE_COLOR cc,
__in_z __format_string LPCSTR szFormat,
...
)
{
HRESULT hr = S_OK;
LPSTR pszMessage = NULL;
va_list args;
va_start(args, szFormat);
hr = StrAnsiAllocFormattedArgs(&pszMessage, szFormat, args);
va_end(args);
ExitOnFailure(hr, "failed to format error message: \"%s\"", szFormat);
if (FAILED(hrError))
{
hr = ConsoleWriteLine(cc, "Error 0x%x: %s", hrError, pszMessage);
}
else
{
hr = ConsoleWriteLine(cc, "Error: %s", pszMessage);
}
LExit:
ReleaseStr(pszMessage);
return hr;
}
/********************************************************************
ConsoleReadW - get console input without libc
NOTE: only supports reading ANSI characters
********************************************************************/
extern "C" HRESULT DAPI ConsoleReadW(
__deref_out_z LPWSTR* ppwzBuffer
)
{
AssertSz(INVALID_HANDLE_VALUE != vhStdIn, "ConsoleInitialize() has not been called");
Assert(ppwzBuffer);
HRESULT hr = S_OK;
LPSTR psz = NULL;
DWORD cch = 0;
DWORD cchRead = 0;
DWORD cchTotalRead = 0;
cch = 64;
hr = StrAnsiAlloc(&psz, cch);
ExitOnFailure(hr, "failed to allocate memory to read from console");
// loop until we read the \r\n from the console
for (;;)
{
// read one character at a time, since that seems to be the only way to make this work
if (!::ReadFile(vhStdIn, psz + cchTotalRead, 1, &cchRead, NULL))
ExitOnLastError(hr, "failed to read string from console");
cchTotalRead += cchRead;
if (1 < cchTotalRead && '\r' == psz[cchTotalRead - 2] || '\n' == psz[cchTotalRead - 1])
{
psz[cchTotalRead - 2] = '\0'; // chop off the \r\n
break;
}
else if (0 == cchRead) // nothing more was read
{
psz[cchTotalRead] = '\0'; // null termintate and bail
break;
}
if (cchTotalRead == cch)
{
cch *= 2; // double everytime we run out of space
hr = StrAnsiAlloc(&psz, cch);
ExitOnFailure(hr, "failed to allocate memory to read from console");
}
}
hr = StrAllocStringAnsi(ppwzBuffer, psz, 0, CP_ACP);
LExit:
ReleaseStr(psz);
return hr;
}
/********************************************************************
ConsoleReadNonBlockingW - Read from the console without blocking
Won't work for redirected files (exe < txtfile), but will work for stdin redirected to
an anonymous or named pipe
if (fReadLine), stop reading immediately when \r\n is found
*********************************************************************/
extern "C" HRESULT DAPI ConsoleReadNonBlockingW(
__deref_out_ecount_opt(*pcchSize) LPWSTR* ppwzBuffer,
__out DWORD* pcchSize,
BOOL fReadLine
)
{
Assert(INVALID_HANDLE_VALUE != vhStdIn && pcchSize);
HRESULT hr = S_OK;
LPSTR psz = NULL;
ExitOnNull(ppwzBuffer, hr, E_INVALIDARG, "Failed to read from console because buffer was not provided");
DWORD dwRead;
DWORD dwNumInput;
DWORD cchTotal = 0;
DWORD cch = 8;
DWORD cchRead = 0;
DWORD cchTotalRead = 0;
DWORD dwIndex = 0;
DWORD er;
INPUT_RECORD ir;
WCHAR chIn;
*ppwzBuffer = NULL;
*pcchSize = 0;
// If we really have a handle to stdin, and not the end of a pipe
if (!PeekNamedPipe(vhStdIn, NULL, 0, NULL, &dwRead, NULL))
{
er = ::GetLastError();
if (ERROR_INVALID_HANDLE != er)
{
ExitFunction1(hr = HRESULT_FROM_WIN32(er));
}
if (!GetNumberOfConsoleInputEvents(vhStdIn, &dwRead))
{
ExitOnLastError(hr, "failed to peek at console input");
}
if (0 == dwRead)
{
ExitFunction1(hr = S_FALSE);
}
for (/* dwRead from num of input events */; dwRead > 0; dwRead--)
{
if (!ReadConsoleInputW(vhStdIn, &ir, 1, &dwNumInput))
{
ExitOnLastError(hr, "Failed to read input from console");
}
// If what we have is a KEY_EVENT, and that event signifies keyUp, we're interested
if (KEY_EVENT == ir.EventType && FALSE == ir.Event.KeyEvent.bKeyDown)
{
chIn = ir.Event.KeyEvent.uChar.UnicodeChar;
if (0 == cchTotal)
{
cchTotal = cch;
cch *= 2;
StrAlloc(ppwzBuffer, cch);
}
(*ppwzBuffer)[dwIndex] = chIn;
if (fReadLine && (L'\r' == (*ppwzBuffer)[dwIndex - 1] && L'\n' == (*ppwzBuffer)[dwIndex]))
{
*ppwzBuffer[dwIndex - 1] = L'\0';
dwIndex -= 1;
break;
}
++dwIndex;
cchTotal--;
}
}
*pcchSize = dwIndex;
}
else
{
// otherwise, the peek worked, and we have the end of a pipe
if (0 == dwRead)
ExitFunction1(hr = S_FALSE);
cch = 8;
hr = StrAnsiAlloc(&psz, cch);
ExitOnFailure(hr, "failed to allocate memory to read from console");
for (/*dwRead from PeekNamedPipe*/; dwRead > 0; dwRead--)
{
// read one character at a time, since that seems to be the only way to make this work
if (!::ReadFile(vhStdIn, psz + cchTotalRead, 1, &cchRead, NULL))
{
ExitOnLastError(hr, "failed to read string from console");
}
cchTotalRead += cchRead;
if (fReadLine && '\r' == psz[cchTotalRead - 1] && '\n' == psz[cchTotalRead])
{
psz[cchTotalRead - 1] = '\0'; // chop off the \r\n
cchTotalRead -= 1;
break;
}
else if (0 == cchRead) // nothing more was read
{
psz[cchTotalRead] = '\0'; // null termintate and bail
break;
}
if (cchTotalRead == cch)
{
cch *= 2; // double everytime we run out of space
hr = StrAnsiAlloc(&psz, cch);
ExitOnFailure(hr, "failed to allocate memory to read from console");
}
}
*pcchSize = cchTotalRead;
hr = StrAllocStringAnsi(ppwzBuffer, psz, cchTotalRead, CP_ACP);
}
LExit:
ReleaseStr(psz);
return hr;
}
/********************************************************************
ConsoleReadStringA - get console input without libc
*********************************************************************/
extern "C" HRESULT DAPI ConsoleReadStringA(
__deref_out_ecount_part(cchCharBuffer,*pcchNumCharReturn) LPSTR* ppszCharBuffer,
CONST DWORD cchCharBuffer,
__out DWORD* pcchNumCharReturn
)
{
AssertSz(INVALID_HANDLE_VALUE != vhStdIn, "ConsoleInitialize() has not been called");
HRESULT hr = S_OK;
if (ppszCharBuffer && (pcchNumCharReturn || cchCharBuffer < 2))
{
DWORD iRead = 1;
DWORD iReadCharTotal = 0;
if (ppszCharBuffer && *ppszCharBuffer == NULL)
{
do
{
hr = StrAnsiAlloc(ppszCharBuffer, cchCharBuffer * iRead);
ExitOnFailure(hr, "failed to allocate memory for ConsoleReadStringW");
// ReadConsoleW will not return until <Return>, the last two chars are 13 and 10.
if (!::ReadConsoleA(vhStdIn, *ppszCharBuffer + iReadCharTotal, cchCharBuffer, pcchNumCharReturn, NULL) || *pcchNumCharReturn == 0)
{
ExitOnLastError(hr, "failed to read string from console");
}
iReadCharTotal += *pcchNumCharReturn;
iRead += 1;
}
while((*ppszCharBuffer)[iReadCharTotal - 1] != 10 || (*ppszCharBuffer)[iReadCharTotal - 2] != 13);
*pcchNumCharReturn = iReadCharTotal;
}
else
{
if (!::ReadConsoleA(vhStdIn, *ppszCharBuffer, cchCharBuffer, pcchNumCharReturn, NULL) ||
*pcchNumCharReturn > cchCharBuffer || *pcchNumCharReturn == 0)
{
ExitOnLastError(hr, "failed to read string from console");
}
if ((*ppszCharBuffer)[*pcchNumCharReturn - 1] != 10 ||
(*ppszCharBuffer)[*pcchNumCharReturn - 2] != 13)
{
// need read more
hr = ERROR_MORE_DATA;
}
}
}
else
{
hr = E_INVALIDARG;
}
LExit:
return hr;
}
/********************************************************************
ConsoleReadStringW - get console input without libc
*********************************************************************/
extern "C" HRESULT DAPI ConsoleReadStringW(
__deref_out_ecount_part(cchCharBuffer,*pcchNumCharReturn) LPWSTR* ppwzCharBuffer,
const DWORD cchCharBuffer,
__out DWORD* pcchNumCharReturn
)
{
AssertSz(INVALID_HANDLE_VALUE != vhStdIn, "ConsoleInitialize() has not been called");
HRESULT hr = S_OK;
if (ppwzCharBuffer && (pcchNumCharReturn || cchCharBuffer < 2))
{
DWORD iRead = 1;
DWORD iReadCharTotal = 0;
if (*ppwzCharBuffer == NULL)
{
do
{
hr = StrAlloc(ppwzCharBuffer, cchCharBuffer * iRead);
ExitOnFailure(hr, "failed to allocate memory for ConsoleReadStringW");
// ReadConsoleW will not return until <Return>, the last two chars are 13 and 10.
if (!::ReadConsoleW(vhStdIn, *ppwzCharBuffer + iReadCharTotal, cchCharBuffer, pcchNumCharReturn, NULL) || *pcchNumCharReturn == 0)
{
ExitOnLastError(hr, "failed to read string from console");
}
iReadCharTotal += *pcchNumCharReturn;
iRead += 1;
}
while((*ppwzCharBuffer)[iReadCharTotal - 1] != 10 || (*ppwzCharBuffer)[iReadCharTotal - 2] != 13);
*pcchNumCharReturn = iReadCharTotal;
}
else
{
if (!::ReadConsoleW(vhStdIn, *ppwzCharBuffer, cchCharBuffer, pcchNumCharReturn, NULL) ||
*pcchNumCharReturn > cchCharBuffer || *pcchNumCharReturn == 0)
{
ExitOnLastError(hr, "failed to read string from console");
}
if ((*ppwzCharBuffer)[*pcchNumCharReturn - 1] != 10 ||
(*ppwzCharBuffer)[*pcchNumCharReturn - 2] != 13)
{
// need read more
hr = ERROR_MORE_DATA;
}
}
}
else
{
hr = E_INVALIDARG;
}
LExit:
return hr;
}
/********************************************************************
ConsoleSetReadHidden - set console input no echo
*********************************************************************/
extern "C" HRESULT DAPI ConsoleSetReadHidden(void)
{
AssertSz(INVALID_HANDLE_VALUE != vhStdIn, "ConsoleInitialize() has not been called");
HRESULT hr = S_OK;
::FlushConsoleInputBuffer(vhStdIn);
if (!::SetConsoleMode(vhStdIn, ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT))
{
ExitOnLastError(hr, "failed to set console input mode to be hidden");
}
LExit:
return hr;
}
/********************************************************************
ConsoleSetReadNormal - reset to echo
*********************************************************************/
extern "C" HRESULT DAPI ConsoleSetReadNormal(void)
{
AssertSz(INVALID_HANDLE_VALUE != vhStdIn, "ConsoleInitialize() has not been called");
HRESULT hr = S_OK;
if (!::SetConsoleMode(vhStdIn, ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT | ENABLE_PROCESSED_INPUT | ENABLE_MOUSE_INPUT))
{
ExitOnLastError(hr, "failed to set console input mode to be normal");
}
LExit:
return hr;
}
|