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

Side by Side Diff: sdk/lib/async/schedule_microtask.dart

Issue 79243002: Implement scheduleImmediate for the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add comments and types. Created 7 years, 1 month 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 part of dart.async; 5 part of dart.async;
6 6
7 typedef void _AsyncCallback(); 7 typedef void _AsyncCallback();
8 8
9 bool _callbacksAreEnqueued = false; 9 bool _callbacksAreEnqueued = false;
10 Queue<_AsyncCallback> _asyncCallbacks = new Queue<_AsyncCallback>(); 10 Queue<_AsyncCallback> _asyncCallbacks = new Queue<_AsyncCallback>();
11 11
12 void _asyncRunCallback() { 12 void _asyncRunCallback() {
13 // As long as we are iterating over the registered callbacks we don't 13 // As long as we are iterating over the registered callbacks we don't
14 // unset the [_callbacksAreEnqueued] boolean. 14 // unset the [_callbacksAreEnqueued] boolean.
15 while (!_asyncCallbacks.isEmpty) { 15 while (!_asyncCallbacks.isEmpty) {
16 Function callback = _asyncCallbacks.removeFirst(); 16 Function callback = _asyncCallbacks.removeFirst();
17 try { 17 try {
18 callback(); 18 callback();
19 } catch (e) { 19 } catch (e) {
20 _AsyncRun._scheduleImmediate(_asyncRunCallback); 20 scheduleImmediate(_asyncRunCallback);
21 rethrow; 21 rethrow;
22 } 22 }
23 } 23 }
24 // Any new callback must register a callback function now. 24 // Any new callback must register a callback function now.
25 _callbacksAreEnqueued = false; 25 _callbacksAreEnqueued = false;
26 } 26 }
27 27
28 void _scheduleAsyncCallback(callback) { 28 void _scheduleAsyncCallback(callback) {
29 // Optimizing a group of Timer.run callbacks to be executed in the 29 // Optimizing a group of Timer.run callbacks to be executed in the
30 // same Timer callback. 30 // same Timer callback.
31 _asyncCallbacks.add(callback); 31 _asyncCallbacks.add(callback);
32 if (!_callbacksAreEnqueued) { 32 if (!_callbacksAreEnqueued) {
33 _AsyncRun._scheduleImmediate(_asyncRunCallback); 33 scheduleImmediate(_asyncRunCallback);
34 _callbacksAreEnqueued = true; 34 _callbacksAreEnqueued = true;
35 } 35 }
36 } 36 }
37 37
38 /** 38 /**
39 * Runs a function asynchronously. 39 * Runs a function asynchronously.
40 * 40 *
41 * Callbacks registered through this function are always executed in order and 41 * Callbacks registered through this function are always executed in order and
42 * are guaranteed to run before other asynchronous events (like [Timer] events, 42 * are guaranteed to run before other asynchronous events (like [Timer] events,
43 * or DOM events). 43 * or DOM events).
(...skipping 19 matching lines...) Expand all
63 void scheduleMicrotask(void callback()) { 63 void scheduleMicrotask(void callback()) {
64 if (Zone.current == Zone.ROOT) { 64 if (Zone.current == Zone.ROOT) {
65 // No need to bind the callback. We know that the root's scheduleMicrotask 65 // No need to bind the callback. We know that the root's scheduleMicrotask
66 // will be invoked in the root zone. 66 // will be invoked in the root zone.
67 Zone.current.scheduleMicrotask(callback); 67 Zone.current.scheduleMicrotask(callback);
68 return; 68 return;
69 } 69 }
70 Zone.current.scheduleMicrotask( 70 Zone.current.scheduleMicrotask(
71 Zone.current.bindCallback(callback, runGuarded: true)); 71 Zone.current.bindCallback(callback, runGuarded: true));
72 } 72 }
73
74 class _AsyncRun {
75 /** Schedule the given callback before any other event in the event-loop. */
76 external static void _scheduleImmediate(void callback());
77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698