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

Unified Diff: mojo/dart/packages/_mojo_for_test_only/lib/math/math_calculator.mojom.dart

Issue 1998433002: Dart: Adds Interface and InterfaceRequest interfaces. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Merge Created 4 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
Index: mojo/dart/packages/_mojo_for_test_only/lib/math/math_calculator.mojom.dart
diff --git a/mojo/dart/packages/_mojo_for_test_only/lib/math/math_calculator.mojom.dart b/mojo/dart/packages/_mojo_for_test_only/lib/math/math_calculator.mojom.dart
index dca654048f2020dedbdbb42b7585c12567fa6fb6..ec8d24d998b97ac56c466dc5d717dda4fd04be0d 100644
--- a/mojo/dart/packages/_mojo_for_test_only/lib/math/math_calculator.mojom.dart
+++ b/mojo/dart/packages/_mojo_for_test_only/lib/math/math_calculator.mojom.dart
@@ -449,14 +449,52 @@ class _CalculatorServiceDescription implements service_describer.ServiceDescript
abstract class Calculator {
static const String serviceName = null;
+
+ static service_describer.ServiceDescription _cachedServiceDescription;
+ static service_describer.ServiceDescription get serviceDescription {
+ if (_cachedServiceDescription == null) {
+ _cachedServiceDescription = new _CalculatorServiceDescription();
+ }
+ return _cachedServiceDescription;
+ }
+
+ static CalculatorProxy connectToService(
+ bindings.ServiceConnector s, String url, [String serviceName]) {
+ CalculatorProxy p = new CalculatorProxy.unbound();
+ String name = serviceName ?? Calculator.serviceName;
+ if ((name == null) || name.isEmpty) {
+ throw new core.MojoApiError(
+ "If an interface has no ServiceName, then one must be provided.");
+ }
+ s.connectToService(url, p, name);
+ return p;
+ }
dynamic clear([Function responseFactory = null]);
dynamic add(double value,[Function responseFactory = null]);
dynamic multiply(double value,[Function responseFactory = null]);
}
+abstract class CalculatorInterface
+ implements bindings.MojoInterface<Calculator>,
+ Calculator {
+ factory CalculatorInterface([Calculator impl]) =>
+ new CalculatorStub.unbound(impl);
+ factory CalculatorInterface.fromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint,
+ [Calculator impl]) =>
+ new CalculatorStub.fromEndpoint(endpoint, impl);
+}
+
+abstract class CalculatorInterfaceRequest
+ implements bindings.MojoInterface<Calculator>,
+ Calculator {
+ factory CalculatorInterfaceRequest() =>
+ new CalculatorProxy.unbound();
+}
+
class _CalculatorProxyControl
extends bindings.ProxyMessageHandler
- implements bindings.ProxyControl {
+ implements bindings.ProxyControl<Calculator> {
_CalculatorProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
@@ -465,9 +503,6 @@ class _CalculatorProxyControl
_CalculatorProxyControl.unbound() : super.unbound();
- service_describer.ServiceDescription get serviceDescription =>
- new _CalculatorServiceDescription();
-
String get serviceName => Calculator.serviceName;
void handleResponse(bindings.ServiceMessage message) {
@@ -539,6 +574,11 @@ class _CalculatorProxyControl
}
}
+ Calculator get impl => null;
+ set impl(Calculator _) {
+ throw new core.MojoApiError("The impl of a Proxy cannot be set.");
+ }
+
@override
String toString() {
var superString = super.toString();
@@ -547,8 +587,10 @@ class _CalculatorProxyControl
}
class CalculatorProxy
- extends bindings.Proxy
- implements Calculator {
+ extends bindings.Proxy<Calculator>
+ implements Calculator,
+ CalculatorInterface,
+ CalculatorInterfaceRequest {
CalculatorProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _CalculatorProxyControl.fromEndpoint(endpoint));
@@ -565,13 +607,6 @@ class CalculatorProxy
return new CalculatorProxy.fromEndpoint(endpoint);
}
- factory CalculatorProxy.connectToService(
- bindings.ServiceConnector s, String url, [String serviceName]) {
- CalculatorProxy p = new CalculatorProxy.unbound();
- s.connectToService(url, p, serviceName);
- return p;
- }
-
dynamic clear([Function responseFactory = null]) {
var params = new _CalculatorClearParams();
@@ -620,6 +655,8 @@ class _CalculatorStubControl
_CalculatorStubControl.unbound([this._impl]) : super.unbound();
+ String get serviceName => Calculator.serviceName;
+
CalculatorClearResponseParams _calculatorClearResponseParamsFactory(double value) {
var result = new CalculatorClearResponseParams();
@@ -744,19 +781,16 @@ class _CalculatorStubControl
}
int get version => 0;
-
- static service_describer.ServiceDescription _cachedServiceDescription;
- static service_describer.ServiceDescription get serviceDescription {
- if (_cachedServiceDescription == null) {
- _cachedServiceDescription = new _CalculatorServiceDescription();
- }
- return _cachedServiceDescription;
- }
}
class CalculatorStub
extends bindings.Stub<Calculator>
- implements Calculator {
+ implements Calculator,
+ CalculatorInterface,
+ CalculatorInterfaceRequest {
+ CalculatorStub.unbound([Calculator impl])
+ : super(new _CalculatorStubControl.unbound(impl));
+
CalculatorStub.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [Calculator impl])
: super(new _CalculatorStubControl.fromEndpoint(endpoint, impl));
@@ -765,18 +799,12 @@ class CalculatorStub
core.MojoHandle handle, [Calculator impl])
: super(new _CalculatorStubControl.fromHandle(handle, impl));
- CalculatorStub.unbound([Calculator impl])
- : super(new _CalculatorStubControl.unbound(impl));
-
static CalculatorStub newFromEndpoint(
core.MojoMessagePipeEndpoint endpoint) {
assert(endpoint.setDescription("For CalculatorStub"));
return new CalculatorStub.fromEndpoint(endpoint);
}
- static service_describer.ServiceDescription get serviceDescription =>
- _CalculatorStubControl.serviceDescription;
-
dynamic clear([Function responseFactory = null]) {
return impl.clear(responseFactory);

Powered by Google App Engine
This is Rietveld 408576698