2013-04-23 04:18:07 +00:00
|
|
|
EventEmitter = require('events').EventEmitter
|
2013-04-27 11:13:24 +00:00
|
|
|
send = process.atomBinding('ipc').send
|
2013-04-23 04:18:07 +00:00
|
|
|
|
2013-05-17 15:40:37 +00:00
|
|
|
sendWrap = (channel, processId, routingId, args...) ->
|
2013-05-30 12:16:54 +00:00
|
|
|
BrowserWindow = require 'browser-window'
|
2013-05-17 15:40:37 +00:00
|
|
|
if processId?.constructor is BrowserWindow
|
|
|
|
window = processId
|
|
|
|
processId = window.getProcessId()
|
|
|
|
routingId = window.getRoutingId()
|
|
|
|
|
|
|
|
send channel, processId, routingId, args...
|
|
|
|
|
2013-04-23 04:18:07 +00:00
|
|
|
class Ipc extends EventEmitter
|
|
|
|
constructor: ->
|
|
|
|
process.on 'ATOM_INTERNAL_MESSAGE', (args...) =>
|
2013-04-23 12:57:14 +00:00
|
|
|
@emit(args...)
|
2013-04-23 13:52:19 +00:00
|
|
|
process.on 'ATOM_INTERNAL_MESSAGE_SYNC', (args...) =>
|
|
|
|
@emit(args...)
|
2013-04-23 04:18:07 +00:00
|
|
|
|
2013-04-27 11:13:24 +00:00
|
|
|
send: (processId, routingId, args...) ->
|
|
|
|
@sendChannel(processId, routingId, 'message', args...)
|
2013-04-23 09:21:34 +00:00
|
|
|
|
|
|
|
sendChannel: (args...) ->
|
2013-05-17 15:40:37 +00:00
|
|
|
sendWrap('ATOM_INTERNAL_MESSAGE', args...)
|
2013-04-23 04:18:07 +00:00
|
|
|
|
|
|
|
module.exports = new Ipc
|