Better support of array type in RPC.
This commit is contained in:
parent
ab4015ef51
commit
678a4953fa
2 changed files with 45 additions and 42 deletions
|
@ -8,14 +8,17 @@ class PlainObject
|
|||
constructor: (value) ->
|
||||
@type = typeof value
|
||||
@type = 'value' if value is null
|
||||
@type = 'array' if Array.isArray value
|
||||
|
||||
if @type is 'object' or @type is 'function'
|
||||
if @type is 'array'
|
||||
@members = []
|
||||
@members.push new PlainObject(el) for el in value
|
||||
else if @type is 'object' or @type is 'function'
|
||||
@name = value.constructor.name
|
||||
@id = objectsRegistry.add value
|
||||
|
||||
@members = []
|
||||
for prop, field of value
|
||||
@members.push { name: prop, type: typeof field }
|
||||
@members.push { name: prop, type: typeof field } for prop, field of value
|
||||
else
|
||||
@type = 'value'
|
||||
@value = value
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
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)
|
||||
|
||||
switch plain.type
|
||||
when 'error' then throw new Error('Remote Error: ' + plain.value)
|
||||
when 'value' then plain.value
|
||||
when 'array' then (generateFromPainObject(el) for el in plain.members)
|
||||
else
|
||||
ret = {}
|
||||
if plain.type is 'function'
|
||||
# A shadow class to represent the remote function object.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue