2013-04-24 08:43:01 +00:00
|
|
|
ipc = require 'ipc'
|
2013-04-27 11:13:24 +00:00
|
|
|
v8_util = process.atomBinding 'v8_util'
|
2013-04-24 08:43:01 +00:00
|
|
|
|
2013-05-04 09:01:28 +00:00
|
|
|
nextCallbackId = 0
|
|
|
|
storedCallbacks = {}
|
|
|
|
|
|
|
|
storeCallback = (callback) ->
|
|
|
|
++nextCallbackId
|
|
|
|
storedCallbacks[nextCallbackId] = callback
|
|
|
|
nextCallbackId
|
|
|
|
|
|
|
|
makeCallback = (id, args) ->
|
|
|
|
storedCallbacks[id].apply global, args
|
|
|
|
|
|
|
|
releaseCallback = (id) ->
|
|
|
|
delete storedCallbacks[id]
|
|
|
|
|
2013-05-03 13:50:36 +00:00
|
|
|
# Transform the arguments passed to browser into list of descriptions.
|
|
|
|
#
|
|
|
|
# This function assumes an array is passed, and it only converts remote objects
|
|
|
|
# and functions, other types of values are passed as it is.
|
2013-05-04 09:01:28 +00:00
|
|
|
wrapArgs = (args) ->
|
|
|
|
Array::slice.call(args).map (value) ->
|
2013-05-03 13:50:36 +00:00
|
|
|
if typeof value is 'object' and v8_util.getHiddenValue value, 'isRemoteObject'
|
|
|
|
type: 'remoteObject', id: value.id
|
|
|
|
else if typeof value is 'function'
|
2013-05-04 09:01:28 +00:00
|
|
|
type: 'function', id: storeCallback(value)
|
2013-05-03 13:50:36 +00:00
|
|
|
else
|
|
|
|
type: 'value', value: value
|
|
|
|
|
2013-04-26 15:58:49 +00:00
|
|
|
# Transform the description of value into a value or delegate object.
|
|
|
|
metaToValue = (meta) ->
|
|
|
|
switch meta.type
|
|
|
|
when 'error' then throw new Error(meta.value)
|
|
|
|
when 'value' then meta.value
|
|
|
|
when 'array' then (metaToValue(el) for el in meta.members)
|
2013-04-25 08:03:29 +00:00
|
|
|
else
|
2013-04-26 15:58:49 +00:00
|
|
|
if meta.type is 'function'
|
2013-04-25 08:03:29 +00:00
|
|
|
# A shadow class to represent the remote function object.
|
|
|
|
ret =
|
2013-04-25 08:36:28 +00:00
|
|
|
class RemoteFunction
|
2013-04-25 08:03:29 +00:00
|
|
|
constructor: ->
|
2013-04-25 08:36:28 +00:00
|
|
|
if @constructor == RemoteFunction
|
2013-04-25 08:03:29 +00:00
|
|
|
# Constructor call.
|
2013-05-04 09:01:28 +00:00
|
|
|
obj = ipc.sendChannelSync 'ATOM_BROWSER_CONSTRUCTOR', meta.id, wrapArgs(arguments)
|
2013-04-24 08:43:01 +00:00
|
|
|
|
2013-04-25 08:03:29 +00:00
|
|
|
# Returning object in constructor will replace constructed object
|
|
|
|
# with the returned object.
|
|
|
|
# http://stackoverflow.com/questions/1978049/what-values-can-a-constructor-return-to-avoid-returning-this
|
2013-04-26 15:58:49 +00:00
|
|
|
return metaToValue obj
|
2013-04-25 08:03:29 +00:00
|
|
|
else
|
|
|
|
# Function call.
|
2013-05-04 09:01:28 +00:00
|
|
|
ret = ipc.sendChannelSync 'ATOM_BROWSER_FUNCTION_CALL', meta.id, wrapArgs(arguments)
|
2013-04-26 15:58:49 +00:00
|
|
|
return metaToValue ret
|
2013-04-25 08:36:28 +00:00
|
|
|
else
|
2013-04-26 15:58:49 +00:00
|
|
|
ret = v8_util.createObjectWithName meta.name
|
2013-04-25 07:12:56 +00:00
|
|
|
|
2013-04-25 08:03:29 +00:00
|
|
|
# Polulate delegate members.
|
2013-04-26 15:58:49 +00:00
|
|
|
for member in meta.members
|
2013-04-25 08:03:29 +00:00
|
|
|
do (member) ->
|
|
|
|
if member.type is 'function'
|
|
|
|
ret[member.name] = ->
|
|
|
|
# Call member function.
|
2013-05-04 09:01:28 +00:00
|
|
|
ret = ipc.sendChannelSync 'ATOM_BROWSER_MEMBER_CALL', meta.id, member.name, wrapArgs(arguments)
|
2013-04-26 15:58:49 +00:00
|
|
|
metaToValue ret
|
2013-04-25 08:03:29 +00:00
|
|
|
else
|
|
|
|
ret.__defineSetter__ member.name, (value) ->
|
|
|
|
# Set member data.
|
2013-04-29 10:59:34 +00:00
|
|
|
ipc.sendChannelSync 'ATOM_BROWSER_MEMBER_SET', meta.id, member.name, value
|
2013-04-24 08:43:01 +00:00
|
|
|
|
2013-04-25 08:03:29 +00:00
|
|
|
ret.__defineGetter__ member.name, ->
|
|
|
|
# Get member data.
|
2013-04-29 10:59:34 +00:00
|
|
|
ret = ipc.sendChannelSync 'ATOM_BROWSER_MEMBER_GET', meta.id, member.name
|
2013-04-26 15:58:49 +00:00
|
|
|
metaToValue ret
|
2013-04-25 07:12:56 +00:00
|
|
|
|
2013-04-25 11:26:31 +00:00
|
|
|
# Track delegate object's life time, and tell the browser to clean up
|
|
|
|
# when the object is GCed.
|
|
|
|
v8_util.setDestructor ret, ->
|
2013-04-29 10:59:34 +00:00
|
|
|
ipc.sendChannel 'ATOM_BROWSER_DEREFERENCE', meta.storeId
|
2013-04-25 11:26:31 +00:00
|
|
|
|
2013-05-03 13:50:36 +00:00
|
|
|
# Mark this is a remote object.
|
|
|
|
v8_util.setHiddenValue ret, 'isRemoteObject', true
|
|
|
|
|
2013-04-25 08:03:29 +00:00
|
|
|
ret
|
2013-04-24 08:43:01 +00:00
|
|
|
|
2013-05-04 09:01:28 +00:00
|
|
|
ipc.on 'ATOM_RENDERER_CALLBACK', (id, args) ->
|
|
|
|
makeCallback id, metaToValue(args)
|
|
|
|
|
|
|
|
ipc.on 'ATOM_RENDERER_RELEASE_CALLBACK', (id) ->
|
|
|
|
releaseCallback id
|
|
|
|
|
2013-05-01 02:59:29 +00:00
|
|
|
# Release all resources of current render view when it's going to be unloaded.
|
|
|
|
window.addEventListener 'unload', (event) ->
|
|
|
|
ipc.sendChannelSync 'ATOM_BROWSER_RELEASE_RENDER_VIEW'
|
|
|
|
|
2013-04-25 11:26:31 +00:00
|
|
|
# Get remote module.
|
2013-04-24 08:43:01 +00:00
|
|
|
exports.require = (module) ->
|
2013-04-29 10:59:34 +00:00
|
|
|
meta = ipc.sendChannelSync 'ATOM_BROWSER_REQUIRE', module
|
2013-04-26 15:58:49 +00:00
|
|
|
metaToValue meta
|
2013-04-26 14:25:30 +00:00
|
|
|
|
|
|
|
# Get object with specified id.
|
|
|
|
exports.getObject = (id) ->
|
2013-04-29 10:59:34 +00:00
|
|
|
meta = ipc.sendChannelSync 'ATOM_BROWSER_REFERENCE', id
|
2013-04-26 15:58:49 +00:00
|
|
|
metaToValue meta
|
2013-04-27 11:06:41 +00:00
|
|
|
|
|
|
|
# Get current window object.
|
2013-05-03 13:14:28 +00:00
|
|
|
windowCache = null
|
2013-04-27 11:06:41 +00:00
|
|
|
exports.getCurrentWindow = ->
|
2013-05-03 13:14:28 +00:00
|
|
|
return windowCache if windowCache?
|
2013-04-29 10:59:34 +00:00
|
|
|
meta = ipc.sendChannelSync 'ATOM_BROWSER_CURRENT_WINDOW'
|
2013-05-03 13:14:28 +00:00
|
|
|
windowCache = metaToValue meta
|
2013-04-30 08:27:14 +00:00
|
|
|
|
|
|
|
# Get a global object in browser.
|
|
|
|
exports.getGlobal = (name) ->
|
|
|
|
meta = ipc.sendChannelSync 'ATOM_BROWSER_GLOBAL', name
|
|
|
|
metaToValue meta
|
|
|
|
|
|
|
|
# Get the process object in browser.
|
|
|
|
processCache = null
|
|
|
|
exports.__defineGetter__ 'process', ->
|
|
|
|
processCache = exports.getGlobal('process') unless processCache?
|
|
|
|
processCache
|