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

Unified Diff: mojo/public/dart/src/stub.dart

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 | « mojo/public/dart/src/struct.dart ('k') | mojo/public/dart/src/timer_queue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/dart/src/stub.dart
diff --git a/mojo/public/dart/src/stub.dart b/mojo/public/dart/src/stub.dart
deleted file mode 100644
index babba6877f58ef785b2062e46e8f212f6764cd66..0000000000000000000000000000000000000000
--- a/mojo/public/dart/src/stub.dart
+++ /dev/null
@@ -1,130 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-part of bindings;
-
-abstract class Stub extends core.MojoEventStreamListener {
- int _outstandingResponseFutures = 0;
- bool _isClosing = false;
- Completer _closeCompleter;
-
- Stub.fromEndpoint(core.MojoMessagePipeEndpoint endpoint)
- : super.fromEndpoint(endpoint);
-
- Stub.fromHandle(core.MojoHandle handle) : super.fromHandle(handle);
-
- Stub.unbound() : super.unbound();
-
- Future<Message> handleMessage(ServiceMessage message);
-
- void handleRead() {
- // Query how many bytes are available.
- var result = endpoint.query();
- assert(result.status.isOk || result.status.isResourceExhausted);
- if (result.bytesRead == 0) {
- throw new MojoCodecError('Unexpected empty message.');
- }
-
- // Read the data and view as a message.
- var bytes = new ByteData(result.bytesRead);
- var handles = new List<core.MojoHandle>(result.handlesRead);
- result = endpoint.read(bytes, result.bytesRead, handles);
- assert(result.status.isOk || result.status.isResourceExhausted);
-
- // Prepare the response.
- var message;
- var responseFuture;
- try {
- message = new ServiceMessage.fromMessage(new Message(bytes, handles));
- responseFuture = _isClosing ? null : handleMessage(message);
- } catch (e, s) {
- handles.forEach((h) => h.close());
- rethrow;
- }
-
- // If there's a response, send it.
- if (responseFuture != null) {
- _outstandingResponseFutures++;
- responseFuture.then((response) {
- _outstandingResponseFutures--;
- if (isOpen) {
- endpoint.write(
- response.buffer, response.buffer.lengthInBytes, response.handles);
- // FailedPrecondition is only used to indicate that the other end of
- // the pipe has been closed. We can ignore the close here and wait for
- // the PeerClosed signal on the event stream.
- assert(endpoint.status.isOk || endpoint.status.isFailedPrecondition);
- if (_isClosing && (_outstandingResponseFutures == 0)) {
- // This was the final response future for which we needed to send
- // a response. It is safe to close.
- super.close().then((_) {
- if (_isClosing) {
- _isClosing = false;
- _closeCompleter.complete(null);
- _closeCompleter = null;
- }
- });
- }
- }
- });
- } else if (_isClosing && (_outstandingResponseFutures == 0)) {
- // We are closing, there is no response to send for this message, and
- // there are no outstanding response futures. Do the close now.
- super.close().then((_) {
- if (_isClosing) {
- _isClosing = false;
- _closeCompleter.complete(null);
- _closeCompleter = null;
- }
- });
- }
- }
-
- void handleWrite() {
- throw 'Unexpected write signal in client.';
- }
-
- // NB: |immediate| should only be true when calling close() while handling an
- // exception thrown from handleRead(), e.g. when we receive a malformed
- // message, or when we have received the PEER_CLOSED event.
- @override
- Future close({bool immediate: false}) {
- if (isOpen &&
- !immediate &&
- (isInHandler || (_outstandingResponseFutures > 0))) {
- // Either close() is being called from within handleRead() or
- // handleWrite(), or close() is being called while there are outstanding
- // response futures. Defer the actual close until all response futures
- // have been resolved.
- _isClosing = true;
- _closeCompleter = new Completer();
- return _closeCompleter.future;
- } else {
- return super.close(immediate: immediate).then((_) {
- if (_isClosing) {
- _isClosing = false;
- _closeCompleter.complete(null);
- _closeCompleter = null;
- }
- });
- }
- }
-
- Message buildResponse(Struct response, int name) {
- var header = new MessageHeader(name);
- return response.serializeWithHeader(header);
- }
-
- Message buildResponseWithId(Struct response, int name, int id, int flags) {
- var header = new MessageHeader.withRequestId(name, flags, id);
- return response.serializeWithHeader(header);
- }
-
- String toString() {
- var superString = super.toString();
- return "Stub(${superString})";
- }
-
- int get version;
-}
« no previous file with comments | « mojo/public/dart/src/struct.dart ('k') | mojo/public/dart/src/timer_queue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698