OLD | NEW |
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 #include "bin/builtin.h" | 5 #include "bin/builtin.h" |
6 #include "bin/dartutils.h" | 6 #include "bin/dartutils.h" |
7 #include "bin/utils.h" | 7 #include "bin/utils.h" |
8 #include "bin/stdin.h" | 8 #include "bin/stdio.h" |
9 | 9 |
10 #include "platform/globals.h" | 10 #include "platform/globals.h" |
11 #include "platform/thread.h" | 11 #include "platform/thread.h" |
12 #include "platform/utils.h" | 12 #include "platform/utils.h" |
13 | 13 |
14 #include "include/dart_api.h" | 14 #include "include/dart_api.h" |
15 | 15 |
16 | 16 |
17 namespace dart { | 17 namespace dart { |
18 namespace bin { | 18 namespace bin { |
(...skipping 17 matching lines...) Expand all Loading... |
36 void FUNCTION_NAME(Stdin_GetLineMode)(Dart_NativeArguments args) { | 36 void FUNCTION_NAME(Stdin_GetLineMode)(Dart_NativeArguments args) { |
37 Dart_SetReturnValue(args, Dart_NewBoolean(Stdin::GetLineMode())); | 37 Dart_SetReturnValue(args, Dart_NewBoolean(Stdin::GetLineMode())); |
38 } | 38 } |
39 | 39 |
40 | 40 |
41 void FUNCTION_NAME(Stdin_SetLineMode)(Dart_NativeArguments args) { | 41 void FUNCTION_NAME(Stdin_SetLineMode)(Dart_NativeArguments args) { |
42 bool enabled = DartUtils::GetBooleanValue(Dart_GetNativeArgument(args, 0)); | 42 bool enabled = DartUtils::GetBooleanValue(Dart_GetNativeArgument(args, 0)); |
43 Stdin::SetLineMode(enabled); | 43 Stdin::SetLineMode(enabled); |
44 } | 44 } |
45 | 45 |
| 46 |
| 47 void FUNCTION_NAME(Stdout_GetTerminalSize)(Dart_NativeArguments args) { |
| 48 int size[2]; |
| 49 if (Stdout::GetTerminalSize(size)) { |
| 50 Dart_Handle list = Dart_NewList(2); |
| 51 Dart_ListSetAt(list, 0, Dart_NewInteger(size[0])); |
| 52 Dart_ListSetAt(list, 1, Dart_NewInteger(size[1])); |
| 53 Dart_SetReturnValue(args, list); |
| 54 } else { |
| 55 Dart_SetReturnValue(args, DartUtils::NewDartOSError()); |
| 56 } |
| 57 } |
| 58 |
46 } // namespace bin | 59 } // namespace bin |
47 } // namespace dart | 60 } // namespace dart |
OLD | NEW |