2013-11-24 12:45:12 +00:00
|
|
|
{spawn} = require 'child_process'
|
2013-11-14 05:33:09 +00:00
|
|
|
binding = process.atomBinding 'crash_reporter'
|
|
|
|
|
|
|
|
class CrashReporter
|
2013-11-15 03:00:48 +00:00
|
|
|
start: (options={}) ->
|
2013-11-18 10:27:50 +00:00
|
|
|
{productName, companyName, submitUrl, autoSubmit, ignoreSystemCrashHandler, extra} = options
|
2013-11-14 05:33:09 +00:00
|
|
|
|
2013-11-24 14:22:08 +00:00
|
|
|
productName ?= 'Atom-Shell'
|
2013-11-14 05:33:09 +00:00
|
|
|
companyName ?= 'GitHub, Inc'
|
2013-11-19 04:27:20 +00:00
|
|
|
submitUrl ?= 'http://54.249.141.25:1127/post'
|
2013-11-14 05:33:09 +00:00
|
|
|
autoSubmit ?= true
|
|
|
|
ignoreSystemCrashHandler ?= false
|
2013-11-18 10:27:50 +00:00
|
|
|
extra ?= {}
|
2013-11-14 05:33:09 +00:00
|
|
|
|
2013-11-24 14:22:08 +00:00
|
|
|
start = -> binding.start productName, companyName, submitUrl, autoSubmit, ignoreSystemCrashHandler, extra
|
|
|
|
|
|
|
|
if process.platform is 'darwin'
|
|
|
|
start()
|
|
|
|
else
|
2013-11-24 12:45:12 +00:00
|
|
|
args = [
|
2013-11-24 14:22:08 +00:00
|
|
|
"--reporter-url=#{submitUrl}"
|
2013-11-24 12:45:12 +00:00
|
|
|
"--application-name=#{productName}"
|
2013-11-24 14:22:08 +00:00
|
|
|
"--v=1"
|
2013-11-24 12:45:12 +00:00
|
|
|
]
|
|
|
|
env = ATOM_SHELL_INTERNAL_CRASH_SERVICE: 1
|
|
|
|
|
2013-11-24 14:22:08 +00:00
|
|
|
spawn process.execPath, args, {env, detached: true}
|
|
|
|
start()
|
2013-11-14 05:33:09 +00:00
|
|
|
|
|
|
|
module.exports = new CrashReporter
|