1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
// 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.
define("mojo/services/public/js/mojo", [
"mojo/public/interfaces/application/service_provider.mojom",
"mojo/public/js/connection",
"mojo/public/js/core",
"services/js/bridge",
], function(service, connection, core, bridge) {
function Shell() {
this.applications_ = new Map();
}
Shell.prototype.connectToApplication = function(url) {
var application = this.applications_.get(url);
if (application)
return application;
application = new ServiceProvider(bridge.connectToApplication(url));
this.applications_.set(url, application);
return application;
};
Shell.prototype.connectToService = function (url, service, client) {
return this.connectToApplication(url).connectToService(service, client);
};
Shell.prototype.close = function() {
shell().applications_.forEach(function(application, url) {
application.close();
});
shell().applications_.clear();
};
var shellValue = null;
function shell() {
if (!shellValue)
shellValue = new Shell();
return shellValue;
}
var requestorValue = null;
function requestor() {
if (!requestorValue) {
var handle = bridge.requestorMessagePipeHandle();
requestorValue = handle && new ServiceProvider(handle);
}
return requestorValue;
}
function connectToServiceImpl(serviceName, serviceHandle) {
var provider = this.providers_.get(serviceName);
if (!provider) {
this.pendingRequests_.set(serviceName, serviceHandle);
return;
}
var serviceConnection = new connection.Connection(
serviceHandle,
provider.service.stubClass,
provider.service.client && provider.service.client.proxyClass);
serviceConnection.local.connection$ = serviceConnection;
serviceConnection.local.delegate$ =
new provider.factory(serviceConnection.remote);
provider.connections.push(serviceConnection);
}
function ServiceProvider(messagePipeHandle) {
// TODO(hansmuller): if messagePipeHandle is null, throw an exception.
this.connections_ = new Map();
this.providers_ = new Map();
this.pendingRequests_ = new Map();
this.connection_ = null;
this.handle_ = messagePipeHandle;
this.connection_ = new connection.Connection(
this.handle_,
service.ServiceProvider.client.stubClass,
service.ServiceProvider.proxyClass);
this.connection_.local.delegate$ = {
connectToService: connectToServiceImpl.bind(this)
};
}
ServiceProvider.prototype.provideService = function(service, factory) {
// TODO(hansmuller): if !factory, remove provider and close its connections.
// TODO(hansmuller): if this.connection_ is null, throw an error.
var provider = {
service: service,
factory: factory,
connections: [],
};
this.providers_.set(service.name, provider);
if (this.pendingRequests_.has(service.name)) {
connectToServiceImpl(service.name, pendingRequests_.get(service.name));
pendingRequests_.delete(service.name);
}
return this;
};
ServiceProvider.prototype.connectToService = function(service, client) {
// TODO(hansmuler): if service.name isn't defined, throw an error.
// TODO(hansmuller): if this.connection_ is null, throw an error.
var serviceConnection = this.connections_.get(service.name);
if (serviceConnection)
return serviceConnection.remote;
var pipe = core.createMessagePipe();
this.connection_.remote.connectToService(service.name, pipe.handle1);
var clientClass = client && service.client.stubClass;
var serviceConnection =
new connection.Connection(pipe.handle0, clientClass, service.proxyClass);
if (serviceConnection.local)
serviceConnection.local.delegate$ = client;
this.connections_.set(service.name, serviceConnection);
return serviceConnection.remote;
};
ServiceProvider.prototype.close = function() {
if (!this.connection_)
return;
try {
// Outgoing connections
this.connections_.forEach(function(connection, serviceName) {
connection.close();
});
// Incoming connections
this.providers_.forEach(function(provider, serviceName) {
provider.connections.forEach(function(connection) {
connection.close();
});
});
this.connection_.close();
} finally {
this.connections_ = null;
this.providers_ = null;
this.pendingRequests_ = null;
this.connection_ = null;
this.handle_ = null;
shell().applications_.forEach(function(application, url) {
if (application === this)
shell().applications_.delete(url);
}, this);
}
};
function quit() {
if (requestorValue)
requestor().close();
if (shellValue)
shell().close();
bridge.quit();
}
var exports = {};
exports.requestor = requestor;
exports.shell = shell;
exports.quit = quit;
return exports;
});
|