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

Unified Diff: tests/standalone/io/testing_server.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 2 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 | « tests/standalone/io/socket_many_connections_test.dart ('k') | tests/standalone/issue14236_source.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/testing_server.dart
diff --git a/tests/standalone/io/testing_server.dart b/tests/standalone/io/testing_server.dart
index c8bd2b65352d6a2a71e5467bf33810ff58665fc6..76eba423bbf82ffb01520e66478b448b1ee3e94a 100644
--- a/tests/standalone/io/testing_server.dart
+++ b/tests/standalone/io/testing_server.dart
@@ -19,48 +19,24 @@ abstract class TestingServer {
Expect.fail(msg);
}
- void dispatch(message, SendPort replyTo) {
- if (message == INIT) {
- ServerSocket.bind(HOST, 0).then((server) {
- _server = server;
- _server.listen(
- onConnection,
- onError: errorHandlerServer);
- replyTo.send(_server.port, null);
- });
- } else if (message == SHUTDOWN) {
- _server.close();
- port.close();
- }
- }
-
- ServerSocket _server;
-}
-
-abstract class TestingServerTest {
-
- TestingServerTest.start(SendPort port)
- : _receivePort = new ReceivePort(),
- _sendPort = port {
- initialize();
- }
-
- void run(); // Abstract.
-
- void initialize() {
- _receivePort.receive((var message, SendPort replyTo) {
- _port = message;
- run();
+ SendPort get closeSendPort => _closePort.sendPort;
+
+ Future<int> init() {
+ _closePort = new ReceivePort();
+ _closePort.first.then((_) { close(); });
+ return ServerSocket.bind(HOST, 0).then((server) {
+ _server = server;
+ _server.listen(
+ onConnection,
+ onError: errorHandlerServer);
+ return _server.port;
});
- _sendPort.send(TestingServer.INIT, _receivePort.toSendPort());
}
- void shutdown() {
- _sendPort.send(TestingServer.SHUTDOWN, _receivePort.toSendPort());
- _receivePort.close();
+ void close() {
+ _server.close();
}
- int _port;
- ReceivePort _receivePort;
- SendPort _sendPort;
+ ServerSocket _server;
+ ReceivePort _closePort;
}
« no previous file with comments | « tests/standalone/io/socket_many_connections_test.dart ('k') | tests/standalone/issue14236_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698