| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'mojo:application'; | 6 import 'mojo:application'; |
| 7 import 'mojo:bindings'; | 7 import 'mojo:bindings'; |
| 8 import 'mojo:core'; | 8 import 'mojo:core'; |
| 9 | 9 |
| 10 import 'package:services/dart/test/pingpong_service.mojom.dart'; | 10 import 'package:services/dart/test/pingpong_service.mojom.dart'; |
| 11 | 11 |
| 12 class PingPongServiceImpl implements PingPongService { | 12 class PingPongServiceImpl implements PingPongService { |
| 13 PingPongServiceStub _stub; | 13 PingPongServiceBinding _binding; |
| 14 Application _application; | 14 Application _application; |
| 15 PingPongClientProxy _pingPongClient; | 15 PingPongClientProxy _pingPongClient; |
| 16 | 16 |
| 17 PingPongServiceImpl(Application application, MojoMessagePipeEndpoint endpoint) | 17 PingPongServiceImpl(Application application, MojoMessagePipeEndpoint endpoint) |
| 18 : _application = application { | 18 : _application = application { |
| 19 _stub = new PingPongServiceStub.fromEndpoint(endpoint) | 19 _binding = new PingPongServiceBinding.fromEndpoint( |
| 20 ..delegate = this | 20 endpoint, delegate: this); |
| 21 ..listen(); | |
| 22 } | 21 } |
| 23 | 22 |
| 24 void setClient(ProxyBase proxyBase) { | 23 void setClient(ProxyBase proxyBase) { |
| 25 assert(_pingPongClient == null); | 24 assert(_pingPongClient == null); |
| 26 _pingPongClient = proxyBase; | 25 _pingPongClient = proxyBase; |
| 27 } | 26 } |
| 28 | 27 |
| 29 void ping(int pingValue) => _pingPongClient.ptr.pong(pingValue + 1); | 28 void ping(int pingValue) => _pingPongClient.ptr.pong(pingValue + 1); |
| 30 | 29 |
| 31 void quit() { | 30 void quit() { |
| 32 if (_pingPongClient != null) { | 31 if (_pingPongClient != null) { |
| 33 _pingPongClient.close(); | 32 _pingPongClient.close(); |
| 34 _pingPongClient = null; | 33 _pingPongClient = null; |
| 35 } | 34 } |
| 36 _stub.close(); | 35 _binding.close(); |
| 37 if (_application != null) { | |
| 38 _application.close(); | |
| 39 } | |
| 40 } | 36 } |
| 41 } | 37 } |
| 42 | 38 |
| 43 class PingPongApplication extends Application { | 39 class PingPongApplication extends Application { |
| 44 PingPongApplication.fromHandle(MojoHandle handle) : super.fromHandle(handle); | 40 PingPongApplication.fromHandle(MojoHandle handle) : super.fromHandle(handle); |
| 45 | 41 |
| 46 void acceptConnection(String requestorUrl, ApplicationConnection connection) { | 42 void acceptConnection(String requestorUrl, |
| 43 ApplicationConnection connection, |
| 44 String resolvedUrl) { |
| 47 connection.provideService(PingPongServiceName, | 45 connection.provideService(PingPongServiceName, |
| 48 (endpoint) => new PingPongServiceImpl(this, endpoint)); | 46 (endpoint) => new PingPongServiceImpl(this, endpoint)); |
| 49 connection.listen(); | 47 // Close the application when the first connection goes down. |
| 48 connection.listen(onClosed: close); |
| 50 } | 49 } |
| 51 } | 50 } |
| 52 | 51 |
| 53 main(List args) { | 52 main(List args) { |
| 54 MojoHandle appHandle = new MojoHandle(args[0]); | 53 MojoHandle appHandle = new MojoHandle(args[0]); |
| 55 String url = args[1]; | 54 String url = args[1]; |
| 56 new PingPongApplication.fromHandle(appHandle); | 55 new PingPongApplication.fromHandle(appHandle); |
| 57 } | 56 } |
| OLD | NEW |