BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / resources / cryptotoken / gnubbies.js
blob8cd25282f983fc260d486d7ef5c5bfe6b432b40f
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 /**
6  * @fileoverview A class for managing all enumerated gnubby devices.
7  */
8 'use strict';
10 /**
11  * @typedef {{
12  *   namespace: string,
13  *   device: number
14  * }}
15  */
16 var GnubbyDeviceId;
18 /**
19  * @typedef {{
20  *   isSharedAccess: boolean,
21  *   enumerate: function(function(Array)),
22  *   deviceToDeviceId: function(*): GnubbyDeviceId,
23  *   open: function(Gnubbies, number, *, function(number, GnubbyDevice=))
24  * }}
25  */
26 var GnubbyNamespaceImpl;
28 /**
29  * Manager of opened devices.
30  * @constructor
31  */
32 function Gnubbies() {
33   /** @private {Object<string, Array>} */
34   this.devs_ = {};
35   this.pendingEnumerate = [];  // clients awaiting an enumerate
36   /**
37    * The distinct namespaces registered in this Gnubbies instance, in order of
38    * registration.
39    * @private {Array<string>}
40    */
41   this.namespaces_ = [];
42   /** @private {Object<string, GnubbyNamespaceImpl>} */
43   this.impl_ = {};
44   /** @private {Object<string, Object<number, !GnubbyDevice>>} */
45   this.openDevs_ = {};
46   /** @private {Object<string, Object<number, *>>} */
47   this.pendingOpens_ = {};  // clients awaiting an open
50 /**
51  * Registers a new gnubby namespace, i.e. an implementation of the
52  * enumerate/open functions for all devices within a namespace.
53  * @param {string} namespace The namespace of the numerator, e.g. 'usb'.
54  * @param {GnubbyNamespaceImpl} impl The implementation.
55  */
56 Gnubbies.prototype.registerNamespace = function(namespace, impl) {
57   if (!this.impl_.hasOwnProperty(namespace)) {
58     this.namespaces_.push(namespace);
59   }
60   this.impl_[namespace] = impl;
63 /**
64  * @param {GnubbyDeviceId} id The device id.
65  * @return {boolean} Whether the device is a shared access device.
66  */
67 Gnubbies.prototype.isSharedAccess = function(id) {
68   if (!this.impl_.hasOwnProperty(id.namespace)) return false;
69   return this.impl_[id.namespace].isSharedAccess;
72 /**
73  * @param {GnubbyDeviceId} which The device to remove.
74  */
75 Gnubbies.prototype.removeOpenDevice = function(which) {
76   if (this.openDevs_[which.namespace] &&
77       this.openDevs_[which.namespace].hasOwnProperty(which.device)) {
78     delete this.openDevs_[which.namespace][which.device];
79   }
82 /** Close all enumerated devices. */
83 Gnubbies.prototype.closeAll = function() {
84   if (this.inactivityTimer) {
85     this.inactivityTimer.clearTimeout();
86     this.inactivityTimer = undefined;
87   }
88   // Close and stop talking to any gnubbies we have enumerated.
89   for (var namespace in this.openDevs_) {
90     for (var dev in this.openDevs_[namespace]) {
91       var deviceId = Number(dev);
92       this.openDevs_[namespace][deviceId].destroy();
93     }
94   }
95   this.devs_ = {};
96   this.openDevs_ = {};
99 /**
100  * @param {function(number, Array<GnubbyDeviceId>)} cb Called back with the
101  *     result of enumerating.
102  */
103 Gnubbies.prototype.enumerate = function(cb) {
104   if (!cb) {
105     cb = function(rc, indexes) {
106       var msg = 'defaultEnumerateCallback(' + rc;
107       if (indexes) {
108         msg += ', [';
109         for (var i = 0; i < indexes.length; i++) {
110           msg += JSON.stringify(indexes[i]);
111         }
112         msg += ']';
113       }
114       msg += ')';
115       console.log(UTIL_fmt(msg));
116     };
117   }
119   if (!this.namespaces_.length) {
120     cb(-GnubbyDevice.OK, []);
121     return;
122   }
124   var namespacesEnumerated = 0;
125   var self = this;
127   /**
128    * @param {string} namespace The namespace that was enumerated.
129    * @param {Array<GnubbyDeviceId>} existingDeviceIds Previously enumerated
130    *     device IDs (from other namespaces), if any.
131    * @param {Array} devs The devices in the namespace.
132    */
133   function enumerated(namespace, existingDeviceIds, devs) {
134     namespacesEnumerated++;
135     var lastNamespace = (namespacesEnumerated == self.namespaces_.length);
137     if (chrome.runtime.lastError) {
138       console.warn(UTIL_fmt('lastError: ' + chrome.runtime.lastError));
139       console.log(chrome.runtime.lastError);
140       devs = [];
141     }
143     console.log(UTIL_fmt('Enumerated ' + devs.length + ' gnubbies'));
144     console.log(devs);
146     var presentDevs = {};
147     var deviceIds = [];
148     var deviceToDeviceId = self.impl_[namespace].deviceToDeviceId;
149     for (var i = 0; i < devs.length; ++i) {
150       var deviceId = deviceToDeviceId(devs[i]);
151       deviceIds.push(deviceId);
152       presentDevs[deviceId.device] = devs[i];
153     }
155     var toRemove = [];
156     for (var dev in self.openDevs_[namespace]) {
157       if (!presentDevs.hasOwnProperty(dev)) {
158         toRemove.push(dev);
159       }
160     }
162     for (var i = 0; i < toRemove.length; i++) {
163       dev = toRemove[i];
164       if (self.openDevs_[namespace][dev]) {
165         self.openDevs_[namespace][dev].destroy();
166         delete self.openDevs_[namespace][dev];
167       }
168     }
170     self.devs_[namespace] = devs;
171     existingDeviceIds.push.apply(existingDeviceIds, deviceIds);
172     if (lastNamespace) {
173       while (self.pendingEnumerate.length != 0) {
174         var cb = self.pendingEnumerate.shift();
175         cb(-GnubbyDevice.OK, existingDeviceIds);
176       }
177     }
178   }
180   var deviceIds = [];
181   function makeEnumerateCb(namespace) {
182     return function(devs) {
183       enumerated(namespace, deviceIds, devs);
184     }
185   }
187   this.pendingEnumerate.push(cb);
188   if (this.pendingEnumerate.length == 1) {
189     for (var i = 0; i < this.namespaces_.length; i++) {
190       var namespace = this.namespaces_[i];
191       var enumerator = this.impl_[namespace].enumerate;
192       enumerator(makeEnumerateCb(namespace));
193     }
194   }
198  * Amount of time past last activity to set the inactivity timer to, in millis.
199  * @const
200  */
201 Gnubbies.INACTIVITY_TIMEOUT_MARGIN_MILLIS = 30000;
204  * Private instance of timers based on window's timer functions.
205  * @const
206  * @private
207  */
208 Gnubbies.SYS_TIMER_ = new WindowTimer();
211  * @param {number|undefined} opt_timeoutMillis Timeout in milliseconds
212  */
213 Gnubbies.prototype.resetInactivityTimer = function(opt_timeoutMillis) {
214   var millis = opt_timeoutMillis ?
215       opt_timeoutMillis + Gnubbies.INACTIVITY_TIMEOUT_MARGIN_MILLIS :
216       Gnubbies.INACTIVITY_TIMEOUT_MARGIN_MILLIS;
217   if (!this.inactivityTimer) {
218     this.inactivityTimer =
219         new CountdownTimer(
220             Gnubbies.SYS_TIMER_, millis, this.inactivityTimeout_.bind(this));
221   } else if (millis > this.inactivityTimer.millisecondsUntilExpired()) {
222     this.inactivityTimer.clearTimeout();
223     this.inactivityTimer.setTimeout(millis, this.inactivityTimeout_.bind(this));
224   }
228  * Called when the inactivity timeout expires.
229  * @private
230  */
231 Gnubbies.prototype.inactivityTimeout_ = function() {
232   this.inactivityTimer = undefined;
233   for (var namespace in this.openDevs_) {
234     for (var dev in this.openDevs_[namespace]) {
235       var deviceId = Number(dev);
236       console.warn(namespace + ' device ' + deviceId +
237           ' still open after inactivity, closing');
238       this.openDevs_[namespace][deviceId].destroy();
239     }
240   }
244  * Opens and adds a new client of the specified device.
245  * @param {GnubbyDeviceId} which Which device to open.
246  * @param {*} who Client of the device.
247  * @param {function(number, GnubbyDevice=)} cb Called back with the result of
248  *     opening the device.
249  */
250 Gnubbies.prototype.addClient = function(which, who, cb) {
251   this.resetInactivityTimer();
253   var self = this;
255   function opened(gnubby, who, cb) {
256     if (gnubby.closing) {
257       // Device is closing or already closed.
258       self.removeClient(gnubby, who);
259       if (cb) { cb(-GnubbyDevice.NODEVICE); }
260     } else {
261       gnubby.registerClient(who);
262       if (cb) { cb(-GnubbyDevice.OK, gnubby); }
263     }
264   }
266   function notifyOpenResult(rc) {
267     if (self.pendingOpens_[which.namespace]) {
268       while (self.pendingOpens_[which.namespace][which.device].length != 0) {
269         var client = self.pendingOpens_[which.namespace][which.device].shift();
270         client.cb(rc);
271       }
272       delete self.pendingOpens_[which.namespace][which.device];
273     }
274   }
276   var dev = null;
277   var deviceToDeviceId = this.impl_[which.namespace].deviceToDeviceId;
278   if (this.devs_[which.namespace]) {
279     for (var i = 0; i < this.devs_[which.namespace].length; i++) {
280       var device = this.devs_[which.namespace][i];
281       if (deviceToDeviceId(device).device == which.device) {
282         dev = device;
283         break;
284       }
285     }
286   }
287   if (!dev) {
288     // Index out of bounds. Device does not exist in current enumeration.
289     this.removeClient(null, who);
290     if (cb) { cb(-GnubbyDevice.NODEVICE); }
291     return;
292   }
294   function openCb(rc, opt_gnubby) {
295     if (rc) {
296       notifyOpenResult(rc);
297       return;
298     }
299     if (!opt_gnubby) {
300       notifyOpenResult(-GnubbyDevice.NODEVICE);
301       return;
302     }
303     var gnubby = /** @type {!GnubbyDevice} */ (opt_gnubby);
304     if (!self.openDevs_[which.namespace]) {
305       self.openDevs_[which.namespace] = {};
306     }
307     self.openDevs_[which.namespace][which.device] = gnubby;
308     while (self.pendingOpens_[which.namespace][which.device].length != 0) {
309       var client = self.pendingOpens_[which.namespace][which.device].shift();
310       opened(gnubby, client.who, client.cb);
311     }
312     delete self.pendingOpens_[which.namespace][which.device];
313   }
315   if (this.openDevs_[which.namespace] &&
316       this.openDevs_[which.namespace].hasOwnProperty(which.device)) {
317     var gnubby = this.openDevs_[which.namespace][which.device];
318     opened(gnubby, who, cb);
319   } else {
320     var opener = {who: who, cb: cb};
321     if (!this.pendingOpens_.hasOwnProperty(which.namespace)) {
322       this.pendingOpens_[which.namespace] = {};
323     }
324     if (this.pendingOpens_[which.namespace].hasOwnProperty(which.device)) {
325       this.pendingOpens_[which.namespace][which.device].push(opener);
326     } else {
327       this.pendingOpens_[which.namespace][which.device] = [opener];
328       var openImpl = this.impl_[which.namespace].open;
329       openImpl(this, which.device, dev, openCb);
330     }
331   }
335  * Removes a client from a low-level gnubby.
336  * @param {GnubbyDevice} whichDev The gnubby.
337  * @param {*} who The client.
338  */
339 Gnubbies.prototype.removeClient = function(whichDev, who) {
340   console.log(UTIL_fmt('Gnubbies.removeClient()'));
342   this.resetInactivityTimer();
344   // De-register client from all known devices.
345   for (var namespace in this.openDevs_) {
346     for (var devId in this.openDevs_[namespace]) {
347       var deviceId = Number(devId);
348       if (isNaN(deviceId))
349         deviceId = devId;
350       var dev = this.openDevs_[namespace][deviceId];
351       if (dev.hasClient(who)) {
352         if (whichDev && dev != whichDev) {
353           console.warn('Gnubby attached to more than one device!?');
354         }
355         if (!dev.deregisterClient(who)) {
356           dev.destroy();
357         }
358       }
359     }
360   }