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

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

Issue 2485993002: VM: Support bootstrapping core libraries from Kernel binaries instead of source. (Closed)
Patch Set: Done Created 4 years, 1 month 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
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 @patch static Stdin _getStdioInputStream() { 6 @patch 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:
(...skipping 16 matching lines...) Expand all
27 default: 27 default:
28 throw new FileSystemException("Unsupported stdin type"); 28 throw new FileSystemException("Unsupported stdin type");
29 } 29 }
30 } 30 }
31 31
32 @patch static int _socketType(Socket socket) { 32 @patch static int _socketType(Socket socket) {
33 if (socket is _Socket) return _nativeSocketType(socket._nativeSocket); 33 if (socket is _Socket) return _nativeSocketType(socket._nativeSocket);
34 return null; 34 return null;
35 } 35 }
36 36
37 @patch static int _nativeSocketType(_NativeSocket nativeSocket) { 37 static int _nativeSocketType(_NativeSocket nativeSocket) {
38 var result = _getSocketType(nativeSocket); 38 var result = _getSocketType(nativeSocket);
39 if (result is OSError) { 39 if (result is OSError) {
40 throw new FileSystemException( 40 throw new FileSystemException(
41 "Error retrieving socket type", "", result); 41 "Error retrieving socket type", "", result);
42 } 42 }
43 return result; 43 return result;
44 } 44 }
45 45
46 @patch static _getStdioHandleType(int fd) native "File_GetStdioHandleType"; 46 @patch static _getStdioHandleType(int fd) native "File_GetStdioHandleType";
47 } 47 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 } 81 }
82 return size; 82 return size;
83 } 83 }
84 84
85 static _getTerminalSize(int fd) native "Stdout_GetTerminalSize"; 85 static _getTerminalSize(int fd) native "Stdout_GetTerminalSize";
86 } 86 }
87 87
88 88
89 _getStdioHandle(_NativeSocket socket, int num) native "Socket_GetStdioHandle"; 89 _getStdioHandle(_NativeSocket socket, int num) native "Socket_GetStdioHandle";
90 _getSocketType(_NativeSocket nativeSocket) native "Socket_GetType"; 90 _getSocketType(_NativeSocket nativeSocket) native "Socket_GetType";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698