electron/lib/common/init.js

47 lines
1.6 KiB
JavaScript
Raw Normal View History

2016-03-25 19:57:17 +00:00
const path = require('path')
const timers = require('timers')
const Module = require('module')
2016-01-12 02:40:23 +00:00
2016-03-25 19:57:17 +00:00
process.atomBinding = function (name) {
2016-01-12 02:40:23 +00:00
try {
2016-03-25 19:57:17 +00:00
return process.binding('atom_' + process.type + '_' + name)
2016-01-12 02:40:23 +00:00
} catch (error) {
2016-01-19 23:11:55 +00:00
if (/No such module/.test(error.message)) {
2016-03-25 19:57:17 +00:00
return process.binding('atom_common_' + name)
2016-01-12 02:40:23 +00:00
}
}
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
if (!process.env.ELECTRON_HIDE_INTERNAL_MODULES) {
2016-01-14 18:35:29 +00:00
// Add common/api/lib to module search paths.
2016-03-25 19:57:17 +00:00
Module.globalPaths.push(path.join(__dirname, 'api'))
2016-01-12 02:40:23 +00:00
}
2016-01-14 18:44:21 +00:00
// setImmediate and process.nextTick makes use of uv_check and uv_prepare to
// run the callbacks, however since we only run uv loop on requests, the
// callbacks wouldn't be called until something else activated the uv loop,
// which would delay the callbacks for arbitrary long time. So we should
// initiatively activate the uv loop once setImmediate and process.nextTick is
// called.
2016-03-25 19:57:17 +00:00
var wrapWithActivateUvLoop = function (func) {
return function () {
process.activateUvLoop()
return func.apply(this, arguments)
}
}
2016-01-12 02:40:23 +00:00
2016-03-25 19:57:17 +00:00
process.nextTick = wrapWithActivateUvLoop(process.nextTick)
2016-01-12 02:40:23 +00:00
2016-03-25 19:57:17 +00:00
global.setImmediate = wrapWithActivateUvLoop(timers.setImmediate)
2016-01-12 02:40:23 +00:00
2016-03-25 19:57:17 +00:00
global.clearImmediate = timers.clearImmediate
2016-01-12 02:40:23 +00:00
if (process.type === 'browser') {
2016-01-14 18:44:21 +00:00
// setTimeout needs to update the polling timeout of the event loop, when
// called under Chromium's event loop the node's event loop won't get a chance
// to update the timeout, so we have to force the node's event loop to
// recalculate the timeout in browser process.
2016-03-25 19:57:17 +00:00
global.setTimeout = wrapWithActivateUvLoop(timers.setTimeout)
global.setInterval = wrapWithActivateUvLoop(timers.setInterval)
2016-01-12 02:40:23 +00:00
}