Remove base.debug.assert.
[chromium-blink-merge.git] / remoting / webapp / base / js / wcs_adapter.js
blobb041b89c67d0eb00995ae6306415dd38dfab95f8
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 'use strict';
7 /** @suppress {duplicate} */
8 var remoting = remoting || {};
10 /**
11  * WCS-based SignalStrategy implementation. Used instead of XMPPConnection
12  * when XMPP cannot be used (e.g. in V1 app).
13  *
14  * @constructor
15  * @implements {remoting.SignalStrategy}
16  */
17 remoting.WcsAdapter = function() {
18   /** @private {?function(remoting.SignalStrategy.State):void} */
19   this.onStateChangedCallback_ = null;
20   /** @private {?function(Element):void} */
21   this.onIncomingStanzaCallback_ = null;
22   /** @private */
23   this.state_ = remoting.SignalStrategy.State.NOT_CONNECTED;
24   /** @private */
25   this.jid_ = '';
26   /** @private */
27   this.error_ = remoting.Error.none();
30 /**
31  * @param {function(remoting.SignalStrategy.State):void} onStateChangedCallback
32  */
33 remoting.WcsAdapter.prototype.setStateChangedCallback = function(
34     onStateChangedCallback) {
35   this.onStateChangedCallback_ = onStateChangedCallback;
38 /**
39  * @param {?function(Element):void} onIncomingStanzaCallback Callback to call on
40  *     incoming messages.
41  */
42 remoting.WcsAdapter.prototype.setIncomingStanzaCallback =
43     function(onIncomingStanzaCallback) {
44   this.onIncomingStanzaCallback_ = onIncomingStanzaCallback;
47 /**
48  * @param {string} server
49  * @param {string} username
50  * @param {string} authToken
51  */
52 remoting.WcsAdapter.prototype.connect = function(server, username, authToken) {
53   console.assert(this.onStateChangedCallback_ != null,
54                 'No state-change callback registered.');
56   remoting.wcsSandbox.setOnIq(this.onIncomingStanza_.bind(this));
57   remoting.wcsSandbox.connect(this.onWcsConnected_.bind(this),
58                               this.onError_.bind(this));
61 /** @return {remoting.SignalStrategy.State} Current state */
62 remoting.WcsAdapter.prototype.getState = function() {
63   return this.state_;
66 /** @return {!remoting.Error} Error when in FAILED state. */
67 remoting.WcsAdapter.prototype.getError = function() {
68   return this.error_;
71 /** @return {string} Current JID when in CONNECTED state. */
72 remoting.WcsAdapter.prototype.getJid = function() {
73   return this.jid_;
76 /** @return {remoting.SignalStrategy.Type} The signal strategy type. */
77 remoting.WcsAdapter.prototype.getType = function() {
78   return remoting.SignalStrategy.Type.WCS;
81 remoting.WcsAdapter.prototype.dispose = function() {
82   this.setState_(remoting.SignalStrategy.State.CLOSED);
83   remoting.wcsSandbox.setOnIq(null);
86 /** @param {string} message */
87 remoting.WcsAdapter.prototype.sendMessage = function(message) {
88   // Extract the session id, so we can close the session later.
89   // HACK: Add 'x' prefix to the IDs of the outgoing messages to make sure that
90   // stanza IDs used by host and client do not match. This is necessary to
91   // workaround bug in the signaling endpoint used by chromoting.
92   // TODO(sergeyu): Remove this hack once the server-side bug is fixed.
93   var parser = new DOMParser();
94   var iqNode = parser.parseFromString(message, 'text/xml').firstChild;
95   var type = iqNode.getAttribute('type');
96   if (type == 'set') {
97     var id = iqNode.getAttribute('id');
98     iqNode.setAttribute('id', 'x' + id);
99     message = (new XMLSerializer()).serializeToString(iqNode);
100   }
102   // Send the stanza.
103   remoting.wcsSandbox.sendIq(message);
106 remoting.WcsAdapter.prototype.sendConnectionSetupResults =
107     function(logger) {
110 /** @param {string} jid */
111 remoting.WcsAdapter.prototype.onWcsConnected_ = function(jid) {
112   this.jid_ = jid;
113   this.setState_(remoting.SignalStrategy.State.CONNECTED);
116 /** @param {string} stanza */
117 remoting.WcsAdapter.prototype.onIncomingStanza_ = function(stanza) {
118   var parser = new DOMParser();
119   var parsed = parser.parseFromString(stanza, 'text/xml').firstChild;
121   // HACK: Remove 'x' prefix added to the id in sendMessage().
122   try {
123     var type = parsed.getAttribute('type');
124     var id = parsed.getAttribute('id');
125     if (type != 'set' && id.charAt(0) == 'x') {
126       parsed.setAttribute('id', id.substr(1));
127     }
128   } catch (err) {
129     // Pass message as is when it is malformed.
130   }
132   if (this.onIncomingStanzaCallback_) {
133     this.onIncomingStanzaCallback_(parsed);
134   }
137 /** @param {!remoting.Error} error */
138 remoting.WcsAdapter.prototype.onError_ = function(error) {
139   this.error_ = error;
140   this.setState_(remoting.SignalStrategy.State.FAILED);
144  * @param {remoting.SignalStrategy.State} newState
145  * @private
146  */
147 remoting.WcsAdapter.prototype.setState_ = function(newState) {
148   if (this.state_ != newState) {
149     this.state_ = newState;
150     this.onStateChangedCallback_(this.state_);
151   }