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

Unified Diff: sdk/lib/isolate/isolate.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase 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 | « sdk/lib/io/timer_impl.dart ('k') | sdk/lib/isolate/isolate_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/isolate/isolate.dart
diff --git a/sdk/lib/isolate/isolate.dart b/sdk/lib/isolate/isolate.dart
index 3cfc4fc3b8849e3ed11893c2d83301252d6cfd75..a78f2cc58f628359cab7ce45eab2d2169612a0f8 100644
--- a/sdk/lib/isolate/isolate.dart
+++ b/sdk/lib/isolate/isolate.dart
@@ -16,61 +16,54 @@ library dart.isolate;
import "dart:async";
-part "isolate_stream.dart";
-
+/**
+ * Thrown when an isolate cannot be created.
+ */
class IsolateSpawnException implements Exception {
- const IsolateSpawnException(String this._s);
- String toString() => "IsolateSpawnException: '$_s'";
- final String _s;
+ const IsolateSpawnException();
}
-/**
- * The initial ReceivePort available by default for this isolate.
- *
- * This ReceivePort is created automatically
- * and is commonly used to establish
- * the first communication between isolates.
- * (See [spawnFunction] and [spawnUri].)
- */
+/// *DEPRECATED*.
ReceivePort get port => _Isolate.port;
-/**
- * Creates and spawns an isolate
- * that shares the same code as the current isolate,
- * but that starts from the specified function.
- *
- * The [topLevelFunction] argument must be
- * a static top-level function or a static method that takes no
- * arguments. It is illegal to pass a function closure.
- *
- * When any isolate starts (even the main script of the application), a default
- * [ReceivePort] is created for it. This port is available from the top-level
- * getter [port] defined in this library.
- *
- * This function returns a [SendPort] derived from
- * the child isolate's default port.
- *
- * The optional [unhandledExceptionCallback] argument is invoked whenever an
- * exception inside the isolate is unhandled. It can be seen as a big
- * `try/catch` around everything that is executed inside the isolate. The
- * callback should return `true` if it was able to handle the exception.
- */
-SendPort spawnFunction(void topLevelFunction(),
- [bool unhandledExceptionCallback(IsolateUnhandledException e)])
- => _Isolate.spawnFunction(topLevelFunction, unhandledExceptionCallback);
+class Isolate {
-/**
- * Creates and spawns an isolate that runs the code from the specified URI.
- *
- * As with [spawnFunction],
- * the child isolate has a default [ReceivePort],
- * and this function returns a [SendPort] derived from it.
- */
+ final SendPort _controlPort;
+
+ Isolate._fromControlPort(this._controlPort);
+
+ /**
+ * Creates and spawns an isolate that shares the same code as the current
+ * isolate.
+ *
+ * The argument [entryPoint] specifies the entry point of the spawned
+ * isolate. It must be a static top-level function or a static method that
+ * takes no arguments. It is not allowed to pass a function closure.
+ *
+ * The entry-point function is invoked with the initial [message].
+ * Usually the initial [message] contains a [SendPort] so
+ * that the spawner and spawnee can communicate with each other.
+ *
+ * Returns a future that will complete with an [Isolate] instance. The
+ * isolate instance can be used to control the spawned isolate.
+ */
+ external static Future<Isolate> spawn(void entryPoint(message), var message);
Lasse Reichstein Nielsen 2013/10/17 12:26:54 Documentation says: "takes no arguments". This req
floitsch 2013/10/17 12:30:56 Yes. this came up yesterday. Would be ok, and fund
+
+ /**
+ * Creates and spawns an isolate that runs the code from the library with
+ * the specified URI.
+ *
+ * The isolate starts executing the top-level `main` function of the library
+ * with the given URI. Otherwise similar to [spawn].
+ */
+ external static Future<Isolate> spawnUri(Uri uri, var arguments);
+}
+
+/// *DEPRECATED*.
SendPort spawnUri(String uri) => _Isolate.spawnUri(uri);
/**
- * Together with [ReceivePort],
- * the only means of communication between isolates.
+ * Sends messages to its [ReceivePort]s.
*
* [SendPort]s are created from [ReceivePort]s. Any message sent through
* a [SendPort] is delivered to its respective [ReceivePort]. There might be
@@ -82,8 +75,7 @@ abstract class SendPort {
/**
* Sends an asynchronous [message] to this send port. The message is copied to
- * the receiving isolate. If specified, the [replyTo] port will be provided to
- * the receiver to facilitate exchanging sequences of messages.
+ * the receiving isolate.
*
* The content of [message] can be: primitive values (null, num, bool, double,
* String), instances of [SendPort], and lists and maps whose elements are any
@@ -95,22 +87,11 @@ abstract class SendPort {
* process). This is currently only supported by the dartvm. For now, the
* dart2js compiler only supports the restricted messages described above.
*
- * Deprecation note: it is no longer valid to transmit a [ReceivePort] in a
- * message. Previously they were translated to the corresponding send port
- * before being transmitted.
+ * The second argument [replyTo] is deprecated.
*/
void send(var message, [SendPort replyTo]);
/**
- * Sends a message to this send port and returns a [Future] of the reply.
- * Basically, this internally creates a new receive port, sends a
- * message to this send port with replyTo set to such receive port, and, when
- * a reply is received, it closes the receive port and completes the returned
- * future.
- */
- Future call(var message);
-
- /**
* Tests whether [other] is a [SendPort] pointing to the same
* [ReceivePort] as this one.
*/
@@ -121,75 +102,62 @@ abstract class SendPort {
* consistent with the == operator.
*/
int get hashCode;
-
}
/**
- * Together with [SendPort], the only means of
- * communication between isolates.
+ * Together with [SendPort], the only means of communication between isolates.
*
- * [ReceivePort]s have a [:toSendPort:] method
- * which returns a [SendPort]. Any message that is sent through this [SendPort]
- * is delivered to the [ReceivePort] it has been created from. There, they are
- * dispatched to the callback that has been registered on the receive port.
+ * [ReceivePort]s have a `sendport` getter which returns a [SendPort].
+ * Any message that is sent through this [SendPort]
+ * is delivered to the [ReceivePort] it has been created from. There, the
+ * message is dispatched to its listener.
+ *
+ * A [ReceivePort] is a non-broadcast stream. This means that it buffers
+ * incoming messages until a listener is registered. Only one listener can
+ * receive messages. See [Stream.asBroadcastStream] for transforming the port
+ * to a broadcast stream.
*
* A [ReceivePort] may have many [SendPort]s.
*/
-abstract class ReceivePort {
+abstract class ReceivePort implements Stream {
/**
- * Opens a long-lived port for receiving messages. The returned port
- * must be explicitly closed through [ReceivePort.close].
+ * Opens a long-lived port for receiving messages.
+ *
+ * A [ReceivePort] is a non-broadcast stream. This means that it buffers
+ * incoming messages until a listener is registered. Only one listener can
+ * receive messages. See [Stream.asBroadcastStream] for transforming the port
+ * to a broadcast stream.
+ *
+ * A receive port is closed by canceling its subscription.
*/
external factory ReceivePort();
/**
- * Sets up a callback function for receiving pending or future
- * messages on this receive port.
+ * Inherited from [Stream].
+ *
+ * Note that all named arguments are ignored since a ReceivePort will never
+ * receive an error, or done message.
*/
- void receive(void callback(var message, SendPort replyTo));
+ StreamSubscription listen(void onData(var message),
+ { Function onError,
+ void onDone(),
+ bool cancelOnError });
/**
- * Closes this receive port immediately. Pending messages will not
- * be processed and it is impossible to re-open the port. Single-shot
- * reply ports, such as those created through [SendPort.call], are
- * automatically closed when the reply has been received. Multiple
- * invocations of [close] are allowed but ignored.
+ * Closes `this`.
+ *
+ * If the stream has not been canceled yet, adds a close-event to the event
+ * queue and discards any further incoming messages.
+ *
+ * If the stream has already been canceled this method has no effect.
*/
void close();
/**
- * Creates a new send port that sends to this receive port. It is legal to
- * create several [SendPort]s from the same [ReceivePort].
- */
- SendPort toSendPort();
-
-}
-
-/**
- * [SendPortSync]s are created from [ReceivePortSync]s. Any message sent through
- * a [SendPortSync] is delivered to its respective [ReceivePortSync]. There
- * might be many [SendPortSync]s for the same [ReceivePortSync].
- *
- * [SendPortSync]s can be transmitted to other isolates.
- */
-abstract class SendPortSync {
- /**
- * Sends a synchronous message to this send port and returns the result.
- */
- callSync(var message);
-
- /**
- * Tests whether [other] is a [SendPortSync] pointing to the same
- * [ReceivePortSync] as this one.
+ * Returns a send port that sends to this receive port.
*/
- bool operator==(var other);
-
- /**
- * Returns an immutable hash code for this send port that is
- * consistent with the == operator.
- */
- int get hashCode;
+ SendPort get sendPort;
}
// The VM doesn't support accessing external globals in the same library. We
@@ -197,8 +165,6 @@ abstract class SendPortSync {
// TODO(6997): Don't go through static class for external variables.
abstract class _Isolate {
external static ReceivePort get port;
- external static SendPort spawnFunction(void topLevelFunction(),
- [bool unhandledExceptionCallback(IsolateUnhandledException e)]);
external static SendPort spawnUri(String uri);
}
@@ -207,6 +173,7 @@ abstract class _Isolate {
* used to show both the error message and the stack trace for unhandled
* exceptions.
*/
+// TODO(floitsch): probably going to remove and replace with something else.
class IsolateUnhandledException implements Exception {
/** Message being handled when exception occurred. */
final message;
« no previous file with comments | « sdk/lib/io/timer_impl.dart ('k') | sdk/lib/isolate/isolate_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698