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
|
// Copyright 2010 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @fileoverview An abstract superclass for message channels that handles the
* repetitive details of registering and dispatching to services. This is more
* useful for full-fledged channels than for decorators, since decorators
* generally delegate service registering anyway.
*
*/
goog.provide('goog.messaging.AbstractChannel');
goog.require('goog.Disposable');
goog.require('goog.json');
goog.require('goog.log');
goog.require('goog.messaging.MessageChannel'); // interface
/**
* Creates an abstract message channel.
*
* @constructor
* @extends {goog.Disposable}
* @implements {goog.messaging.MessageChannel}
*/
goog.messaging.AbstractChannel = function() {
goog.messaging.AbstractChannel.base(this, 'constructor');
/**
* The services registered for this channel.
* @type {Object<string, {callback: function((string|!Object)),
objectPayload: boolean}>}
* @private
*/
this.services_ = {};
};
goog.inherits(goog.messaging.AbstractChannel, goog.Disposable);
/**
* The default service to be run when no other services match.
*
* @type {?function(string, (string|!Object))}
* @private
*/
goog.messaging.AbstractChannel.prototype.defaultService_;
/**
* Logger for this class.
* @type {goog.log.Logger}
* @protected
*/
goog.messaging.AbstractChannel.prototype.logger =
goog.log.getLogger('goog.messaging.AbstractChannel');
/**
* Immediately calls opt_connectCb if given, and is otherwise a no-op. If
* subclasses have configuration that needs to happen before the channel is
* connected, they should override this and {@link #isConnected}.
* @override
*/
goog.messaging.AbstractChannel.prototype.connect = function(opt_connectCb) {
if (opt_connectCb) {
opt_connectCb();
}
};
/**
* Always returns true. If subclasses have configuration that needs to happen
* before the channel is connected, they should override this and
* {@link #connect}.
* @override
*/
goog.messaging.AbstractChannel.prototype.isConnected = function() {
return true;
};
/** @override */
goog.messaging.AbstractChannel.prototype.registerService = function(
serviceName, callback, opt_objectPayload) {
this.services_[serviceName] = {
callback: callback,
objectPayload: !!opt_objectPayload
};
};
/** @override */
goog.messaging.AbstractChannel.prototype.registerDefaultService = function(
callback) {
this.defaultService_ = callback;
};
/** @override */
goog.messaging.AbstractChannel.prototype.send = goog.abstractMethod;
/**
* Delivers a message to the appropriate service. This is meant to be called by
* subclasses when they receive messages.
*
* This method takes into account both explicitly-registered and default
* services, as well as making sure that JSON payloads are decoded when
* necessary. If the subclass is capable of passing objects as payloads, those
* objects can be passed in to this method directly. Otherwise, the (potentially
* JSON-encoded) strings should be passed in.
*
* @param {string} serviceName The name of the service receiving the message.
* @param {string|!Object} payload The contents of the message.
* @protected
*/
goog.messaging.AbstractChannel.prototype.deliver = function(
serviceName, payload) {
var service = this.getService(serviceName, payload);
if (!service) {
return;
}
var decodedPayload =
this.decodePayload(serviceName, payload, service.objectPayload);
if (goog.isDefAndNotNull(decodedPayload)) {
service.callback(decodedPayload);
}
};
/**
* Find the service object for a given service name. If there's no service
* explicitly registered, but there is a default service, a service object is
* constructed for it.
*
* @param {string} serviceName The name of the service receiving the message.
* @param {string|!Object} payload The contents of the message.
* @return {?{callback: function((string|!Object)), objectPayload: boolean}} The
* service object for the given service, or null if none was found.
* @protected
*/
goog.messaging.AbstractChannel.prototype.getService = function(
serviceName, payload) {
var service = this.services_[serviceName];
if (service) {
return service;
} else if (this.defaultService_) {
var callback = goog.partial(this.defaultService_, serviceName);
var objectPayload = goog.isObject(payload);
return {callback: callback, objectPayload: objectPayload};
}
goog.log.warning(this.logger, 'Unknown service name "' + serviceName + '"');
return null;
};
/**
* Converts the message payload into the format expected by the registered
* service (either JSON or string).
*
* @param {string} serviceName The name of the service receiving the message.
* @param {string|!Object} payload The contents of the message.
* @param {boolean} objectPayload Whether the service expects an object or a
* plain string.
* @return {string|Object} The payload in the format expected by the service, or
* null if something went wrong.
* @protected
*/
goog.messaging.AbstractChannel.prototype.decodePayload = function(
serviceName, payload, objectPayload) {
if (objectPayload && goog.isString(payload)) {
try {
return /** @type {!Object} */ (JSON.parse(payload));
} catch (err) {
goog.log.warning(
this.logger, 'Expected JSON payload for ' + serviceName + ', was "' +
payload + '"');
return null;
}
} else if (!objectPayload && !goog.isString(payload)) {
return goog.json.serialize(payload);
}
return payload;
};
/** @override */
goog.messaging.AbstractChannel.prototype.disposeInternal = function() {
goog.messaging.AbstractChannel.base(this, 'disposeInternal');
delete this.services_;
delete this.defaultService_;
};
|