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

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

Issue 79243002: Implement scheduleImmediate for the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Simplify since the embedder sets the closure. Created 7 years 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
« no previous file with comments | « runtime/bin/dartutils.cc ('k') | runtime/lib/schedule_microtask_patch.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import "dart:collection" show HashMap; 5 import "dart:collection" show HashMap;
6 6
7 patch class ReceivePort { 7 patch class ReceivePort {
8 /* patch */ factory ReceivePort() = _ReceivePortImpl; 8 /* patch */ factory ReceivePort() = _ReceivePortImpl;
9 9
10 /* patch */ factory ReceivePort.fromRawReceivePort(RawReceivePort rawPort) = 10 /* patch */ factory ReceivePort.fromRawReceivePort(RawReceivePort rawPort) =
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 close() { 51 close() {
52 _rawPort.close(); 52 _rawPort.close();
53 _controller.close(); 53 _controller.close();
54 } 54 }
55 55
56 final RawReceivePort _rawPort; 56 final RawReceivePort _rawPort;
57 StreamController _controller; 57 StreamController _controller;
58 } 58 }
59 59
60 typedef void ImmediateCallback();
61
62 /// The callback that has been registered through `scheduleImmediate`.
63 ImmediateCallback _pendingImmediateCallback;
64
65 /// The closure that should be used as scheduleImmediateClosure, when the VM
66 /// is responsible for the event loop.
67 void _isolateScheduleImmediate(void callback()) {
68 assert(_pendingImmediateCallback == null);
69 _pendingImmediateCallback = callback;
70 }
71
72 /// The embedder can execute this function to get hold of
73 /// [_isolateScheduleImmediate] above.
74 Function _getIsolateScheduleImmediateClosure() {
75 return _isolateScheduleImmediate;
76 }
77
60 class _RawReceivePortImpl implements RawReceivePort { 78 class _RawReceivePortImpl implements RawReceivePort {
61 factory _RawReceivePortImpl() native "RawReceivePortImpl_factory"; 79 factory _RawReceivePortImpl() native "RawReceivePortImpl_factory";
62 80
63 close() { 81 close() {
64 _portMap.remove(_id); 82 _portMap.remove(_id);
65 _closeInternal(_id); 83 _closeInternal(_id);
66 } 84 }
67 85
68 SendPort get sendPort { 86 SendPort get sendPort {
69 return new _SendPortImpl(_id); 87 return new _SendPortImpl(_id);
(...skipping 15 matching lines...) Expand all
85 103
86 // Called from the VM to retrieve the RawReceivePort for a message. 104 // Called from the VM to retrieve the RawReceivePort for a message.
87 static _RawReceivePortImpl _lookupReceivePort(int id) { 105 static _RawReceivePortImpl _lookupReceivePort(int id) {
88 return _portMap[id]; 106 return _portMap[id];
89 } 107 }
90 108
91 // Called from the VM to dispatch to the handler. 109 // Called from the VM to dispatch to the handler.
92 static void _handleMessage( 110 static void _handleMessage(
93 _RawReceivePortImpl port, int replyId, var message) { 111 _RawReceivePortImpl port, int replyId, var message) {
94 assert(port != null); 112 assert(port != null);
113 // TODO(floitsch): this relies on the fact that any exception aborts the
114 // VM. Once we have non-fatal global exceptions we need to catch errors
115 // so that we can run the immediate callbacks.
95 port._handler(message); 116 port._handler(message);
117 if (_pendingImmediateCallback != null) {
118 var callback = _pendingImmediateCallback;
119 _pendingImmediateCallback = null;
120 callback();
121 }
96 } 122 }
97 123
98 // Call into the VM to close the VM maintained mappings. 124 // Call into the VM to close the VM maintained mappings.
99 static _closeInternal(int id) native "RawReceivePortImpl_closeInternal"; 125 static _closeInternal(int id) native "RawReceivePortImpl_closeInternal";
100 126
101 void set handler(Function newHandler) { 127 void set handler(Function newHandler) {
102 this._handler = newHandler; 128 this._handler = newHandler;
103 } 129 }
104 130
105 final int _id; 131 final int _id;
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 } 268 }
243 269
244 static final RawReceivePort _self = _mainPort; 270 static final RawReceivePort _self = _mainPort;
245 static RawReceivePort get _mainPort native "Isolate_mainPort"; 271 static RawReceivePort get _mainPort native "Isolate_mainPort";
246 272
247 static SendPort _spawnFunction(Function topLevelFunction) 273 static SendPort _spawnFunction(Function topLevelFunction)
248 native "Isolate_spawnFunction"; 274 native "Isolate_spawnFunction";
249 275
250 static SendPort _spawnUri(String uri) native "Isolate_spawnUri"; 276 static SendPort _spawnUri(String uri) native "Isolate_spawnUri";
251 } 277 }
OLDNEW
« no previous file with comments | « runtime/bin/dartutils.cc ('k') | runtime/lib/schedule_microtask_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698