electron/lib/renderer/api/remote.js

361 lines
11 KiB
JavaScript
Raw Normal View History

2016-03-25 19:57:17 +00:00
'use strict'
const v8Util = process.electronBinding('v8_util')
2016-01-12 02:40:23 +00:00
const { CallbacksRegistry } = require('@electron/internal/renderer/callbacks-registry')
const bufferUtils = require('@electron/internal/common/buffer-utils')
const errorUtils = require('@electron/internal/common/error-utils')
const { isPromise } = require('@electron/internal/common/is-promise')
const { ipcRendererInternal } = require('@electron/internal/renderer/ipc-renderer-internal')
2016-03-29 00:35:49 +00:00
const callbacksRegistry = new CallbacksRegistry()
const remoteObjectCache = v8Util.createIDWeakMap()
// An unique ID that can represent current context.
const contextId = v8Util.getHiddenValue(global, 'contextId')
// Notify the main process when current context is going to be released.
// Note that when the renderer process is destroyed, the message may not be
// sent, we also listen to the "render-view-deleted" event in the main process
// to guard that situation.
process.on('exit', () => {
const command = 'ELECTRON_BROWSER_CONTEXT_RELEASE'
ipcRendererInternal.sendSync(command, contextId)
})
2016-01-14 18:35:29 +00:00
// Convert the arguments object into an array of meta data.
2017-10-26 03:41:11 +00:00
function wrapArgs (args, visited = new Set()) {
const valueToMeta = (value) => {
// Check for circular reference.
if (visited.has(value)) {
2016-01-12 02:40:23 +00:00
return {
type: 'value',
value: null
}
}
if (Array.isArray(value)) {
visited.add(value)
const meta = {
2016-01-12 02:40:23 +00:00
type: 'array',
value: wrapArgs(value, visited)
2016-03-25 19:57:17 +00:00
}
visited.delete(value)
return meta
} else if (bufferUtils.isBuffer(value)) {
2016-01-12 02:40:23 +00:00
return {
type: 'buffer',
value: bufferUtils.bufferToMeta(value)
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
} else if (value instanceof Date) {
return {
type: 'date',
value: value.getTime()
2016-03-25 19:57:17 +00:00
}
2017-11-03 12:47:21 +00:00
} else if ((value != null) && typeof value === 'object') {
2016-05-25 05:38:35 +00:00
if (isPromise(value)) {
return {
type: 'promise',
2016-05-23 22:07:01 +00:00
then: valueToMeta(function (onFulfilled, onRejected) {
value.then(onFulfilled, onRejected)
})
}
} else if (v8Util.getHiddenValue(value, 'atomId')) {
return {
type: 'remote-object',
id: v8Util.getHiddenValue(value, 'atomId')
}
}
const meta = {
2016-01-12 02:40:23 +00:00
type: 'object',
2017-10-26 03:41:11 +00:00
name: value.constructor ? value.constructor.name : '',
2016-01-12 02:40:23 +00:00
members: []
2016-03-25 19:57:17 +00:00
}
visited.add(value)
for (const prop in value) {
meta.members.push({
2016-01-12 02:40:23 +00:00
name: prop,
value: valueToMeta(value[prop])
2016-03-25 19:57:17 +00:00
})
2016-01-12 02:40:23 +00:00
}
visited.delete(value)
return meta
2016-01-12 02:40:23 +00:00
} else if (typeof value === 'function' && v8Util.getHiddenValue(value, 'returnValue')) {
return {
type: 'function-with-return-value',
value: valueToMeta(value())
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
} else if (typeof value === 'function') {
return {
type: 'function',
id: callbacksRegistry.add(value),
location: v8Util.getHiddenValue(value, 'location'),
length: value.length
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
} else {
return {
type: 'value',
value: value
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
}
2016-03-25 19:57:17 +00:00
}
return args.map(valueToMeta)
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
// Populate object's members from descriptors.
// The |ref| will be kept referenced by |members|.
// This matches |getObjectMemebers| in rpc-server.
2017-10-25 13:51:21 +00:00
function setObjectMembers (ref, object, metaId, members) {
if (!Array.isArray(members)) return
for (const member of members) {
2016-03-29 00:35:49 +00:00
if (object.hasOwnProperty(member.name)) continue
const descriptor = { enumerable: member.enumerable }
if (member.type === 'method') {
const remoteMemberFunction = function (...args) {
2017-11-03 01:07:40 +00:00
let command
if (this && this.constructor === remoteMemberFunction) {
2017-11-03 01:07:40 +00:00
command = 'ELECTRON_BROWSER_MEMBER_CONSTRUCTOR'
} else {
2017-11-03 01:07:40 +00:00
command = 'ELECTRON_BROWSER_MEMBER_CALL'
}
const ret = ipcRendererInternal.sendSync(command, contextId, metaId, member.name, wrapArgs(args))
2017-11-03 01:07:40 +00:00
return metaToValue(ret)
2016-03-25 19:57:17 +00:00
}
let descriptorFunction = proxyFunctionProperties(remoteMemberFunction, metaId, member.name)
2017-11-03 01:07:40 +00:00
descriptor.get = () => {
2018-09-13 16:10:51 +00:00
descriptorFunction.ref = ref // The member should reference its object.
return descriptorFunction
}
// Enable monkey-patch the method
2017-11-03 01:07:40 +00:00
descriptor.set = (value) => {
descriptorFunction = value
return value
}
2016-03-25 19:57:17 +00:00
descriptor.configurable = true
} else if (member.type === 'get') {
2017-11-03 01:07:40 +00:00
descriptor.get = () => {
const command = 'ELECTRON_BROWSER_MEMBER_GET'
const meta = ipcRendererInternal.sendSync(command, contextId, metaId, member.name)
2017-11-03 01:07:40 +00:00
return metaToValue(meta)
2016-03-25 19:57:17 +00:00
}
if (member.writable) {
2017-11-03 01:07:40 +00:00
descriptor.set = (value) => {
2017-04-03 21:18:04 +00:00
const args = wrapArgs([value])
2017-11-03 01:07:40 +00:00
const command = 'ELECTRON_BROWSER_MEMBER_SET'
const meta = ipcRendererInternal.sendSync(command, contextId, metaId, member.name, args)
2017-10-26 03:41:11 +00:00
if (meta != null) metaToValue(meta)
2016-03-25 19:57:17 +00:00
return value
}
}
}
2016-03-25 19:57:17 +00:00
Object.defineProperty(object, member.name, descriptor)
}
2016-03-25 19:57:17 +00:00
}
// Populate object's prototype from descriptor.
// This matches |getObjectPrototype| in rpc-server.
2017-10-25 13:51:21 +00:00
function setObjectPrototype (ref, object, metaId, descriptor) {
2017-11-03 01:07:40 +00:00
if (descriptor === null) return
const proto = {}
setObjectMembers(ref, proto, metaId, descriptor.members)
setObjectPrototype(ref, proto, metaId, descriptor.proto)
2016-03-25 19:57:17 +00:00
Object.setPrototypeOf(object, proto)
}
// Wrap function in Proxy for accessing remote properties
2017-10-25 13:51:21 +00:00
function proxyFunctionProperties (remoteMemberFunction, metaId, name) {
let loaded = false
// Lazily load function properties
const loadRemoteProperties = () => {
if (loaded) return
loaded = true
2017-11-03 01:07:40 +00:00
const command = 'ELECTRON_BROWSER_MEMBER_GET'
const meta = ipcRendererInternal.sendSync(command, contextId, metaId, name)
setObjectMembers(remoteMemberFunction, remoteMemberFunction, meta.id, meta.members)
}
return new Proxy(remoteMemberFunction, {
set: (target, property, value, receiver) => {
if (property !== 'ref') loadRemoteProperties()
target[property] = value
return true
},
get: (target, property, receiver) => {
if (!target.hasOwnProperty(property)) loadRemoteProperties()
const value = target[property]
if (property === 'toString' && typeof value === 'function') {
return value.bind(target)
}
return value
},
ownKeys: (target) => {
loadRemoteProperties()
return Object.getOwnPropertyNames(target)
},
getOwnPropertyDescriptor: (target, property) => {
const descriptor = Object.getOwnPropertyDescriptor(target, property)
2017-10-25 13:51:21 +00:00
if (descriptor) return descriptor
loadRemoteProperties()
return Object.getOwnPropertyDescriptor(target, property)
}
})
}
2016-01-14 18:35:29 +00:00
// Convert meta data from browser into real value.
2017-10-25 13:51:21 +00:00
function metaToValue (meta) {
const types = {
2017-11-03 01:07:40 +00:00
value: () => meta.value,
array: () => meta.members.map((member) => metaToValue(member)),
buffer: () => bufferUtils.metaToBuffer(meta.value),
promise: () => Promise.resolve({ then: metaToValue(meta.then) }),
2017-11-03 01:07:40 +00:00
error: () => metaToPlainObject(meta),
date: () => new Date(meta.value),
exception: () => { throw errorUtils.deserialize(meta.value) }
2017-10-25 13:51:21 +00:00
}
if (meta.type in types) {
2017-11-03 01:07:40 +00:00
return types[meta.type]()
2017-10-25 13:51:21 +00:00
} else {
let ret
2017-11-03 01:07:40 +00:00
if (remoteObjectCache.has(meta.id)) {
v8Util.addRemoteObjectRef(contextId, meta.id)
2017-11-03 01:07:40 +00:00
return remoteObjectCache.get(meta.id)
}
2017-10-25 13:51:21 +00:00
// A shadow class to represent the remote function object.
if (meta.type === 'function') {
const remoteFunction = function (...args) {
2017-11-03 01:07:40 +00:00
let command
2017-10-25 13:51:21 +00:00
if (this && this.constructor === remoteFunction) {
2017-11-03 01:07:40 +00:00
command = 'ELECTRON_BROWSER_CONSTRUCTOR'
2017-10-25 13:51:21 +00:00
} else {
2017-11-03 01:07:40 +00:00
command = 'ELECTRON_BROWSER_FUNCTION_CALL'
2016-03-25 19:57:17 +00:00
}
const obj = ipcRendererInternal.sendSync(command, contextId, meta.id, wrapArgs(args))
2017-11-03 01:07:40 +00:00
return metaToValue(obj)
2016-01-12 02:40:23 +00:00
}
2017-10-25 13:51:21 +00:00
ret = remoteFunction
} else {
ret = {}
}
2016-01-12 02:40:23 +00:00
2017-10-25 13:51:21 +00:00
setObjectMembers(ret, ret, meta.id, meta.members)
setObjectPrototype(ret, ret, meta.id, meta.proto)
Object.defineProperty(ret.constructor, 'name', { value: meta.name })
2016-01-12 02:40:23 +00:00
2017-10-25 13:51:21 +00:00
// Track delegate obj's lifetime & tell browser to clean up when object is GCed.
v8Util.setRemoteObjectFreer(ret, contextId, meta.id)
2017-10-25 13:51:21 +00:00
v8Util.setHiddenValue(ret, 'atomId', meta.id)
v8Util.addRemoteObjectRef(contextId, meta.id)
2017-10-25 13:51:21 +00:00
remoteObjectCache.set(meta.id, ret)
return ret
2016-01-12 02:40:23 +00:00
}
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Construct a plain object from the meta.
2017-10-25 13:51:21 +00:00
function metaToPlainObject (meta) {
2017-11-03 01:29:17 +00:00
const obj = (() => meta.type === 'error' ? new Error() : {})()
for (let i = 0; i < meta.members.length; i++) {
const { name, value } = meta.members[i]
2017-11-03 01:29:17 +00:00
obj[name] = value
}
2016-03-25 19:57:17 +00:00
return obj
}
2016-01-12 02:40:23 +00:00
function handleMessage (channel, handler) {
ipcRendererInternal.on(channel, (event, passedContextId, id, ...args) => {
if (passedContextId === contextId) {
handler(id, ...args)
} else {
// Message sent to an un-exist context, notify the error to main process.
ipcRendererInternal.send('ELECTRON_BROWSER_WRONG_CONTEXT_ERROR', contextId, passedContextId, id)
}
})
}
2016-01-14 18:35:29 +00:00
// Browser calls a callback in renderer.
handleMessage('ELECTRON_RENDERER_CALLBACK', (id, args) => {
2016-05-19 22:28:08 +00:00
callbacksRegistry.apply(id, metaToValue(args))
2016-03-25 19:57:17 +00:00
})
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// A callback in browser is released.
handleMessage('ELECTRON_RENDERER_RELEASE_CALLBACK', (id) => {
2016-05-19 22:28:08 +00:00
callbacksRegistry.remove(id)
2016-03-25 19:57:17 +00:00
})
2016-01-12 02:40:23 +00:00
2017-10-26 03:41:11 +00:00
exports.require = (module) => {
2017-11-03 01:07:40 +00:00
const command = 'ELECTRON_BROWSER_REQUIRE'
const meta = ipcRendererInternal.sendSync(command, contextId, module)
2017-11-03 01:07:40 +00:00
return metaToValue(meta)
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Alias to remote.require('electron').xxx.
2017-10-26 03:41:11 +00:00
exports.getBuiltin = (module) => {
2017-11-03 01:07:40 +00:00
const command = 'ELECTRON_BROWSER_GET_BUILTIN'
const meta = ipcRendererInternal.sendSync(command, contextId, module)
2017-11-03 01:07:40 +00:00
return metaToValue(meta)
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
2017-10-26 03:41:11 +00:00
exports.getCurrentWindow = () => {
2017-11-03 01:07:40 +00:00
const command = 'ELECTRON_BROWSER_CURRENT_WINDOW'
const meta = ipcRendererInternal.sendSync(command, contextId)
2017-11-03 01:07:40 +00:00
return metaToValue(meta)
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Get current WebContents object.
2017-10-26 03:41:11 +00:00
exports.getCurrentWebContents = () => {
2018-12-12 21:31:16 +00:00
const command = 'ELECTRON_BROWSER_CURRENT_WEB_CONTENTS'
const meta = ipcRendererInternal.sendSync(command, contextId)
2018-12-12 21:31:16 +00:00
return metaToValue(meta)
}
2016-01-14 18:35:29 +00:00
// Get a global object in browser.
2017-10-26 03:41:11 +00:00
exports.getGlobal = (name) => {
2017-11-03 01:07:40 +00:00
const command = 'ELECTRON_BROWSER_GLOBAL'
const meta = ipcRendererInternal.sendSync(command, contextId, name)
2017-11-03 01:07:40 +00:00
return metaToValue(meta)
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Get the process object in browser.
Object.defineProperty(exports, 'process', {
get: () => exports.getGlobal('process')
})
2016-01-12 02:40:23 +00:00
2017-10-26 03:41:11 +00:00
// Create a function that will return the specified value when called in browser.
exports.createFunctionWithReturnValue = (returnValue) => {
2017-10-25 13:51:21 +00:00
const func = () => returnValue
2016-03-25 19:57:17 +00:00
v8Util.setHiddenValue(func, 'returnValue', true)
return func
}
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Get the guest WebContents from guestInstanceId.
2017-10-26 03:41:11 +00:00
exports.getGuestWebContents = (guestInstanceId) => {
2017-11-03 01:07:40 +00:00
const command = 'ELECTRON_BROWSER_GUEST_WEB_CONTENTS'
const meta = ipcRendererInternal.sendSync(command, contextId, guestInstanceId)
2016-03-25 19:57:17 +00:00
return metaToValue(meta)
}
const addBuiltinProperty = (name) => {
Object.defineProperty(exports, name, {
2017-11-03 01:07:40 +00:00
get: () => exports.getBuiltin(name)
})
}
const browserModules =
require('@electron/internal/common/api/module-list').concat(
2019-06-02 20:03:03 +00:00
require('@electron/internal/browser/api/module-keys'))
// And add a helper receiver for each one.
browserModules
.filter((m) => !m.private)
.map((m) => m.name)
.forEach(addBuiltinProperty)