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

Side by Side Diff: runtime/bin/stdio_patch.dart

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/stdio_macos.cc ('k') | runtime/bin/stdio_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 patch class _StdIOUtils { 5 patch class _StdIOUtils {
6 static Stdin _getStdioInputStream() { 6 static Stdin _getStdioInputStream() {
7 switch (_getStdioHandleType(0)) { 7 switch (_getStdioHandleType(0)) {
8 case _STDIO_HANDLE_TYPE_TERMINAL: 8 case _STDIO_HANDLE_TYPE_TERMINAL:
9 case _STDIO_HANDLE_TYPE_PIPE: 9 case _STDIO_HANDLE_TYPE_PIPE:
10 case _STDIO_HANDLE_TYPE_SOCKET: 10 case _STDIO_HANDLE_TYPE_SOCKET:
11 return new Stdin._(new _Socket._readPipe(0)); 11 return new Stdin._(new _Socket._readPipe(0));
12 case _STDIO_HANDLE_TYPE_FILE: 12 case _STDIO_HANDLE_TYPE_FILE:
13 return new Stdin._(new _FileStream.forStdin()); 13 return new Stdin._(new _FileStream.forStdin());
14 default: 14 default:
15 throw new FileSystemException("Unsupported stdin type"); 15 throw new FileSystemException("Unsupported stdin type");
16 } 16 }
17 } 17 }
18 18
19 static IOSink _getStdioOutputStream(int fd) { 19 static _getStdioOutputStream(int fd) {
20 wrap(sink) {
21 if (fd == 1) {
22 return new Stdout._(sink);
23 } else {
24 return new _StdSink(sink);
25 }
26 }
20 assert(fd == 1 || fd == 2); 27 assert(fd == 1 || fd == 2);
21 switch (_getStdioHandleType(fd)) { 28 switch (_getStdioHandleType(fd)) {
22 case _STDIO_HANDLE_TYPE_TERMINAL: 29 case _STDIO_HANDLE_TYPE_TERMINAL:
23 case _STDIO_HANDLE_TYPE_PIPE: 30 case _STDIO_HANDLE_TYPE_PIPE:
24 case _STDIO_HANDLE_TYPE_SOCKET: 31 case _STDIO_HANDLE_TYPE_SOCKET:
25 return new _StdSink(new _Socket._writePipe(fd)); 32 return wrap(new _Socket._writePipe(fd));
26 case _STDIO_HANDLE_TYPE_FILE: 33 case _STDIO_HANDLE_TYPE_FILE:
27 return new _StdSink(new IOSink(new _FileStreamConsumer.fromStdio(fd))); 34 return wrap(new IOSink(new _FileStreamConsumer.fromStdio(fd)));
28 default: 35 default:
29 throw new FileSystemException("Unsupported stdin type"); 36 throw new FileSystemException("Unsupported stdin type");
30 } 37 }
31 } 38 }
32 39
33 static int _socketType(nativeSocket) { 40 static int _socketType(nativeSocket) {
34 var result = _getSocketType(nativeSocket); 41 var result = _getSocketType(nativeSocket);
35 if (result is OSError) { 42 if (result is OSError) {
36 throw new FileSystemException("Error retreiving socket type", result); 43 throw new FileSystemException("Error retreiving socket type", result);
37 } 44 }
38 return result; 45 return result;
39 } 46 }
40 } 47 }
41 48
42 patch class Stdin { 49 patch class Stdin {
43 /* patch */ int readByteSync() native "Stdin_ReadByte"; 50 /* patch */ int readByteSync() native "Stdin_ReadByte";
44 51
45 /* patch */ bool get echoMode => _echoMode; 52 /* patch */ bool get echoMode => _echoMode;
46 /* patch */ void set echoMode(bool enabled) { _echoMode = enabled; } 53 /* patch */ void set echoMode(bool enabled) { _echoMode = enabled; }
47 54
48 /* patch */ bool get lineMode => _lineMode; 55 /* patch */ bool get lineMode => _lineMode;
49 /* patch */ void set lineMode(bool enabled) { _lineMode = enabled; } 56 /* patch */ void set lineMode(bool enabled) { _lineMode = enabled; }
50 57
51 static bool get _echoMode native "Stdin_GetEchoMode"; 58 static bool get _echoMode native "Stdin_GetEchoMode";
52 static void set _echoMode(bool enabled) native "Stdin_SetEchoMode"; 59 static void set _echoMode(bool enabled) native "Stdin_SetEchoMode";
53 static bool get _lineMode native "Stdin_GetLineMode"; 60 static bool get _lineMode native "Stdin_GetLineMode";
54 static void set _lineMode(bool enabled) native "Stdin_SetLineMode"; 61 static void set _lineMode(bool enabled) native "Stdin_SetLineMode";
55 } 62 }
56 63
64 patch class Stdout {
65 /* patch */ bool get hasTerminal {
66 try {
67 _terminalSize;
68 return true;
69 } catch (_) {
70 return false;
71 }
72 }
73
74 /* patch */ int get terminalColumns => _terminalSize[0];
75 /* patch */ int get terminalLines => _terminalSize[1];
76
77 static List get _terminalSize {
78 var size = _getTerminalSize();
79 if (size is! List) {
80 throw new StdoutException("Could not get terminal size", size);
81 }
82 return size;
83 }
84
85 static List _getTerminalSize() native "Stdout_GetTerminalSize";
86 }
87
57 88
58 _getStdioHandle(_NativeSocket socket, int num) native "Socket_GetStdioHandle"; 89 _getStdioHandle(_NativeSocket socket, int num) native "Socket_GetStdioHandle";
59 _getStdioHandleType(int num) native "File_GetStdioHandleType"; 90 _getStdioHandleType(int num) native "File_GetStdioHandleType";
60 _getSocketType(_NativeSocket nativeSocket) native "Socket_GetType"; 91 _getSocketType(_NativeSocket nativeSocket) native "Socket_GetType";
OLDNEW
« no previous file with comments | « runtime/bin/stdio_macos.cc ('k') | runtime/bin/stdio_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698