2013-07-17 08:28:14 +00:00
|
|
|
var app = require('app');
|
2013-07-26 07:53:00 +00:00
|
|
|
var ipc = require('ipc');
|
2013-07-17 08:28:14 +00:00
|
|
|
var BrowserWindow = require('browser-window');
|
|
|
|
|
|
|
|
var window = null;
|
|
|
|
|
2013-07-29 08:35:42 +00:00
|
|
|
app.commandLine.appendSwitch('js-flags', '--expose_gc');
|
|
|
|
|
2013-07-26 07:53:00 +00:00
|
|
|
ipc.on('message', function() {
|
|
|
|
ipc.send.apply(this, arguments);
|
|
|
|
});
|
|
|
|
|
2013-08-21 03:15:22 +00:00
|
|
|
ipc.on('console.log', function(pid, rid, args) {
|
|
|
|
console.log.apply(console, args);
|
|
|
|
});
|
|
|
|
|
|
|
|
ipc.on('console.error', function(pid, rid, args) {
|
|
|
|
console.log.apply(console, args);
|
|
|
|
});
|
|
|
|
|
|
|
|
ipc.on('process.exit', function(pid, rid, code) {
|
|
|
|
process.exit(code);
|
|
|
|
});
|
|
|
|
|
2013-08-25 04:36:06 +00:00
|
|
|
ipc.on('eval', function(ev, pid, rid, script) {
|
|
|
|
ev.result = eval(script);
|
|
|
|
});
|
|
|
|
|
2013-07-19 02:47:00 +00:00
|
|
|
process.on('uncaughtException', function() {
|
|
|
|
window.openDevTools();
|
|
|
|
});
|
|
|
|
|
|
|
|
app.on('window-all-closed', function() {
|
|
|
|
app.terminate();
|
|
|
|
});
|
|
|
|
|
2013-08-25 04:36:06 +00:00
|
|
|
app.on('will-finish-launching', function() {
|
|
|
|
// Reigster some protocols, used by the protocol spec.
|
|
|
|
// FIXME(zcbenz): move this to somewhere else.
|
|
|
|
var protocol = require('protocol');
|
|
|
|
protocol.registerProtocol('atom-string', function(url) {
|
|
|
|
return url;
|
|
|
|
});
|
2013-08-25 07:07:07 +00:00
|
|
|
|
|
|
|
protocol.registerProtocol('atom-string-job', function(url) {
|
|
|
|
return new protocol.RequestStringJob({mimeType: 'text/html', data: url});
|
|
|
|
});
|
2013-08-25 08:06:29 +00:00
|
|
|
|
|
|
|
protocol.registerProtocol('atom-file-job', function(url) {
|
|
|
|
return new protocol.RequestFileJob(url.substr(16));
|
|
|
|
});
|
2013-08-25 04:36:06 +00:00
|
|
|
});
|
|
|
|
|
2013-07-17 08:28:14 +00:00
|
|
|
app.on('finish-launching', function() {
|
|
|
|
window = new BrowserWindow({
|
|
|
|
title: 'atom-shell tests',
|
2013-08-21 03:35:39 +00:00
|
|
|
show: false,
|
2013-07-17 08:28:14 +00:00
|
|
|
width: 800,
|
|
|
|
height: 600
|
|
|
|
});
|
|
|
|
window.loadUrl('file://' + __dirname + '/index.html');
|
|
|
|
});
|