| Index: mojo/dart/packages/mojo_services/lib/mojo/sharing.mojom.dart
|
| diff --git a/mojo/dart/packages/mojo_services/lib/mojo/sharing.mojom.dart b/mojo/dart/packages/mojo_services/lib/mojo/sharing.mojom.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f4e46861fb107eae9cd6ccf3d9a66e72734713eb
|
| --- /dev/null
|
| +++ b/mojo/dart/packages/mojo_services/lib/mojo/sharing.mojom.dart
|
| @@ -0,0 +1,255 @@
|
| +// 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.
|
| +
|
| +library sharing_mojom;
|
| +
|
| +import 'dart:async';
|
| +
|
| +import 'package:mojo/bindings.dart' as bindings;
|
| +import 'package:mojo/core.dart' as core;
|
| +
|
| +
|
| +
|
| +class SharingServiceShareTextParams extends bindings.Struct {
|
| + static const List<bindings.StructDataHeader> kVersions = const [
|
| + const bindings.StructDataHeader(16, 0)
|
| + ];
|
| + String text = null;
|
| +
|
| + SharingServiceShareTextParams() : super(kVersions.last.size);
|
| +
|
| + static SharingServiceShareTextParams deserialize(bindings.Message message) {
|
| + var decoder = new bindings.Decoder(message);
|
| + var result = decode(decoder);
|
| + if (decoder.excessHandles != null) {
|
| + decoder.excessHandles.forEach((h) => h.close());
|
| + }
|
| + return result;
|
| + }
|
| +
|
| + static SharingServiceShareTextParams decode(bindings.Decoder decoder0) {
|
| + if (decoder0 == null) {
|
| + return null;
|
| + }
|
| + SharingServiceShareTextParams result = new SharingServiceShareTextParams();
|
| +
|
| + var mainDataHeader = decoder0.decodeStructDataHeader();
|
| + if (mainDataHeader.version <= kVersions.last.version) {
|
| + // Scan in reverse order to optimize for more recent versions.
|
| + for (int i = kVersions.length - 1; i >= 0; --i) {
|
| + if (mainDataHeader.version >= kVersions[i].version) {
|
| + if (mainDataHeader.size == kVersions[i].size) {
|
| + // Found a match.
|
| + break;
|
| + }
|
| + throw new bindings.MojoCodecError(
|
| + 'Header size doesn\'t correspond to known version size.');
|
| + }
|
| + }
|
| + } else if (mainDataHeader.size < kVersions.last.size) {
|
| + throw new bindings.MojoCodecError(
|
| + 'Message newer than the last known version cannot be shorter than '
|
| + 'required by the last known version.');
|
| + }
|
| + if (mainDataHeader.version >= 0) {
|
| +
|
| + result.text = decoder0.decodeString(8, false);
|
| + }
|
| + return result;
|
| + }
|
| +
|
| + void encode(bindings.Encoder encoder) {
|
| + var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
|
| +
|
| + encoder0.encodeString(text, 8, false);
|
| + }
|
| +
|
| + String toString() {
|
| + return "SharingServiceShareTextParams("
|
| + "text: $text" ")";
|
| + }
|
| +
|
| + Map toJson() {
|
| + Map map = new Map();
|
| + map["text"] = text;
|
| + return map;
|
| + }
|
| +}
|
| +
|
| +const int kSharingService_shareText_name = 0;
|
| +
|
| +const String SharingServiceName =
|
| + 'mojo::SharingService';
|
| +
|
| +abstract class SharingService {
|
| + void shareText(String text);
|
| +
|
| +}
|
| +
|
| +
|
| +class SharingServiceProxyImpl extends bindings.Proxy {
|
| + SharingServiceProxyImpl.fromEndpoint(
|
| + core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
|
| +
|
| + SharingServiceProxyImpl.fromHandle(core.MojoHandle handle) :
|
| + super.fromHandle(handle);
|
| +
|
| + SharingServiceProxyImpl.unbound() : super.unbound();
|
| +
|
| + static SharingServiceProxyImpl newFromEndpoint(
|
| + core.MojoMessagePipeEndpoint endpoint) {
|
| + assert(endpoint.setDescription("For SharingServiceProxyImpl"));
|
| + return new SharingServiceProxyImpl.fromEndpoint(endpoint);
|
| + }
|
| +
|
| + String get name => SharingServiceName;
|
| +
|
| + void handleResponse(bindings.ServiceMessage message) {
|
| + switch (message.header.type) {
|
| + default:
|
| + proxyError("Unexpected message type: ${message.header.type}");
|
| + close(immediate: true);
|
| + break;
|
| + }
|
| + }
|
| +
|
| + String toString() {
|
| + var superString = super.toString();
|
| + return "SharingServiceProxyImpl($superString)";
|
| + }
|
| +}
|
| +
|
| +
|
| +class _SharingServiceProxyCalls implements SharingService {
|
| + SharingServiceProxyImpl _proxyImpl;
|
| +
|
| + _SharingServiceProxyCalls(this._proxyImpl);
|
| + void shareText(String text) {
|
| + if (!_proxyImpl.isBound) {
|
| + _proxyImpl.proxyError("The Proxy is closed.");
|
| + return;
|
| + }
|
| + var params = new SharingServiceShareTextParams();
|
| + params.text = text;
|
| + _proxyImpl.sendMessage(params, kSharingService_shareText_name);
|
| + }
|
| +
|
| +}
|
| +
|
| +
|
| +class SharingServiceProxy implements bindings.ProxyBase {
|
| + final bindings.Proxy impl;
|
| + SharingService ptr;
|
| + final String name = SharingServiceName;
|
| +
|
| + SharingServiceProxy(SharingServiceProxyImpl proxyImpl) :
|
| + impl = proxyImpl,
|
| + ptr = new _SharingServiceProxyCalls(proxyImpl);
|
| +
|
| + SharingServiceProxy.fromEndpoint(
|
| + core.MojoMessagePipeEndpoint endpoint) :
|
| + impl = new SharingServiceProxyImpl.fromEndpoint(endpoint) {
|
| + ptr = new _SharingServiceProxyCalls(impl);
|
| + }
|
| +
|
| + SharingServiceProxy.fromHandle(core.MojoHandle handle) :
|
| + impl = new SharingServiceProxyImpl.fromHandle(handle) {
|
| + ptr = new _SharingServiceProxyCalls(impl);
|
| + }
|
| +
|
| + SharingServiceProxy.unbound() :
|
| + impl = new SharingServiceProxyImpl.unbound() {
|
| + ptr = new _SharingServiceProxyCalls(impl);
|
| + }
|
| +
|
| + factory SharingServiceProxy.connectToService(
|
| + bindings.ServiceConnector s, String url) {
|
| + SharingServiceProxy p = new SharingServiceProxy.unbound();
|
| + s.connectToService(url, p);
|
| + return p;
|
| + }
|
| +
|
| + static SharingServiceProxy newFromEndpoint(
|
| + core.MojoMessagePipeEndpoint endpoint) {
|
| + assert(endpoint.setDescription("For SharingServiceProxy"));
|
| + return new SharingServiceProxy.fromEndpoint(endpoint);
|
| + }
|
| +
|
| + Future close({bool immediate: false}) => impl.close(immediate: immediate);
|
| +
|
| + Future responseOrError(Future f) => impl.responseOrError(f);
|
| +
|
| + Future get errorFuture => impl.errorFuture;
|
| +
|
| + int get version => impl.version;
|
| +
|
| + Future<int> queryVersion() => impl.queryVersion();
|
| +
|
| + void requireVersion(int requiredVersion) {
|
| + impl.requireVersion(requiredVersion);
|
| + }
|
| +
|
| + String toString() {
|
| + return "SharingServiceProxy($impl)";
|
| + }
|
| +}
|
| +
|
| +
|
| +class SharingServiceStub extends bindings.Stub {
|
| + SharingService _impl = null;
|
| +
|
| + SharingServiceStub.fromEndpoint(
|
| + core.MojoMessagePipeEndpoint endpoint, [this._impl])
|
| + : super.fromEndpoint(endpoint);
|
| +
|
| + SharingServiceStub.fromHandle(core.MojoHandle handle, [this._impl])
|
| + : super.fromHandle(handle);
|
| +
|
| + SharingServiceStub.unbound() : super.unbound();
|
| +
|
| + static SharingServiceStub newFromEndpoint(
|
| + core.MojoMessagePipeEndpoint endpoint) {
|
| + assert(endpoint.setDescription("For SharingServiceStub"));
|
| + return new SharingServiceStub.fromEndpoint(endpoint);
|
| + }
|
| +
|
| + static const String name = SharingServiceName;
|
| +
|
| +
|
| +
|
| + dynamic handleMessage(bindings.ServiceMessage message) {
|
| + if (bindings.ControlMessageHandler.isControlMessage(message)) {
|
| + return bindings.ControlMessageHandler.handleMessage(this,
|
| + 0,
|
| + message);
|
| + }
|
| + assert(_impl != null);
|
| + switch (message.header.type) {
|
| + case kSharingService_shareText_name:
|
| + var params = SharingServiceShareTextParams.deserialize(
|
| + message.payload);
|
| + _impl.shareText(params.text);
|
| + break;
|
| + default:
|
| + throw new bindings.MojoCodecError("Unexpected message name");
|
| + break;
|
| + }
|
| + return null;
|
| + }
|
| +
|
| + SharingService get impl => _impl;
|
| + set impl(SharingService d) {
|
| + assert(_impl == null);
|
| + _impl = d;
|
| + }
|
| +
|
| + String toString() {
|
| + var superString = super.toString();
|
| + return "SharingServiceStub($superString)";
|
| + }
|
| +
|
| + int get version => 0;
|
| +}
|
| +
|
| +
|
|
|