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

Unified Diff: tests/standalone/io/echo_server_stream_test.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/http_launch_data/http_spawn_main.dart ('k') | tests/standalone/io/http_advanced_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/echo_server_stream_test.dart
diff --git a/tests/standalone/io/echo_server_stream_test.dart b/tests/standalone/io/echo_server_stream_test.dart
index daf2c233b40d09ec756ff63ed40ad69894c4ac81..0684571bc3b496abfb890d2f5266d4d65e4c8c73 100644
--- a/tests/standalone/io/echo_server_stream_test.dart
+++ b/tests/standalone/io/echo_server_stream_test.dart
@@ -12,6 +12,7 @@
library ServerTest;
import "package:expect/expect.dart";
+import "package:async_helper/async_helper.dart";
import "dart:async";
import "dart:io";
import "dart:isolate";
@@ -24,14 +25,11 @@ class EchoServerGame {
static const FIRSTCHAR = 65;
EchoServerGame.start()
- : _receivePort = new ReceivePort(),
- _sendPort = null,
- _buffer = new List<int>(MSGSIZE),
+ : _buffer = new List<int>(MSGSIZE),
_messages = 0 {
for (int i = 0; i < MSGSIZE; i++) {
_buffer[i] = FIRSTCHAR + i;
}
- _sendPort = spawnFunction(startEchoServer);
initialize();
}
@@ -80,30 +78,33 @@ class EchoServerGame {
}
void initialize() {
- _receivePort.receive((var message, SendPort replyTo) {
- _port = message;
+ var receivePort = new ReceivePort();
+ var remote = Isolate.spawn(startEchoServer, receivePort.sendPort);
+ receivePort.first.then((msg) {
+ this._port = msg[0];
+ this._closeSendPort = msg[1];
sendData();
});
- _sendPort.send(TestingServer.INIT, _receivePort.toSendPort());
}
void shutdown() {
- _sendPort.send(TestingServer.SHUTDOWN, _receivePort.toSendPort());
- _receivePort.close();
+ _closeSendPort.send(null);
+ asyncEnd();
}
int _port;
- ReceivePort _receivePort;
- SendPort _sendPort;
+ SendPort _closeSendPort;
Socket _socket;
List<int> _buffer;
int _messages;
}
-void startEchoServer() {
+void startEchoServer(SendPort replyPort) {
var server = new EchoServer();
- port.receive(server.dispatch);
+ server.init().then((port) {
+ replyPort.send([port, server.closeSendPort]);
+ });
}
@@ -143,5 +144,6 @@ class EchoServer extends TestingServer {
}
main() {
+ asyncStart();
EchoServerGame echoServerGame = new EchoServerGame.start();
}
« no previous file with comments | « tests/standalone/http_launch_data/http_spawn_main.dart ('k') | tests/standalone/io/http_advanced_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698