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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
|
// 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.
/**
* @fileoverview
* Interface abstracting the Application functionality.
*/
'use strict';
/** @suppress {duplicate} */
var remoting = remoting || {};
/**
* @param {Array<string>} appCapabilities Array of application capabilities.
* @constructor
* @implements {remoting.ApplicationInterface}
*/
remoting.Application = function(appCapabilities) {
// Create global factories.
remoting.ClientPlugin.factory = new remoting.DefaultClientPluginFactory();
remoting.SessionConnector.factory =
new remoting.DefaultSessionConnectorFactory();
/** @private {Array<string>} */
this.appCapabilities_ = [
remoting.ClientSession.Capability.SEND_INITIAL_RESOLUTION,
remoting.ClientSession.Capability.RATE_LIMIT_RESIZE_REQUESTS,
remoting.ClientSession.Capability.VIDEO_RECORDER
];
// Append the app-specific capabilities.
this.appCapabilities_.push.apply(this.appCapabilities_, appCapabilities);
/** @protected {remoting.SessionConnector} */
this.sessionConnector_ = remoting.SessionConnector.factory.createConnector(
document.getElementById('client-container'),
this.onConnected_.bind(this),
this.onError_.bind(this),
this.onConnectionFailed_.bind(this),
this.appCapabilities_);
/** @protected {remoting.Application.Mode} */
this.connectionMode_ = remoting.Application.Mode.ME2ME;
/** @private {base.Disposable} */
this.sessionConnectedHooks_ = null;
};
/**
* The current application mode (IT2Me, Me2Me or AppRemoting).
*
* TODO(kelvinp): Remove this when Me2Me and It2Me are abstracted into its
* own flow objects.
*
* @enum {number}
*/
remoting.Application.Mode = {
IT2ME: 0,
ME2ME: 1,
APP_REMOTING: 2
};
/**
* @return {remoting.SessionConnector} The session connector.
*/
remoting.Application.prototype.getSessionConnector = function() {
return this.sessionConnector_;
};
/**
* Get the connection mode (Me2Me, IT2Me or AppRemoting).
*
* @return {remoting.Application.Mode}
*/
remoting.Application.prototype.getConnectionMode = function() {
return this.connectionMode_;
};
/**
* Set the connection mode (Me2Me, IT2Me or AppRemoting).
*
* @param {remoting.Application.Mode} mode
*/
remoting.Application.prototype.setConnectionMode = function(mode) {
this.connectionMode_ = mode;
};
/**
* @param {remoting.ClientSession.Capability} capability
* @return {boolean}
*/
remoting.Application.prototype.hasCapability = function(capability) {
var capabilities = this.appCapabilities_;
return capabilities.indexOf(capability) != -1;
};
/* Disconnect the remoting client. */
remoting.Application.prototype.disconnect = function() {
if (remoting.clientSession) {
remoting.clientSession.disconnect(remoting.Error.none());
console.log('Disconnected.');
}
};
/* Public method to exit the application. */
remoting.Application.prototype.quit = function() {
this.exitApplication_();
};
/**
* Close the main window when quitting the application. This should be called
* by exitApplication() in the subclass.
* @protected
*/
remoting.Application.prototype.closeMainWindow_ = function() {
chrome.app.window.current().close();
};
/**
* Initialize the application and register all event handlers. After this
* is called, the app is running and waiting for user events.
*/
remoting.Application.prototype.start = function() {
// TODO(garykac): This should be owned properly rather than living in the
// global 'remoting' namespace.
remoting.settings = new remoting.Settings();
remoting.initGlobalObjects();
remoting.initIdentity();
this.initApplication_();
var that = this;
remoting.identity.getToken().
then(this.startApplication_.bind(this)).
catch(remoting.Error.handler(
function(/** !remoting.Error */ error) {
if (error.hasTag(remoting.Error.Tag.CANCELLED)) {
that.exitApplication_();
} else {
that.signInFailed_(error);
}
}
)
);
};
/**
* Called when a new session has been connected.
*
* @param {remoting.ConnectionInfo} connectionInfo
* @return {void} Nothing.
* @protected
*/
remoting.Application.prototype.initSession_ = function(connectionInfo) {
this.sessionConnectedHooks_ = new base.Disposables(
new base.EventHook(connectionInfo.session(), 'stateChanged',
this.onSessionFinished_.bind(this)),
new base.RepeatingTimer(this.updateStatistics_.bind(this), 1000)
);
};
/**
* Callback function called when the state of the client plugin changes. The
* current and previous states are available via the |state| member variable.
*
* @param {remoting.ClientSession.StateEvent=} state
* @private
*/
remoting.Application.prototype.onSessionFinished_ = function(state) {
switch (state.current) {
case remoting.ClientSession.State.CLOSED:
console.log('Connection closed by host');
this.onDisconnected_();
break;
case remoting.ClientSession.State.FAILED:
var error = remoting.clientSession.getError();
console.error('Client plugin reported connection failed: ' +
error.toString());
if (error === null) {
error = remoting.Error.unexpected();
}
this.onError_(error);
break;
default:
console.error('Unexpected client plugin state: ' + state.current);
// This should only happen if the web-app and client plugin get out of
// sync, so MISSING_PLUGIN is a suitable error.
this.onError_(new remoting.Error(remoting.Error.Tag.MISSING_PLUGIN));
break;
}
base.dispose(this.sessionConnectedHooks_);
this.sessionConnectedHooks_= null;
this.sessionConnector_.closeSession();
};
/** @private */
remoting.Application.prototype.updateStatistics_ = function() {
var perfstats = remoting.clientSession.getPerfStats();
remoting.stats.update(perfstats);
remoting.clientSession.logStatistics(perfstats);
};
/*
* remoting.ApplicationInterface
* These functions must be overridden in the subclass.
*/
/** @return {string} */
remoting.Application.prototype.getApplicationName = function() {
base.debug.assert(false, "Subclass must override");
};
/**
* @param {!remoting.Error} error
* @protected
*/
remoting.Application.prototype.signInFailed_ = function(error) {
base.debug.assert(false, "Subclass must override");
};
/** @protected */
remoting.Application.prototype.initApplication_ = function() {
base.debug.assert(false, "Subclass must override");
};
/**
* @param {string} token
* @protected
*/
remoting.Application.prototype.startApplication_ = function(token) {
base.debug.assert(false, "Subclass must override");
};
/** @protected */
remoting.Application.prototype.exitApplication_ = function() {
base.debug.assert(false, "Subclass must override");
};
/**
* @param {remoting.ConnectionInfo} connectionInfo
* @protected
*/
remoting.Application.prototype.onConnected_ = function(connectionInfo) {
base.debug.assert(false, "Subclass must override");
};
/** @protected */
remoting.Application.prototype.onDisconnected_ = function() {
base.debug.assert(false, "Subclass must override");
};
/**
* @param {!remoting.Error} error
* @protected
*/
remoting.Application.prototype.onConnectionFailed_ = function(error) {
base.debug.assert(false, "Subclass must override");
};
/**
* @param {!remoting.Error} error The error to be localized and displayed.
* @protected
*/
remoting.Application.prototype.onError_ = function(error) {
base.debug.assert(false, "Subclass must override");
};
/**
* The interface specifies the methods that a subclass of remoting.Application
* is required implement to override the default behavior.
*
* @interface
*/
remoting.ApplicationInterface = function() {};
/**
* @return {string} Application product name to be used in UI.
*/
remoting.ApplicationInterface.prototype.getApplicationName = function() {};
/**
* Report an authentication error to the user. This is called in lieu of
* startApplication() if the user cannot be authenticated or if they decline
* the app permissions.
*
* @param {!remoting.Error} error The failure reason.
*/
remoting.ApplicationInterface.prototype.signInFailed_ = function(error) {};
/**
* Initialize the application. This is called before an OAuth token is requested
* and should be used for tasks such as initializing the DOM, registering event
* handlers, etc. After this is called, the app is running and waiting for
* user events.
*/
remoting.ApplicationInterface.prototype.initApplication_ = function() {};
/**
* Start the application. Once startApplication() is called, we can assume that
* the user has consented to all permissions specified in the manifest.
*
* @param {string} token An OAuth access token. The app should not cache
* this token, but can assume that it will remain valid during application
* start-up.
*/
remoting.ApplicationInterface.prototype.startApplication_ = function(token) {};
/**
* Close down the application before exiting.
*/
remoting.ApplicationInterface.prototype.exitApplication_ = function() {};
/**
* Called when a new session has been connected.
*
* @param {remoting.ConnectionInfo} connectionInfo
*/
remoting.ApplicationInterface.prototype.onConnected_ =
function(connectionInfo) {};
/**
* Called when the current session has been disconnected.
*/
remoting.ApplicationInterface.prototype.onDisconnected_ = function() {};
/**
* Called when the current session's connection has failed.
*
* @param {!remoting.Error} error
*/
remoting.ApplicationInterface.prototype.onConnectionFailed_ =
function(error) {};
/**
* Called when an error needs to be displayed to the user.
*
* @param {!remoting.Error} errorTag The error to be localized and displayed.
*/
remoting.ApplicationInterface.prototype.onError_ = function(errorTag) {};
/** @type {remoting.Application} */
remoting.app = null;
|