2 * (C) Copyright 2007,2010,2012 John J. Foerch
3 * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
5 * Use, modification, and distribution are subject to the terms specified in the
9 const Cc = Components.classes;
10 const Ci = Components.interfaces;
11 const Cr = Components.results;
12 Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
14 function application () {
15 Components.utils.import("resource://gre/modules/XPCOMUtils.jsm", this);
17 this.wrappedJSObject = this;
20 this.load_url = this.subscript_loader.loadSubScript;
21 this.loading_urls = [];
22 this.loading_paths = [];
23 this.loading_features = [];
25 this.load_paths = [this.module_uri_prefix,
26 this.module_uri_prefix+'extensions',
27 this.module_uri_prefix+'page-modes'];
28 this.after_load_functions = {};
29 this.pending_loads = [];
31 // clear the startup-cache so that modules and the user's rc are
32 // loaded from disk, not from a cache. this problem is a
33 // characteristic of using mozIJSSubScriptLoader.loadSubScript as our
34 // primary means of loading, since XULRunner 8.0.
35 var obs = Cc["@mozilla.org/observer-service;1"]
36 .getService(Ci.nsIObserverService);
37 obs.notifyObservers(null, "startupcache-invalidate", null);
40 this.require("conkeror.js");
42 this.dumpln("Error initializing.");
46 application.prototype = {
47 constructor: application,
51 /* Note: resource://app currently doesn't result in xpcnativewrappers=yes */
52 module_uri_prefix: "chrome://conkeror/content/",
53 subscript_loader: Cc["@mozilla.org/moz/jssubscript-loader;1"].getService(Ci.mozIJSSubScriptLoader),
54 preferences: Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService),
56 var formatter = Cc["@mozilla.org/toolkit/URLFormatterService;1"]
57 .getService(Ci.nsIURLFormatter);
58 return formatter.formatURL("%VERSION%");
60 dumpln: function (str) {
64 dump_error: function (e) {
65 if (e instanceof Error) {
66 this.dumpln(e.name + ": " + e.message);
67 this.dumpln(e.fileName + ":" + e.lineNumber);
69 } else if (e instanceof Ci.nsIException) {
70 this.dumpln(e.name + ": " + e.message);
71 var stack_frame = e.location;
73 this.dumpln(stack_frame.name + "()@" + stack_frame.filename + ":" + stack_frame.lineNumber);
74 stack_frame = stack_frame.caller;
77 this.dumpln("Error: " + e);
81 make_uri: function (uri, charset, base_uri) {
82 const io_service = Cc["@mozilla.org/network/io-service;1"]
83 .getService(Ci.nsIIOService2);
84 if (uri instanceof Ci.nsIURI)
86 if (uri instanceof Ci.nsIFile)
87 return io_service.newFileURI(uri);
88 return io_service.newURI(uri, charset, base_uri);
90 load: function (module) {
91 function load1 (url, path) {
93 this.loading_paths.unshift(path);
94 this.loading_urls.unshift(url);
95 this.loading_features.unshift({});
96 if (this.loading_urls.indexOf(url, 1) != -1)
97 throw new Error("Circular module dependency detected: "+
98 this.loading_urls.join(",\n"));
99 if (url.substr(-4) == ".jsx") {
100 var scopename = url.substr(url.lastIndexOf('/')+1)
101 .replace('-', '_', 'g');
102 var dot = scopename.indexOf(".");
104 scopename = scopename.substr(0, dot);
105 var scope = { __proto__: this };
108 this.load_url(url, scope);
110 this[scopename] = scope;
112 // call-after-load callbacks
113 for (let f in this.loading_features[0]) {
114 this.features[f] = true;
115 this.run_after_load_functions(f);
118 this.loading_paths.shift();
119 this.loading_urls.shift();
120 this.loading_features.shift();
123 if (success && this.loading_urls[0] === undefined) {
124 let pending = this.pending_loads;
125 this.pending_loads = [];
126 for (let i = 0, m; m = pending[i]; ++i) {
131 if (module instanceof Ci.nsIURI)
132 var path = module.spec.substr(0, module.spec.lastIndexOf('/')+1);
133 else if (module instanceof Ci.nsIFile)
134 path = module.parent.path;
135 if (path !== undefined) {
136 var url = this.make_uri(module).spec;
137 load1.call(this.conkeror, url, path);
139 // module name or relative path
140 var si = module.lastIndexOf('/');
141 var module_leaf = module.substr(si+1);
142 var autoext = module_leaf.lastIndexOf(".") <= 0;
143 var exts = { 0:"", 1:".js", 2:".jsx", len:3 };
147 path = this.loading_paths[0];
148 if (path === undefined)
149 path = this.load_paths[++i];
150 while (path !== undefined) {
152 var sep = path.substr(-1) == '/' ? '' : '/';
153 var ext = exts[exti];
155 url = path + sep + module + ext;
157 truepath += sep + module.substr(0, si);
160 load1.call(this.conkeror, url, truepath);
163 } catch (e if (typeof e == 'string' &&
164 {"ContentLength not available (not a local URL?)":true,
165 "Error creating channel (invalid URL scheme?)":true,
166 "Error opening input stream (invalid filename?)":true}
168 // null op. (suppress error, try next path)
171 exti = (exti + 1) % exts.len;
173 path = this.load_paths[++i];
175 throw new Error("Module not found ("+module+")");
178 provide: function (symbol) {
180 throw new Error("Cannot provide null feature");
181 if (this.loading_urls[0] === undefined) {
182 this.features[symbol] = true;
183 this.run_after_load_functions(symbol);
185 this.loading_features[0][symbol] = true;
187 featurep: function (symbol) {
188 return this.features[symbol] || false;
190 call_after_load: function (feature, func) {
191 if (this.featurep(feature))
194 var funcs = this.after_load_functions[feature];
196 funcs = this.after_load_functions[feature] = [];
200 run_after_load_functions: function (symbol) {
201 var funcs = this.after_load_functions[symbol];
203 delete this.after_load_functions[symbol];
204 for (var i = 0; funcs[i]; ++i) {
213 require: function (module) {
214 if (module instanceof Ci.nsIURI)
215 var feature = module.spec.substr(module.spec.lastIndexOf('/')+1);
216 else if (module instanceof Ci.nsIFile)
217 feature = module.leafName;
219 feature = module.substr(module.lastIndexOf('/')+1);
220 var dot = feature.indexOf('.');
224 feature = feature.substr(0, dot);
225 feature = feature.replace('_', '-', 'g');
226 if (this.featurep(feature))
229 // ensure current path is not searched for 'require'
230 this.loading_paths.unshift(undefined);
233 this.loading_paths.shift();
237 require_later: function (module) {
238 this.pending_loads.push(module);
242 QueryInterface: XPCOMUtils.generateQI([]),
244 /* XPCOM registration */
245 classDescription: "Conkeror global object",
246 classID: Components.ID("{72a7eea7-a894-47ec-93a9-a7bc172cf1ac}"),
247 contractID: "@conkeror.mozdev.org/application;1"
250 if (XPCOMUtils.generateNSGetFactory)
251 var NSGetFactory = XPCOMUtils.generateNSGetFactory([application]); //XULRunner 2.0
253 var NSGetModule = XPCOMUtils.generateNSGetModule([application]);