| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library stdio.server; | 5 library stdio.server; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 | 9 |
| 10 import 'package:analysis_server/src/channel.dart'; | 10 import 'package:analysis_server/src/channel/byte_stream_channel.dart'; |
| 11 import 'package:analysis_server/src/socket_server.dart'; | 11 import 'package:analysis_server/src/socket_server.dart'; |
| 12 | 12 |
| 13 /** | 13 /** |
| 14 * Instances of the class [StdioServer] implement a simple server operating | 14 * Instances of the class [StdioServer] implement a simple server operating |
| 15 * over standard input and output. The primary responsibility of this server | 15 * over standard input and output. The primary responsibility of this server |
| 16 * is to split incoming messages on newlines and pass them along to the | 16 * is to split incoming messages on newlines and pass them along to the |
| 17 * analysis server. | 17 * analysis server. |
| 18 */ | 18 */ |
| 19 class StdioAnalysisServer { | 19 class StdioAnalysisServer { |
| 20 /** | 20 /** |
| (...skipping 12 matching lines...) Expand all Loading... |
| 33 * | 33 * |
| 34 * Return a future that will be completed when stdin closes. | 34 * Return a future that will be completed when stdin closes. |
| 35 */ | 35 */ |
| 36 Future serveStdio() { | 36 Future serveStdio() { |
| 37 ByteStreamServerChannel serverChannel = new ByteStreamServerChannel(stdin, | 37 ByteStreamServerChannel serverChannel = new ByteStreamServerChannel(stdin, |
| 38 stdout); | 38 stdout); |
| 39 socketServer.createAnalysisServer(serverChannel); | 39 socketServer.createAnalysisServer(serverChannel); |
| 40 return serverChannel.closed; | 40 return serverChannel.closed; |
| 41 } | 41 } |
| 42 } | 42 } |
| OLD | NEW |