electron/lib/browser/desktop-capturer.js

72 lines
2.3 KiB
JavaScript
Raw Normal View History

'use strict'
2016-03-21 11:09:29 -07:00
2017-10-24 12:49:37 -04:00
const {ipcMain} = require('electron')
const {desktopCapturer} = process.atomBinding('desktop_capturer')
2016-01-11 18:40:23 -08:00
2017-10-24 12:49:37 -04:00
const deepEqual = (a, b) => JSON.stringify(a) === JSON.stringify(b)
2016-01-11 18:40:23 -08:00
2016-01-14 10:35:29 -08:00
// A queue for holding all requests from renderer process.
2017-10-24 12:49:37 -04:00
let requestsQueue = []
const electronSources = 'ELECTRON_BROWSER_DESKTOP_CAPTURER_GET_SOURCES'
const capturerResult = (id) => `ELECTRON_RENDERER_DESKTOP_CAPTURER_RESULT_${id}`
2016-01-11 18:40:23 -08:00
2017-10-24 12:49:37 -04:00
ipcMain.on(electronSources, (event, captureWindow, captureScreen, thumbnailSize, id) => {
const request = {
id,
2016-01-11 18:40:23 -08:00
options: {
2017-10-24 12:49:37 -04:00
captureWindow,
captureScreen,
thumbnailSize
2016-01-11 18:40:23 -08:00
},
webContents: event.sender
}
requestsQueue.push(request)
2016-01-11 18:40:23 -08:00
if (requestsQueue.length === 1) {
desktopCapturer.startHandling(captureWindow, captureScreen, thumbnailSize)
2016-01-11 18:40:23 -08:00
}
2016-01-14 10:44:21 -08:00
// If the WebContents is destroyed before receiving result, just remove the
// reference from requestsQueue to make the module not send the result to it.
2017-10-24 12:49:37 -04:00
event.sender.once('destroyed', () => {
2016-03-28 17:40:40 -07:00
request.webContents = null
})
})
2016-01-11 18:40:23 -08:00
2017-10-24 12:49:37 -04:00
desktopCapturer.emit = (event, name, sources) => {
2016-01-14 10:35:29 -08:00
// Receiving sources result from main process, now send them back to renderer.
2017-10-24 15:47:09 -04:00
const handledRequest = requestsQueue.shift()
2017-10-24 12:49:37 -04:00
const handledWebContents = handledRequest.webContents
const unhandledRequestsQueue = []
2017-10-24 15:47:09 -04:00
const result = sources.map(source => {
return {
id: source.id,
name: source.name,
thumbnail: source.thumbnail.toDataURL(),
display_id: source.display_id
2017-10-24 15:47:09 -04:00
}
})
2017-10-24 12:49:37 -04:00
2017-10-24 19:36:06 -04:00
if (handledWebContents) {
2017-10-24 15:47:09 -04:00
handledWebContents.send(capturerResult(handledRequest.id), result)
2016-01-11 18:40:23 -08:00
}
2017-10-24 19:36:06 -04:00
// Check the queue to see whether there is another identical request & handle
2017-10-24 12:49:37 -04:00
requestsQueue.forEach(request => {
const webContents = request.webContents
2016-01-11 18:40:23 -08:00
if (deepEqual(handledRequest.options, request.options)) {
2017-10-24 19:36:06 -04:00
if (webContents) webContents.send(capturerResult(request.id), result)
2016-01-11 18:40:23 -08:00
} else {
unhandledRequestsQueue.push(request)
2016-01-11 18:40:23 -08:00
}
2017-10-24 12:49:37 -04:00
})
requestsQueue = unhandledRequestsQueue
2016-01-11 18:40:23 -08:00
2016-01-14 10:35:29 -08:00
// If the requestsQueue is not empty, start a new request handling.
2016-01-11 18:40:23 -08:00
if (requestsQueue.length > 0) {
const {captureWindow, captureScreen, thumbnailSize} = requestsQueue[0].options
return desktopCapturer.startHandling(captureWindow, captureScreen, thumbnailSize)
2016-01-11 18:40:23 -08:00
}
}