2013-04-24 08:43:01 +00:00
|
|
|
ipc = require 'ipc'
|
|
|
|
path = require 'path'
|
2013-04-26 13:14:29 +00:00
|
|
|
objectsRegistry = require './objects_registry.js'
|
2013-04-24 08:43:01 +00:00
|
|
|
|
2013-04-26 15:58:49 +00:00
|
|
|
# Convert a real value into a POD structure which carries information of this
|
|
|
|
# value.
|
|
|
|
class Meta
|
2013-04-26 13:14:29 +00:00
|
|
|
constructor: (process_id, routing_id, value) ->
|
2013-04-24 08:43:01 +00:00
|
|
|
@type = typeof value
|
|
|
|
@type = 'value' if value is null
|
2013-04-25 08:03:29 +00:00
|
|
|
@type = 'array' if Array.isArray value
|
2013-04-24 08:43:01 +00:00
|
|
|
|
2013-04-25 08:03:29 +00:00
|
|
|
if @type is 'array'
|
|
|
|
@members = []
|
2013-04-26 15:58:49 +00:00
|
|
|
@members.push new Meta(process_id, routing_id, el) for el in value
|
2013-04-25 08:03:29 +00:00
|
|
|
else if @type is 'object' or @type is 'function'
|
2013-04-24 08:43:01 +00:00
|
|
|
@name = value.constructor.name
|
2013-04-26 15:58:49 +00:00
|
|
|
|
|
|
|
# Reference the original value if it's an object, because when it's
|
|
|
|
# passed to renderer we would assume the renderer keeps a reference of
|
|
|
|
# it.
|
2013-04-26 15:26:41 +00:00
|
|
|
@storeId = objectsRegistry.add process_id, routing_id, value
|
|
|
|
@id = value.id
|
2013-04-24 08:43:01 +00:00
|
|
|
|
|
|
|
@members = []
|
2013-04-25 08:03:29 +00:00
|
|
|
@members.push { name: prop, type: typeof field } for prop, field of value
|
2013-04-24 08:43:01 +00:00
|
|
|
else
|
|
|
|
@type = 'value'
|
|
|
|
@value = value
|
|
|
|
|
|
|
|
ipc.on 'ATOM_INTERNAL_REQUIRE', (event, process_id, routing_id, module) ->
|
2013-04-26 14:25:30 +00:00
|
|
|
try
|
2013-04-26 15:58:49 +00:00
|
|
|
event.result = new Meta(process_id, routing_id, require(module))
|
2013-04-26 14:25:30 +00:00
|
|
|
catch e
|
|
|
|
event.result = type: 'error', value: e.message
|
2013-04-24 08:43:01 +00:00
|
|
|
|
2013-04-27 11:06:41 +00:00
|
|
|
ipc.on 'ATOM_INTERNAL_CURRENT_WINDOW', (event, process_id, routing_id) ->
|
|
|
|
try
|
|
|
|
windows = objectsRegistry.getAllWindows()
|
|
|
|
for window in windows
|
|
|
|
break if window.getProcessID() == process_id and
|
|
|
|
window.getRoutingID() == routing_id
|
|
|
|
event.result = new Meta(process_id, routing_id, window)
|
|
|
|
catch e
|
|
|
|
event.result = type: 'error', value: e.message
|
|
|
|
|
2013-04-24 08:43:01 +00:00
|
|
|
ipc.on 'ATOM_INTERNAL_CONSTRUCTOR', (event, process_id, routing_id, id, args) ->
|
|
|
|
try
|
2013-04-26 14:25:30 +00:00
|
|
|
constructor = objectsRegistry.get id
|
2013-04-25 07:12:56 +00:00
|
|
|
# Call new with array of arguments.
|
|
|
|
# http://stackoverflow.com/questions/1606797/use-of-apply-with-new-operator-is-this-possible
|
2013-04-24 08:43:01 +00:00
|
|
|
obj = new (Function::bind.apply(constructor, [null].concat(args)))
|
2013-04-26 15:58:49 +00:00
|
|
|
event.result = new Meta(process_id, routing_id, obj)
|
2013-04-24 08:43:01 +00:00
|
|
|
catch e
|
|
|
|
event.result = type: 'error', value: e.message
|
|
|
|
|
|
|
|
ipc.on 'ATOM_INTERNAL_FUNCTION_CALL', (event, process_id, routing_id, id, args) ->
|
|
|
|
try
|
2013-04-26 14:25:30 +00:00
|
|
|
func = objectsRegistry.get id
|
2013-04-26 13:14:29 +00:00
|
|
|
ret = func.apply global, args
|
2013-04-26 15:58:49 +00:00
|
|
|
event.result = new Meta(process_id, routing_id, ret)
|
2013-04-24 08:43:01 +00:00
|
|
|
catch e
|
|
|
|
event.result = type: 'error', value: e.message
|
|
|
|
|
|
|
|
ipc.on 'ATOM_INTERNAL_MEMBER_CALL', (event, process_id, routing_id, id, method, args) ->
|
|
|
|
try
|
2013-04-26 14:25:30 +00:00
|
|
|
obj = objectsRegistry.get id
|
2013-04-24 08:43:01 +00:00
|
|
|
ret = obj[method].apply(obj, args)
|
2013-04-26 15:58:49 +00:00
|
|
|
event.result = new Meta(process_id, routing_id, ret)
|
2013-04-24 08:43:01 +00:00
|
|
|
catch e
|
|
|
|
event.result = type: 'error', value: e.message
|
|
|
|
|
|
|
|
ipc.on 'ATOM_INTERNAL_MEMBER_SET', (event, process_id, routing_id, id, name, value) ->
|
|
|
|
try
|
2013-04-26 14:25:30 +00:00
|
|
|
obj = objectsRegistry.get id
|
2013-04-26 13:14:29 +00:00
|
|
|
obj[name] = value
|
2013-04-24 08:43:01 +00:00
|
|
|
catch e
|
|
|
|
event.result = type: 'error', value: e.message
|
|
|
|
|
|
|
|
ipc.on 'ATOM_INTERNAL_MEMBER_GET', (event, process_id, routing_id, id, name) ->
|
|
|
|
try
|
2013-04-26 14:25:30 +00:00
|
|
|
obj = objectsRegistry.get id
|
2013-04-26 15:58:49 +00:00
|
|
|
event.result = new Meta(process_id, routing_id, obj[name])
|
2013-04-24 08:43:01 +00:00
|
|
|
catch e
|
|
|
|
event.result = type: 'error', value: e.message
|
2013-04-25 11:26:31 +00:00
|
|
|
|
2013-04-26 15:26:41 +00:00
|
|
|
ipc.on 'ATOM_INTERNAL_REFERENCE', (event, process_id, routing_id, id) ->
|
2013-04-26 14:25:30 +00:00
|
|
|
try
|
|
|
|
obj = objectsRegistry.get id
|
2013-04-26 15:58:49 +00:00
|
|
|
event.result = new Meta(process_id, routing_id, obj)
|
2013-04-26 14:25:30 +00:00
|
|
|
catch e
|
|
|
|
event.result = type: 'error', value: e.message
|
|
|
|
|
2013-04-26 15:26:41 +00:00
|
|
|
ipc.on 'ATOM_INTERNAL_DEREFERENCE', (process_id, routing_id, storeId) ->
|
|
|
|
objectsRegistry.remove process_id, routing_id, storeId
|