extensionUtils: Use signals rather than callbacks for finding extensions

This allows us to move to a file-monitor based approach in the future.

Since we need signals, we convert the current set of functions to an
object we attach signals too, leading to the new ExtensionFinder object.

https://bugzilla.gnome.org/show_bug.cgi?id=677586
This commit is contained in:
Jasper St. Pierre 2012-06-04 17:14:18 -04:00
parent 5265884af9
commit 498b023989
3 changed files with 61 additions and 46 deletions

View File

@ -202,7 +202,12 @@ const Application = new Lang.Class({
}, },
_scanExtensions: function() { _scanExtensions: function() {
ExtensionUtils.scanExtensions(Lang.bind(this, function(uuid, dir, type) { let finder = new ExtensionUtils.ExtensionFinder();
finder.connect('extension-found', Lang.bind(this, this._extensionFound));
finder.scanExtensions();
},
_extensionFound: function(signals, uuid, dir, type) {
if (ExtensionUtils.extensions[uuid] !== undefined) if (ExtensionUtils.extensions[uuid] !== undefined)
return; return;
@ -217,9 +222,9 @@ const Application = new Lang.Class({
let iter = this._model.append(); let iter = this._model.append();
this._model.set(iter, [0, 1], [uuid, extension.metadata.name]); this._model.set(iter, [0, 1], [uuid, extension.metadata.name]);
this._extensionIters[uuid] = iter; this._extensionIters[uuid] = iter;
}));
}, },
_onActivate: function() { _onActivate: function() {
this._window.present(); this._window.present();
}, },

View File

@ -3,6 +3,9 @@
// Common utils for the extension system and the extension // Common utils for the extension system and the extension
// preferences tool // preferences tool
const Lang = imports.lang;
const Signals = imports.signals;
const GLib = imports.gi.GLib; const GLib = imports.gi.GLib;
const Gio = imports.gi.Gio; const Gio = imports.gi.Gio;
const ShellJS = imports.gi.ShellJS; const ShellJS = imports.gi.ShellJS;
@ -149,7 +152,10 @@ function installImporter(extension) {
_extension = null; _extension = null;
} }
function scanExtensionsInDirectory(callback, dir, type) { const ExtensionFinder = new Lang.Class({
Name: 'ExtensionFinder',
_scanExtensionsInDirectory: function(dir, type) {
let fileEnum; let fileEnum;
let file, info; let file, info;
try { try {
@ -165,20 +171,22 @@ function scanExtensionsInDirectory(callback, dir, type) {
continue; continue;
let uuid = info.get_name(); let uuid = info.get_name();
let extensionDir = dir.get_child(uuid); let extensionDir = dir.get_child(uuid);
callback(uuid, extensionDir, type); this.emit('extension-found', uuid, extensionDir, type);
} }
fileEnum.close(null); fileEnum.close(null);
} },
function scanExtensions(callback) { scanExtensions: function() {
let userExtensionsDir = Gio.File.new_for_path(GLib.build_filenamev([global.userdatadir, 'extensions'])); let userExtensionsDir = Gio.File.new_for_path(GLib.build_filenamev([global.userdatadir, 'extensions']));
scanExtensionsInDirectory(callback, userExtensionsDir, ExtensionType.PER_USER); this._scanExtensionsInDirectory(userExtensionsDir, ExtensionType.PER_USER);
let systemDataDirs = GLib.get_system_data_dirs(); let systemDataDirs = GLib.get_system_data_dirs();
for (let i = 0; i < systemDataDirs.length; i++) { for (let i = 0; i < systemDataDirs.length; i++) {
let dirPath = GLib.build_filenamev([systemDataDirs[i], 'gnome-shell', 'extensions']); let dirPath = GLib.build_filenamev([systemDataDirs[i], 'gnome-shell', 'extensions']);
let dir = Gio.file_new_for_path(dirPath); let dir = Gio.file_new_for_path(dirPath);
if (dir.query_exists(null)) if (dir.query_exists(null))
scanExtensionsInDirectory(callback, dir, ExtensionType.SYSTEM); this._scanExtensionsInDirectory(dir, ExtensionType.SYSTEM);
} }
} }
});
Signals.addSignalMethods(ExtensionFinder.prototype);

View File

@ -262,8 +262,10 @@ function init() {
} }
function loadExtensions() { function loadExtensions() {
ExtensionUtils.scanExtensions(function(uuid, dir, type) { let finder = new ExtensionUtils.ExtensionFinder();
finder.connect('extension-found', function(signals, uuid, dir, type) {
let enabled = enabledExtensions.indexOf(uuid) != -1; let enabled = enabledExtensions.indexOf(uuid) != -1;
loadExtension(dir, type, enabled); loadExtension(dir, type, enabled);
}); });
finder.scanExtensions();
} }