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

Side by Side Diff: sdk/lib/isolate/isolate.dart

Issue 20703003: Proposal for new Isolate library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 5 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
« no previous file with comments | « no previous file | sdk/lib/isolate/isolate_stream.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 library dart.isolate; 5 library dart.isolate;
6 6
7 import "dart:async"; 7 import "dart:async";
8 8
9 part "isolate_stream.dart"; 9 /**
10 * Returns the initial message an isolate received.
11 *
12 * If the isolate is the main-isolate it contains the list of arguments that
13 * have been given on the command line.
14 *
15 * This getter supercedes io:Options (which is now deprecated).
16 */
17 // TODO(floitsch): alternatively we could keep io:Options (or a nicer variant
18 // of it). The main advantage of removing it, is that libraries/programs that
19 // are otherwise server-independent could be spawned in the browser.
Lasse Reichstein Nielsen 2013/08/12 07:19:03 We should have an "Options" class somewhere for ea
20 // If devs use dart:io just for the arguments they can't be used in spawnUri,
21 // by forcing them to use dart:isolate they would run in the browser, too.
22 dynamic get isolateMessage;
10 23
11 class IsolateSpawnException implements Exception { 24 class IsolateSpawnException implements Exception {
12 const IsolateSpawnException(String this._s); 25 const IsolateSpawnException(String this._s);
13 String toString() => "IsolateSpawnException: '$_s'"; 26 String toString() => "IsolateSpawnException: '$_s'";
14 final String _s; 27 final String _s;
15 } 28 }
16 29
17 /** 30 /**
18 * The initial [ReceivePort] available by default for this isolate. This
19 * [ReceivePort] is created automatically and it is commonly used to establish
20 * the first communication between isolates (see [spawnFunction] and
21 * [spawnUri]).
22 */
23 ReceivePort get port => _Isolate.port;
24
25 /**
26 * Creates and spawns an isolate that shares the same code as the current 31 * Creates and spawns an isolate that shares the same code as the current
27 * isolate, but that starts from [topLevelFunction]. The [topLevelFunction] 32 * isolate, but that starts from [topLevelFunction]. The [topLevelFunction]
28 * argument must be a static top-level function or a static method that takes no 33 * argument must be a static top-level function or a static method that takes no
29 * arguments. It is illegal to pass a function closure. 34 * arguments. It is illegal to pass a function closure.
30 * 35 *
31 * When any isolate starts (even the main script of the application), a default 36 * The initial [message] is stored in the global [isolateMessage] where the
32 * [ReceivePort] is created for it. This port is available from the top-level 37 * spawnee can access it. Usually the initial [message] contains a [SendPort] so
Lasse Reichstein Nielsen 2013/08/12 07:19:03 So the user is expected to use ports directly, and
floitsch 2013/08/23 17:07:30 Yes. But a good framework would abstract most of i
33 * getter [port] defined in this library. 38 * that the spawner and spawnee can communicate with each other.
34 *
35 * [spawnFunction] returns a [SendPort] derived from the child isolate's default
36 * port.
37 *
38 * The optional [unhandledExceptionCallback] argument is invoked whenever an
39 * exception inside the isolate is unhandled. It can be seen as a big
40 * `try/catch` around everything that is executed inside the isolate. The
41 * callback should return `true` when it was able to handled the exception.
42 */ 39 */
43 SendPort spawnFunction(void topLevelFunction(), 40 void spawnFunction(void topLevelFunction(), [dynamic message]);
44 [bool unhandledExceptionCallback(IsolateUnhandledException e)])
45 => _Isolate.spawnFunction(topLevelFunction, unhandledExceptionCallback);
46 41
47 /** 42 /**
48 * Creates and spawns an isolate whose code is available at [uri]. Like with 43 * Creates and spawns an isolate whose code is available at [uri]. Like with
49 * [spawnFunction], the child isolate will have a default [ReceivePort], and a 44 * [spawnFunction], the child isolate will have a default [ReceivePort], and a
Lasse Reichstein Nielsen 2013/08/12 07:19:03 It no longer returns a port.
floitsch 2013/08/23 17:07:30 Done.
50 * this function returns a [SendPort] derived from it. 45 * this function returns a [SendPort] derived from it.
51 */ 46 */
52 SendPort spawnUri(String uri) => _Isolate.spawnUri(uri); 47 void spawnUri(Uri uri, [dynamic message]);
53 48
54 /** 49 /**
55 * [SendPort]s are created from [ReceivePort]s. Any message sent through 50 * [SendPort]s are created from [ReceivePort]s. Any message sent through
56 * a [SendPort] is delivered to its respective [ReceivePort]. There might be 51 * a [SendPort] is delivered to its respective [ReceivePort]. There might be
57 * many [SendPort]s for the same [ReceivePort]. 52 * many [SendPort]s for the same [ReceivePort].
58 * 53 *
59 * [SendPort]s can be transmitted to other isolates. 54 * [SendPort]s can be transmitted to other isolates.
60 */ 55 */
61 abstract class SendPort { 56 abstract class SendPort {
62 57
63 /** 58 /**
64 * Sends an asynchronous [message] to this send port. The message is copied to 59 * Sends an asynchronous [message] to this send port. The message is copied to
65 * the receiving isolate. If specified, the [replyTo] port will be provided to 60 * the receiving isolate. If specified, the [replyTo] port will be provided to
66 * the receiver to facilitate exchanging sequences of messages. 61 * the receiver to facilitate exchanging sequences of messages.
67 * 62 *
68 * The content of [message] can be: primitive values (null, num, bool, double, 63 * The content of [message] can be: primitive values (null, num, bool, double,
Lasse Reichstein Nielsen 2013/08/12 07:19:03 This is really annoying me, because I do it too: Y
floitsch 2013/08/23 17:07:30 :)
69 * String), instances of [SendPort], and lists and maps whose elements are any 64 * String), instances of [SendPort], and lists and maps whose elements are any
70 * of these. List and maps are also allowed to be cyclic. 65 * of these. List and maps are also allowed to be cyclic.
71 * 66 *
67 * If, during serialization, an object of different type is encountered, the
Lasse Reichstein Nielsen 2013/08/12 07:19:03 "an object of another type is". Using "different"
floitsch 2013/08/23 17:07:30 done.
68 * serializer (if given) is invoked. TODO(floitsch): specify how
69 * serialization and deserialization should work.
Lasse Reichstein Nielsen 2013/08/12 07:19:03 That's an incredibly complex thing to just introdu
floitsch 2013/08/23 17:07:30 This is for discussion. I'm hoping we (devs) can c
70 *
72 * In the special circumstances when two isolates share the same code and are 71 * In the special circumstances when two isolates share the same code and are
73 * running in the same process (e.g. isolates created via [spawnFunction]), it 72 * running in the same process (e.g. isolates created via [spawnFunction]), it
74 * is also possible to send object instances (which would be copied in the 73 * is also possible to send object instances (which would be copied in the
75 * process). This is currently only supported by the dartvm. For now, the 74 * process). This is currently only supported by the dartvm. For now, the
76 * dart2js compiler only supports the restricted messages described above. 75 * dart2js compiler only supports the restricted messages described above.
77 * 76 *
78 * Deprecation note: it is no longer valid to transmit a [ReceivePort] in a 77 * Deprecation note: it is no longer valid to transmit a [ReceivePort] in a
79 * message. Previously they were translated to the corresponding send port 78 * message. Previously they were translated to the corresponding send port
80 * before being transmitted. 79 * before being transmitted.
81 */ 80 */
82 void send(var message, [SendPort replyTo]); 81 void send(var message, { serializer(x), SendPort replyTo });
83 82
84 /** 83 /**
85 * Sends a message to this send port and returns a [Future] of the reply. 84 * Sends a message to this send port and returns a [Future] of the reply.
86 * Basically, this internally creates a new receive port, sends a 85 * Basically, this internally creates a new receive port, sends a
87 * message to this send port with replyTo set to such receive port, and, when 86 * message to this send port with replyTo set to such receive port, and, when
88 * a reply is received, it closes the receive port and completes the returned 87 * a reply is received, it closes the receive port and completes the returned
89 * future. 88 * future.
89 *
90 * Note: it is not possible to provide a serializer to this function. Use
91 * [send] instead.
90 */ 92 */
91 Future call(var message); 93 Future call(var message);
92 94
93 /** 95 /**
94 * Tests whether [other] is a [SendPort] pointing to the same 96 * Tests whether [other] is a [SendPort] pointing to the same
95 * [ReceivePort] as this one. 97 * [ReceivePort] as this one.
96 */ 98 */
97 bool operator==(var other); 99 bool operator==(var other);
98 100
99 /** 101 /**
(...skipping 11 matching lines...) Expand all
111 * is delivered to the [ReceivePort] it has been created from. There, they are 113 * is delivered to the [ReceivePort] it has been created from. There, they are
112 * dispatched to the callback that has been registered on the receive port. 114 * dispatched to the callback that has been registered on the receive port.
113 * 115 *
114 * A [ReceivePort] may have many [SendPort]s. 116 * A [ReceivePort] may have many [SendPort]s.
115 */ 117 */
116 abstract class ReceivePort { 118 abstract class ReceivePort {
117 119
118 /** 120 /**
119 * Opens a long-lived port for receiving messages. The returned port 121 * Opens a long-lived port for receiving messages. The returned port
120 * must be explicitly closed through [ReceivePort.close]. 122 * must be explicitly closed through [ReceivePort.close].
123 *
124 * If a message was serialized during sending the deserializer is invoked
125 * when receiving data.
Lasse Reichstein Nielsen 2013/08/12 07:19:03 So the deserializer is invoked on the entire messa
floitsch 2013/08/23 17:07:30 This CL is partially to discuss a good story. Leav
121 */ 126 */
122 external factory ReceivePort(); 127 external factory ReceivePort({ deserializer(x) });
123 128
124 /** 129 /**
125 * Sets up a callback function for receiving pending or future 130 * Sets up a callback function for receiving pending or future
126 * messages on this receive port. 131 * messages on this receive port.
127 */ 132 */
128 void receive(void callback(var message, SendPort replyTo)); 133 void onData(void callback(var message, SendPort replyTo));
129 134
130 /** 135 /**
131 * Closes this receive port immediately. Pending messages will not 136 * Closes this receive port immediately. Pending messages will not
132 * be processed and it is impossible to re-open the port. Single-shot 137 * be processed and it is impossible to re-open the port. Single-shot
133 * reply ports, such as those created through [SendPort.call], are 138 * reply ports, such as those created through [SendPort.call], are
134 * automatically closed when the reply has been received. Multiple 139 * automatically closed when the reply has been received. Multiple
135 * invocations of [close] are allowed but ignored. 140 * invocations of [close] are allowed but ignored.
136 */ 141 */
137 void close(); 142 void close();
138 143
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 const IsolateUnhandledException(this.message, this.source, this.stackTrace); 203 const IsolateUnhandledException(this.message, this.source, this.stackTrace);
199 204
200 String toString() { 205 String toString() {
201 return 'IsolateUnhandledException: exception while handling message: ' 206 return 'IsolateUnhandledException: exception while handling message: '
202 '${message} \n ' 207 '${message} \n '
203 '${source.toString().replaceAll("\n", "\n ")}\n' 208 '${source.toString().replaceAll("\n", "\n ")}\n'
204 'original stack trace:\n ' 209 'original stack trace:\n '
205 '${stackTrace.toString().replaceAll("\n","\n ")}'; 210 '${stackTrace.toString().replaceAll("\n","\n ")}';
206 } 211 }
207 } 212 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/isolate/isolate_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698