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

Unified Diff: pkg/analysis_server/lib/stdio_server.dart

Issue 795833005: Server clean-up (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analysis_server/lib/starter.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/stdio_server.dart
diff --git a/pkg/analysis_server/lib/stdio_server.dart b/pkg/analysis_server/lib/stdio_server.dart
deleted file mode 100644
index d28dbde86db482023516f95d2bbedc48fba5560a..0000000000000000000000000000000000000000
--- a/pkg/analysis_server/lib/stdio_server.dart
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library stdio.server;
-
-import 'dart:async';
-import 'dart:io';
-
-import 'package:analysis_server/src/channel/byte_stream_channel.dart';
-import 'package:analysis_server/src/socket_server.dart';
-
-/**
- * Instances of the class [StdioServer] implement a simple server operating
- * over standard input and output. The primary responsibility of this server
- * is to split incoming messages on newlines and pass them along to the
- * analysis server.
- */
-class StdioAnalysisServer {
- /**
- * An object that can handle either a WebSocket connection or a connection
- * to the client over stdio.
- */
- SocketServer socketServer;
-
- /**
- * Initialize a newly created stdio server.
- */
- StdioAnalysisServer(this.socketServer);
-
- /**
- * Begin serving requests over stdio.
- *
- * Return a future that will be completed when stdin closes.
- */
- Future serveStdio() {
- ByteStreamServerChannel serverChannel = new ByteStreamServerChannel(
- stdin,
- stdout,
- socketServer.instrumentationService);
- socketServer.createAnalysisServer(serverChannel);
- return serverChannel.closed;
- }
-}
« no previous file with comments | « pkg/analysis_server/lib/starter.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698