mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 21:28:00 +01:00
80 lines
3.8 KiB
JavaScript
80 lines
3.8 KiB
JavaScript
/***** BEGIN LICENSE BLOCK ***** {{{
|
|
Copyright © 2008-2009 by Kris Maglione <maglione.k at Gmail>
|
|
Distributable under the terms of the MIT license, which allows
|
|
for sublicensing under any compatible license, including the MPL,
|
|
GPL, and MPL. Anyone who changes this file is welcome to relicense
|
|
it under any or all of those licenseses.
|
|
}}} ***** END LICENSE BLOCK *****/
|
|
|
|
/** @scope modules */
|
|
|
|
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
const Cr = Components.results;
|
|
const Cu = Components.utils;
|
|
|
|
/**
|
|
* Cached XPCOM services and instances.
|
|
*
|
|
* @constructor
|
|
*/
|
|
function Services()
|
|
{
|
|
const classes = {};
|
|
const services = {};
|
|
function create(classes, ifaces, meth)
|
|
{
|
|
ifaces = Array.concat(ifaces);
|
|
try
|
|
{
|
|
let res = Cc[classes][meth || "getService"](ifaces.shift())
|
|
ifaces.forEach(function (iface) res.QueryInterface(iface));
|
|
return res;
|
|
}
|
|
catch (e) {}
|
|
}
|
|
const self = {
|
|
add: function (name, class, ifaces, meth)
|
|
{
|
|
return services[name] = create(class, ifaces, meth);
|
|
},
|
|
addClass: function (name, class, ifaces)
|
|
{
|
|
return classes[name] = function () create(class, ifaces, "createInstance");
|
|
},
|
|
get: function (name) services[name],
|
|
create: function (name) classes[name]()
|
|
};
|
|
|
|
self.add("appStartup", "@mozilla.org/toolkit/app-startup;1", Ci.nsIAppStartup);
|
|
self.add("autoCompleteSearch", "@mozilla.org/browser/global-history;2", Ci.nsIAutoCompleteSearch);
|
|
//self.add("autoCompleteSearch", "@mozilla.org/autocomplete/search;1?name=songbird-autocomplete", Ci.nsIAutoCompleteSearch);
|
|
self.add("browserSearch", "@mozilla.org/browser/search-service;1", Ci.nsIBrowserSearchService);
|
|
self.add("cache", "@mozilla.org/network/cache-service;1", Ci.nsICacheService);
|
|
self.add("console", "@mozilla.org/consoleservice;1", Ci.nsIConsoleService);
|
|
self.add("directory", "@mozilla.org/file/directory_service;1", Ci.nsIProperties);
|
|
self.add("environment", "@mozilla.org/process/environment;1", Ci.nsIEnvironment);
|
|
self.add("extensionManager", "@mozilla.org/extensions/manager;1", Ci.nsIExtensionManager);
|
|
self.add("json", "@mozilla.org/dom/json;1", Ci.nsIJSON, "createInstance");
|
|
self.add("observer", "@mozilla.org/observer-service;1", Ci.nsIObserverService);
|
|
self.add("io", "@mozilla.org/network/io-service;1", Ci.nsIIOService);
|
|
self.add("pref", "@mozilla.org/preferences-service;1", [Ci.nsIPrefService, Ci.nsIPrefBranch, Ci.nsIPrefBranch2]);
|
|
self.add("profile", "@mozilla.org/toolkit/profile-service;1", Ci.nsIToolkitProfileService);
|
|
self.add("sessionStore", "@mozilla.org/browser/sessionstore;1", Ci.nsISessionStore);
|
|
self.add("subscriptLoader", "@mozilla.org/moz/jssubscript-loader;1", Ci.mozIJSSubScriptLoader);
|
|
self.add("threadManager", "@mozilla.org/thread-manager;1", Ci.nsIThreadManager);
|
|
self.add("windowMediator", "@mozilla.org/appshell/window-mediator;1", Ci.nsIWindowMediator);
|
|
self.add("windowWatcher", "@mozilla.org/embedcomp/window-watcher;1", Ci.nsIWindowWatcher);
|
|
self.add("bookmarks", "@mozilla.org/browser/nav-bookmarks-service;1", Ci.nsINavBookmarksService);
|
|
|
|
self.addClass("file", "@mozilla.org/file/local;1", Ci.nsILocalFile);
|
|
self.addClass("find", "@mozilla.org/embedcomp/rangefind;1", Ci.nsIFind);
|
|
self.addClass("process", "@mozilla.org/process/util;1", Ci.nsIProcess);
|
|
|
|
return self;
|
|
};
|
|
|
|
var services = Services();
|
|
|
|
// vim: set fdm=marker sw=4 ts=4 et:
|