d723173bc7
Basic usage is: remote = require 'remote' Window = remote.require 'window' w = new Window { width: 800, height: 600 } Still need to do: * Beter support for Array type. * Remote objects should cheat devtools. * Support cross-process callbacks.
46 lines
1.7 KiB
CoffeeScript
46 lines
1.7 KiB
CoffeeScript
ipc = require 'ipc'
|
|
|
|
generateFromPainObject = (plain) ->
|
|
if plain.type is 'value'
|
|
return plain.value
|
|
else if plain.type is 'error'
|
|
throw new Error('Remote Error: ' + plain.value)
|
|
else
|
|
# A shadow class to represent the remote object.
|
|
class RemoteObject
|
|
constructor: () ->
|
|
if @constructor == RemoteObject
|
|
# Constructor call.
|
|
obj = ipc.sendChannelSync 'ATOM_INTERNAL_CONSTRUCTOR', plain.id, Array::slice.call(arguments)
|
|
# Returning object in constructor will replace constructed object
|
|
# with returned object.
|
|
return generateFromPainObject obj
|
|
else
|
|
# Function call.
|
|
ret = ipc.sendChannelSync 'ATOM_INTERNAL_FUNCTION_CALL', plain.id, Array::slice.call(arguments)
|
|
generateFromPainObject ret
|
|
|
|
# Polulate shadow members.
|
|
for member in plain.members
|
|
do (member) ->
|
|
if member.type is 'function'
|
|
RemoteObject[member.name] = ->
|
|
# Call member function.
|
|
ret = ipc.sendChannelSync 'ATOM_INTERNAL_MEMBER_CALL', plain.id, member.name, Array::slice.call(arguments)
|
|
generateFromPainObject ret
|
|
else
|
|
RemoteObject.__defineSetter__ member.name, (value) ->
|
|
# Set member data.
|
|
ipc.sendChannelSync 'ATOM_INTERNAL_MEMBER_SET', plain.id, member.name, value
|
|
undefined
|
|
|
|
RemoteObject.__defineGetter__ member.name, ->
|
|
# Get member data.
|
|
ret = ipc.sendChannelSync 'ATOM_INTERNAL_MEMBER_GET', plain.id, member.name
|
|
generateFromPainObject ret
|
|
|
|
RemoteObject
|
|
|
|
exports.require = (module) ->
|
|
plain = ipc.sendChannelSync 'ATOM_INTERNAL_REQUIRE', module
|
|
generateFromPainObject plain
|