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

Side by Side Diff: runtime/lib/isolate_patch.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update spawnUri description. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 class _CloseToken { 5 patch class ReceivePort {
6 /// This token is sent from [IsolateSink]s to [IsolateStream]s to ask them to 6 /* patch */ factory ReceivePort() = _ReceivePortImpl;
7 /// close themselves. 7
8 const _CloseToken(); 8 /* patch */ factory ReceivePort.fromRawReceivePort(RawReceivePort rawPort) =
9 _ReceivePortImpl.fromRawReceivePort;
9 } 10 }
10 11
11 patch bool _isCloseToken(var object) { 12 patch class RawReceivePort {
12 // TODO(floitsch): can we compare against const _CloseToken()? 13 /**
13 return object is _CloseToken; 14 * Opens a long-lived port for receiving messages.
14 } 15 *
15 16 * A [RawReceivePort] is low level and does not work with [Zone]s. It
16 patch class MessageBox { 17 * can not be paused. The data-handler must be set before the first
17 /* patch */ MessageBox.oneShot() : this._oneShot(new ReceivePort()); 18 * event is received.
18 MessageBox._oneShot(ReceivePort receivePort) 19 */
19 : stream = new IsolateStream._fromOriginalReceivePortOneShot(receivePort), 20 /* patch */ factory RawReceivePort([void handler(event)]) {
20 sink = new _IsolateSink._fromPort(receivePort.toSendPort()); 21 _RawReceivePortImpl result = new _RawReceivePortImpl();
21 22 result.handler = handler;
22 /* patch */ MessageBox() : this._(new ReceivePort()); 23 return result;
23 MessageBox._(ReceivePort receivePort)
24 : stream = new IsolateStream._fromOriginalReceivePort(receivePort),
25 sink = new _IsolateSink._fromPort(receivePort.toSendPort());
26 }
27
28 class _IsolateSink implements IsolateSink {
29 bool _isClosed = false;
30 final SendPort _port;
31 _IsolateSink._fromPort(this._port);
32
33 void add(dynamic message) {
34 _port.send(message);
35 }
36
37 void addError(Object errorEvent) {
38 throw new UnimplementedError("addError on isolate streams");
39 }
40
41 void close() {
42 if (_isClosed) return;
43 add(const _CloseToken());
44 _isClosed = true;
45 }
46
47 bool operator==(var other) {
48 return other is IsolateSink && _port == other._port;
49 }
50
51 int get hashCode => _port.hashCode + 499;
52 }
53
54 patch IsolateSink streamSpawnFunction(
55 void topLevelFunction(),
56 [bool unhandledExceptionCallback(IsolateUnhandledException e)]) {
57 SendPort sendPort = spawnFunction(topLevelFunction,
58 unhandledExceptionCallback);
59 return new _IsolateSink._fromPort(sendPort);
60 }
61
62 patch class ReceivePort {
63 /* patch */ factory ReceivePort() {
64 return new _ReceivePortImpl();
65 } 24 }
66 } 25 }
67 26
68 class _ReceivePortImpl implements ReceivePort { 27 class _ReceivePortImpl extends Stream implements ReceivePort {
69 factory _ReceivePortImpl() native "ReceivePortImpl_factory"; 28 _ReceivePortImpl() : this.fromRawReceivePort(new RawReceivePort());
70 29
71 receive(void onMessage(var message, SendPort replyTo)) { 30 _ReceivePortImpl.fromRawReceivePort(this._rawPort) {
72 _onMessage = onMessage; 31 _controller = new StreamController(onCancel: close, sync: true);
32 _rawPort.handler = _controller.add;
73 } 33 }
74 34
35 SendPort get sendPort {
36 return _rawPort.sendPort;
37 }
38
39 StreamSubscription listen(void onData(var message),
40 { Function onError,
41 void onDone(),
42 bool cancelOnError }) {
43 return _controller.stream.listen(onData);
44 }
45
46 close() {
47 _rawPort.close();
48 _controller.close();
49 }
50
51 final RawReceivePort _rawPort;
52 StreamController _controller;
53 }
54
55 class _RawReceivePortImpl implements RawReceivePort {
56 factory _RawReceivePortImpl() native "ReceivePortImpl_factory";
Ivan Posva 2013/10/24 06:48:38 "RawReceivePortImpl_factory"
floitsch 2013/10/24 16:15:58 Done.
57
75 close() { 58 close() {
76 _portMap.remove(_id); 59 _portMap.remove(_id);
77 _closeInternal(_id); 60 _closeInternal(_id);
78 } 61 }
79 62
80 SendPort toSendPort() { 63 SendPort get sendPort {
81 return new _SendPortImpl(_id); 64 return new _SendPortImpl(_id);
82 } 65 }
83 66
84 /**** Internal implementation details ****/ 67 /**** Internal implementation details ****/
85 // Called from the VM to create a new ReceivePort instance. 68 // Called from the VM to create a new RawReceivePort instance.
86 static _ReceivePortImpl _get_or_create(int id) { 69 static _RawReceivePortImpl _get_or_create(int id) {
87 if (_portMap != null) { 70 if (_portMap != null) {
88 _ReceivePortImpl port = _portMap[id]; 71 _RawReceivePortImpl port = _portMap[id];
89 if (port != null) { 72 if (port != null) {
90 return port; 73 return port;
91 } 74 }
92 } 75 }
93 return new _ReceivePortImpl._internal(id); 76 return new _RawReceivePortImpl._internal(id);
94 } 77 }
95 78
96 _ReceivePortImpl._internal(int id) : _id = id { 79 _RawReceivePortImpl._internal(int id) : _id = id {
97 if (_portMap == null) { 80 if (_portMap == null) {
98 _portMap = new Map(); 81 _portMap = new Map();
99 } 82 }
100 _portMap[id] = this; 83 _portMap[id] = this;
101 } 84 }
102 85
103 // Called from the VM to retrieve the ReceivePort for a message. 86 // Called from the VM to retrieve the RawReceivePort for a message.
104 static _ReceivePortImpl _lookupReceivePort(int id) { 87 static _RawReceivePortImpl _lookupReceivePort(int id) {
105 assert(_portMap != null); 88 assert(_portMap != null);
106 return _portMap[id]; 89 return _portMap[id];
107 } 90 }
108 91
109 // Called from the VM to dispatch to the handler. 92 // Called from the VM to dispatch to the handler.
110 static void _handleMessage(_ReceivePortImpl port, int replyId, var message) { 93 static void _handleMessage(_RawReceivePortImpl port, int replyId, var message) {
111 assert(port != null); 94 assert(port != null);
112 SendPort replyTo = (replyId == 0) ? null : new _SendPortImpl(replyId); 95 port._handler(message);
113 (port._onMessage)(message, replyTo);
114 } 96 }
115 97
116 // Call into the VM to close the VM maintained mappings. 98 // Call into the VM to close the VM maintained mappings.
117 static _closeInternal(int id) native "ReceivePortImpl_closeInternal"; 99 static _closeInternal(int id) native "ReceivePortImpl_closeInternal";
118 100
101 void set handler(Function newHandler) {
102 this._handler = newHandler;
103 }
104
119 final int _id; 105 final int _id;
120 var _onMessage; 106 Function _handler;
121 107
122 // id to ReceivePort mapping. 108 // id to RawReceivePort mapping.
123 static Map _portMap; 109 static Map _portMap;
124 } 110 }
125 111
126 112
127 class _SendPortImpl implements SendPort { 113 class _SendPortImpl implements SendPort {
128 /*--- public interface ---*/ 114 /*--- public interface ---*/
129 void send(var message, [SendPort replyTo = null]) { 115 void send(var message, [SendPort replyTo = null]) {
130 this._sendNow(message, replyTo); 116 this._sendNow(message, replyTo);
131 } 117 }
132 118
133 void _sendNow(var message, SendPort replyTo) { 119 void _sendNow(var message, SendPort replyTo) {
134 int replyId = (replyTo == null) ? 0 : replyTo._id; 120 int replyId = (replyTo == null) ? 0 : replyTo._id;
135 _sendInternal(_id, replyId, message); 121 _sendInternal(_id, replyId, message);
136 } 122 }
137 123
138 Future call(var message) {
139 final completer = new Completer.sync();
140 final port = new _ReceivePortImpl();
141 send(message, port.toSendPort());
142 port.receive((value, ignoreReplyTo) {
143 port.close();
144 if (value is Exception) {
145 completer.completeError(value);
146 } else {
147 completer.complete(value);
148 }
149 });
150 return completer.future;
151 }
152
153 bool operator==(var other) { 124 bool operator==(var other) {
154 return (other is _SendPortImpl) && _id == other._id; 125 return (other is _SendPortImpl) && _id == other._id;
155 } 126 }
156 127
157 int get hashCode { 128 int get hashCode {
158 return _id; 129 return _id;
159 } 130 }
160 131
161 /*--- private implementation ---*/ 132 /*--- private implementation ---*/
162 const _SendPortImpl(int id) : _id = id; 133 const _SendPortImpl(int id) : _id = id;
163 134
164 // _SendPortImpl._create is called from the VM when a new SendPort instance is 135 // _SendPortImpl._create is called from the VM when a new SendPort instance is
165 // needed by the VM code. 136 // needed by the VM code.
166 static SendPort _create(int id) { 137 static SendPort _create(int id) {
167 return new _SendPortImpl(id); 138 return new _SendPortImpl(id);
168 } 139 }
169 140
170 // Forward the implementation of sending messages to the VM. Only port ids 141 // Forward the implementation of sending messages to the VM. Only port ids
171 // are being handed to the VM. 142 // are being handed to the VM.
172 static _sendInternal(int sendId, int replyId, var message) 143 static _sendInternal(int sendId, int replyId, var message)
173 native "SendPortImpl_sendInternal_"; 144 native "SendPortImpl_sendInternal_";
174 145
175 final int _id; 146 final int _id;
176 } 147 }
177 148
178 _getPortInternal() native "isolate_getPortInternal"; 149 _getPortInternal() native "isolate_getPortInternal";
179 150
180 ReceivePort _portInternal; 151 ReceivePort _portInternal;
181 152
153 typedef _MainFunction();
154 typedef _MainFunctionArgs(args);
155 typedef _MainFunctionMessage({message});
156 typedef _MainFunctionArgsMessage(args, {message});
157
158 /**
159 * Takes the real entry point as argument and invokes it with the initial
160 * message.
161 *
162 * The initial message is (currently) received through the global port variable.
163 */
164 void _startIsolate(Function entryPoint, bool isFunctionSpawn) {
165 _Isolate.port.first.then((message) {
166 var initialMessage = message[0];
167 var reply = message[1];
168 reply.send("started");
169 if (isFunctionSpawn) {
170 entryPoint(initialMessage);
171 } else if (entryPoint is _MainFunctionArgsMessage) {
172 entryPoint(const [], message: initialMessage);
173 } else if (entryPoint is _MainFunctionMessage) {
174 entryPoint(message: initialMessage);
175 } else if (entryPoint is _MainFunctionArgs) {
176 entryPoint(const []);
177 } else {
178 entryPoint();
179 }
180 });
181 }
182
183 patch class Isolate {
184 /* patch */ static Future<Isolate> spawn(
185 void entryPoint(message), var message) {
186 Completer completer = new Completer<Isolate>.sync();
187 try {
188 // The VM will invoke [_startIsolate] with entryPoint as argument.
189 SendPort controlPort = _Isolate._spawnFunction(entryPoint);
190 RawReceivePort readyPort = new RawReceivePort();
191 controlPort.send([message, readyPort.sendPort]);
192 readyPort.handler = (_) {
193 readyPort.close();
194 completer.complete(new Isolate._fromControlPort(controlPort));
195 };
196 } catch(e, st) {
197 // TODO(floitsch): we want errors to go into the returned future.
198 rethrow;
199 };
200 return completer.future;
201 }
202
203 /* patch */ static Future<Isolate> spawnUri(Uri uri, var message) {
204 Completer completer = new Completer<Isolate>.sync();
205 try {
206 // The VM will invoke [_startIsolate].
207 SendPort controlPort = _Isolate._spawnUri(uri.path);
208 RawReceivePort readyPort = new RawReceivePort();
209 controlPort.send([message, readyPort.sendPort]);
210 readyPort.handler = (_) {
211 readyPort.close();
212 completer.complete(new Isolate._fromControlPort(controlPort));
213 };
214 } catch(e, st) {
215 // TODO(floitsch): we want errors to go into the returned future.
216 rethrow;
217 };
218 return completer.future;
219 }
220 }
221
182 patch class _Isolate { 222 patch class _Isolate {
183 /* patch */ static ReceivePort get port { 223 /* patch */ static ReceivePort get port {
184 if (_portInternal == null) { 224 if (_portInternal == null) {
185 _portInternal = _getPortInternal(); 225 _portInternal = new ReceivePort.fromRawReceivePort(_getPortInternal());
186 } 226 }
187 return _portInternal; 227 return _portInternal;
188 } 228 }
189 229
190 /* patch */ static SendPort spawnFunction(void topLevelFunction(), 230 static SendPort _spawnFunction(Function topLevelFunction)
191 [bool unhandledExceptionCallback(IsolateUnhandledException e)])
192 native "isolate_spawnFunction"; 231 native "isolate_spawnFunction";
193 232
194 /* patch */ static SendPort spawnUri(String uri) native "isolate_spawnUri"; 233 /* patch */ static SendPort _spawnUri(String uri) native "isolate_spawnUri";
195 } 234 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698