Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: runtime/bin/stdin_win.cc

Issue 102123010: Add getter for hasTerminal, terminalColumns and terminalLines on stdout. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add include of thread.h and fix io_patch. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/bin/stdin_macos.cc ('k') | runtime/bin/stdio.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 #include "platform/globals.h"
6 #if defined(TARGET_OS_WINDOWS)
7
8 #include "bin/stdin.h"
9
10
11 namespace dart {
12 namespace bin {
13
14 int Stdin::ReadByte() {
15 HANDLE h = GetStdHandle(STD_INPUT_HANDLE);
16 uint8_t buffer[1];
17 DWORD read = 0;
18 int c = -1;
19 if (ReadFile(h, buffer, 1, &read, NULL) && read == 1) {
20 c = buffer[0];
21 }
22 return c;
23 }
24
25
26 bool Stdin::GetEchoMode() {
27 HANDLE h = GetStdHandle(STD_INPUT_HANDLE);
28 DWORD mode;
29 if (!GetConsoleMode(h, &mode)) return false;
30 return (mode & ENABLE_ECHO_INPUT) != 0;
31 }
32
33
34 void Stdin::SetEchoMode(bool enabled) {
35 HANDLE h = GetStdHandle(STD_INPUT_HANDLE);
36 DWORD mode;
37 if (!GetConsoleMode(h, &mode)) return;
38 if (enabled) {
39 mode |= ENABLE_ECHO_INPUT;
40 } else {
41 mode &= ~ENABLE_ECHO_INPUT;
42 }
43 SetConsoleMode(h, mode);
44 }
45
46
47 bool Stdin::GetLineMode() {
48 HANDLE h = GetStdHandle(STD_INPUT_HANDLE);
49 DWORD mode;
50 if (!GetConsoleMode(h, &mode)) return false;
51 return (mode & ENABLE_LINE_INPUT) != 0;
52 }
53
54
55 void Stdin::SetLineMode(bool enabled) {
56 HANDLE h = GetStdHandle(STD_INPUT_HANDLE);
57 DWORD mode;
58 if (!GetConsoleMode(h, &mode)) return;
59 if (enabled) {
60 mode |= ENABLE_LINE_INPUT;
61 } else {
62 mode &= ~ENABLE_LINE_INPUT;
63 }
64 SetConsoleMode(h, mode);
65 }
66
67 } // namespace bin
68 } // namespace dart
69
70 #endif // defined(TARGET_OS_WINDOWS)
OLDNEW
« no previous file with comments | « runtime/bin/stdin_macos.cc ('k') | runtime/bin/stdio.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698