]> git.gir.st - VimFx.git/blob - extension/bootstrap.coffee
Merge branch 'more-tab-related-commands' of https://github.com/zhuochun/VimFx into...
[VimFx.git] / extension / bootstrap.coffee
1 ###
2 # Copyright Anton Khodakivskiy 2012, 2013, 2014.
3 # Copyright Simon Lydell 2013, 2014.
4 #
5 # This file is part of VimFx.
6 #
7 # VimFx is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # VimFx is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with VimFx. If not, see <http://www.gnu.org/licenses/>.
19 ###
20
21 { classes: Cc, interfaces: Ci, utils: Cu } = Components
22
23 Cu.import('resource://gre/modules/Services.jsm')
24 Cu.import('resource://gre/modules/devtools/Console.jsm')
25
26 shutdownHandlers = []
27
28 createURI = (path, base = null) -> Services.io.newURI(path, null, base)
29 baseURI = createURI(__SCRIPT_URI_SPEC__)
30
31 # Everything up to the first `!` is the absolute path to the .xpi.
32 dirname = (uri) -> uri.match(///^ [^!]+!/ (.+) /[^/]+ $///)[1]
33
34 require = (path, moduleRoot = '.', dir = '.') ->
35 unless path[0] == '.'
36 # Allow `require('module/lib/foo')` in additon to just `require('module')`.
37 [ match, name, subPath ] = path.match(///^ ([^/]+) (?: /(.+) )? ///)
38 base = require.data[moduleRoot]?[name] ? moduleRoot
39 dir = "#{ base }/node_modules/#{ name }"
40 main = require.data[dir]?['']
41 path = subPath ? main ? 'index'
42 moduleRoot = dir
43
44 fullPath = createURI("#{ dir }/#{ path }.js", baseURI).spec
45
46 unless require.scopes[fullPath]?
47 module =
48 exports: {}
49 onShutdown: Function::call.bind(Array::push, shutdownHandlers)
50 require.scopes[fullPath] = scope =
51 require: (path) -> require(path, moduleRoot, "./#{ dirname(fullPath) }")
52 module: module
53 exports: module.exports
54 Services.scriptloader.loadSubScript(fullPath, scope)
55
56 return require.scopes[fullPath].module.exports
57
58 require.scopes = {}
59 require.data = require('./require-data')
60
61 do (global = this) ->
62
63 global.startup = require('./lib/main')
64
65 global.shutdown = (data, reason) ->
66 for shutdownHandler in shutdownHandlers
67 try
68 shutdownHandler()
69 catch error
70 Cu.reportError(error)
71 shutdownHandlers = null
72
73 # Release everything in `require`d modules. This must be done _after_ all
74 # shutdownHandlers, since they use variables in these scopes.
75 for path, scope of require.scopes
76 for name of scope
77 scope[name] = null
78 require.scopes = null
79
80 global.install = (data, reason) ->
81
82 global.uninstall = (data, reason) ->
Imprint / Impressum