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
|
// Copyright 2013 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.
/**
* Client used to connect to the remote ImageLoader extension. Client class runs
* in the extension, where the client.js is included (eg. Files.app).
* It sends remote requests using IPC to the ImageLoader class and forwards
* its responses.
*
* Implements cache, which is stored in the calling extension.
*
* @constructor
*/
function ImageLoaderClient() {
/**
* Hash array with active tasks.
* @type {!Object}
* @private
*/
this.tasks_ = {};
/**
* @type {number}
* @private
*/
this.lastTaskId_ = 0;
/**
* LRU cache for images.
* @type {!LRUCache.<{data: string, timestamp: ?number}>}
* @private
*/
this.cache_ = new LRUCache(ImageLoaderClient.CACHE_MEMORY_LIMIT);
}
/**
* Image loader's extension id.
* @const
* @type {string}
*/
ImageLoaderClient.EXTENSION_ID = 'pmfjbimdmchhbnneeidfognadeopoehp';
/**
* Returns a singleton instance.
* @return {ImageLoaderClient} Client instance.
*/
ImageLoaderClient.getInstance = function() {
if (!ImageLoaderClient.instance_)
ImageLoaderClient.instance_ = new ImageLoaderClient();
return ImageLoaderClient.instance_;
};
/**
* Records binary metrics. Counts for true and false are stored as a histogram.
* @param {string} name Histogram's name.
* @param {boolean} value True or false.
*/
ImageLoaderClient.recordBinary = function(name, value) {
chrome.metricsPrivate.recordValue(
{ metricName: 'ImageLoader.Client.' + name,
type: 'histogram-linear',
min: 1, // According to histogram.h, this should be 1 for enums.
max: 2, // Maximum should be exclusive.
buckets: 3 }, // Number of buckets: 0, 1 and overflowing 2.
value ? 1 : 0);
};
/**
* Records percent metrics, stored as a histogram.
* @param {string} name Histogram's name.
* @param {number} value Value (0..100).
*/
ImageLoaderClient.recordPercentage = function(name, value) {
chrome.metricsPrivate.recordPercentage('ImageLoader.Client.' + name,
Math.round(value));
};
/**
* Sends a message to the Image Loader extension.
* @param {Object} request Hash array with request data.
* @param {function(Object)=} opt_callback Response handling callback.
* The response is passed as a hash array.
* @private
*/
ImageLoaderClient.sendMessage_ = function(request, opt_callback) {
opt_callback = opt_callback || function(response) {};
chrome.runtime.sendMessage(
ImageLoaderClient.EXTENSION_ID, request, opt_callback);
};
/**
* Handles a message from the remote image loader and calls the registered
* callback to pass the response back to the requester.
*
* @param {Object} message Response message as a hash array.
* @private
*/
ImageLoaderClient.prototype.handleMessage_ = function(message) {
if (!(message.taskId in this.tasks_)) {
// This task has been canceled, but was already fetched, so it's result
// should be discarded anyway.
return;
}
var task = this.tasks_[message.taskId];
// Check if the task is still valid.
if (task.isValid())
task.accept(message);
delete this.tasks_[message.taskId];
};
/**
* Loads and resizes and image. Use opt_isValid to easily cancel requests
* which are not valid anymore, which will reduce cpu consumption.
*
* @param {string} url Url of the requested image.
* @param {function(Object)} callback Callback used to return response.
* @param {Object=} opt_options Loader options, such as: scale, maxHeight,
* width, height and/or cache.
* @param {function(): boolean=} opt_isValid Function returning false in case
* a request is not valid anymore, eg. parent node has been detached.
* @return {?number} Remote task id or null if loaded from cache.
*/
ImageLoaderClient.prototype.load = function(
url, callback, opt_options, opt_isValid) {
opt_options = /** @type {{cache: (boolean|undefined)}} */(opt_options || {});
opt_isValid = opt_isValid || function() { return true; };
// Record cache usage.
ImageLoaderClient.recordPercentage('Cache.Usage',
this.cache_.size() / ImageLoaderClient.CACHE_MEMORY_LIMIT * 100.0);
// Cancel old, invalid tasks.
var taskKeys = Object.keys(this.tasks_);
for (var index = 0; index < taskKeys.length; index++) {
var taskKey = taskKeys[index];
var task = this.tasks_[taskKey];
if (!task.isValid()) {
// Cancel this task since it is not valid anymore.
this.cancel(parseInt(taskKey, 10));
delete this.tasks_[taskKey];
}
}
// Replace the extension id.
var sourceId = chrome.i18n.getMessage('@@extension_id');
var targetId = ImageLoaderClient.EXTENSION_ID;
url = url.replace('filesystem:chrome-extension://' + sourceId,
'filesystem:chrome-extension://' + targetId);
// Try to load from cache, if available.
var cacheKey = ImageLoaderClient.createKey(url, opt_options);
if (cacheKey) {
if (opt_options.cache) {
// Load from cache.
ImageLoaderClient.recordBinary('Cached', true);
var cachedValue = this.cache_.get(cacheKey);
// Check if the image in cache is up to date. If not, then remove it.
if (cachedValue && cachedValue.timestamp != opt_options.timestamp) {
this.cache_.remove(cacheKey);
cachedValue = null;
}
if (cachedValue && cachedValue.data) {
ImageLoaderClient.recordBinary('Cache.HitMiss', true);
callback({status: 'success', data: cachedValue.data});
return null;
} else {
ImageLoaderClient.recordBinary('Cache.HitMiss', false);
}
} else {
// Remove from cache.
ImageLoaderClient.recordBinary('Cached', false);
this.cache_.remove(cacheKey);
}
}
// Not available in cache, performing a request to a remote extension.
var request = opt_options;
this.lastTaskId_++;
var task = {isValid: opt_isValid};
this.tasks_[this.lastTaskId_] = task;
request.url = url;
request.taskId = this.lastTaskId_;
request.timestamp = opt_options.timestamp;
ImageLoaderClient.sendMessage_(
request,
function(result) {
// Save to cache.
if (cacheKey && result.status == 'success' && opt_options.cache) {
var value = {
timestamp: opt_options.timestamp ? opt_options.timestamp : null,
data: result.data
};
this.cache_.put(cacheKey, value, result.data.length);
}
callback(result);
}.bind(this));
return request.taskId;
};
/**
* Cancels the request.
* @param {number} taskId Task id returned by ImageLoaderClient.load().
*/
ImageLoaderClient.prototype.cancel = function(taskId) {
ImageLoaderClient.sendMessage_({taskId: taskId, cancel: true});
};
/**
* Memory limit for images data in bytes.
*
* @const
* @type {number}
*/
ImageLoaderClient.CACHE_MEMORY_LIMIT = 20 * 1024 * 1024; // 20 MB.
/**
* Creates a cache key.
*
* @param {string} url Image url.
* @param {Object=} opt_options Loader options as a hash array.
* @return {?string} Cache key. It may return null if the class does not provide
* caches for the URL. (e.g. Data URL)
*/
ImageLoaderClient.createKey = function(url, opt_options) {
if (/^data:/i.test(url))
return null;
opt_options = opt_options || {};
return JSON.stringify({
url: url,
orientation: opt_options.orientation,
scale: opt_options.scale,
width: opt_options.width,
height: opt_options.height,
maxWidth: opt_options.maxWidth,
maxHeight: opt_options.maxHeight});
};
// Helper functions.
/**
* Loads and resizes and image. Use opt_isValid to easily cancel requests
* which are not valid anymore, which will reduce cpu consumption.
*
* @param {string} url Url of the requested image.
* @param {HTMLImageElement} image Image node to load the requested picture
* into.
* @param {Object} options Loader options, such as: orientation, scale,
* maxHeight, width, height and/or cache.
* @param {function()} onSuccess Callback for success.
* @param {function()} onError Callback for failure.
* @param {function(): boolean=} opt_isValid Function returning false in case
* a request is not valid anymore, eg. parent node has been detached.
* @return {?number} Remote task id or null if loaded from cache.
*/
ImageLoaderClient.loadToImage = function(
url, image, options, onSuccess, onError, opt_isValid) {
var callback = function(result) {
if (result.status == 'error') {
onError();
return;
}
image.src = result.data;
onSuccess();
};
return ImageLoaderClient.getInstance().load(
url, callback, options, opt_isValid);
};
|