clean main process desktop_capturer
This commit is contained in:
parent
b58ceae69c
commit
491a00fd84
1 changed files with 34 additions and 32 deletions
|
@ -1,23 +1,23 @@
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
const ipcMain = require('electron').ipcMain
|
const {ipcMain} = require('electron')
|
||||||
const desktopCapturer = process.atomBinding('desktop_capturer').desktopCapturer
|
const {desktopCapturer} = process.atomBinding('desktop_capturer')
|
||||||
|
|
||||||
var deepEqual = function (opt1, opt2) {
|
const deepEqual = (a, b) => JSON.stringify(a) === JSON.stringify(b)
|
||||||
return JSON.stringify(opt1) === JSON.stringify(opt2)
|
|
||||||
}
|
|
||||||
|
|
||||||
// A queue for holding all requests from renderer process.
|
// A queue for holding all requests from renderer process.
|
||||||
var requestsQueue = []
|
let requestsQueue = []
|
||||||
|
|
||||||
ipcMain.on('ELECTRON_BROWSER_DESKTOP_CAPTURER_GET_SOURCES', function (event, captureWindow, captureScreen, thumbnailSize, id) {
|
const electronSources = 'ELECTRON_BROWSER_DESKTOP_CAPTURER_GET_SOURCES'
|
||||||
var request
|
const capturerResult = (id) => `ELECTRON_RENDERER_DESKTOP_CAPTURER_RESULT_${id}`
|
||||||
request = {
|
|
||||||
id: id,
|
ipcMain.on(electronSources, (event, captureWindow, captureScreen, thumbnailSize, id) => {
|
||||||
|
const request = {
|
||||||
|
id,
|
||||||
options: {
|
options: {
|
||||||
captureWindow: captureWindow,
|
captureWindow,
|
||||||
captureScreen: captureScreen,
|
captureScreen,
|
||||||
thumbnailSize: thumbnailSize
|
thumbnailSize
|
||||||
},
|
},
|
||||||
webContents: event.sender
|
webContents: event.sender
|
||||||
}
|
}
|
||||||
|
@ -28,45 +28,47 @@ ipcMain.on('ELECTRON_BROWSER_DESKTOP_CAPTURER_GET_SOURCES', function (event, cap
|
||||||
|
|
||||||
// If the WebContents is destroyed before receiving result, just remove the
|
// If the WebContents is destroyed before receiving result, just remove the
|
||||||
// reference from requestsQueue to make the module not send the result to it.
|
// reference from requestsQueue to make the module not send the result to it.
|
||||||
event.sender.once('destroyed', function () {
|
event.sender.once('destroyed', () => {
|
||||||
request.webContents = null
|
request.webContents = null
|
||||||
|
return
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
desktopCapturer.emit = function (event, name, sources) {
|
desktopCapturer.emit = (event, name, sources) => {
|
||||||
// Receiving sources result from main process, now send them back to renderer.
|
// Receiving sources result from main process, now send them back to renderer.
|
||||||
var handledRequest, i, len, ref, ref1, request, result, source, unhandledRequestsQueue
|
const handledRequest = requestsQueue.shift(0)
|
||||||
handledRequest = requestsQueue.shift(0)
|
const handledWebContents = handledRequest.webContents
|
||||||
result = (function () {
|
const unhandledRequestsQueue = []
|
||||||
var i, len, results
|
|
||||||
results = []
|
const result = () => {
|
||||||
for (i = 0, len = sources.length; i < len; i++) {
|
const results = []
|
||||||
source = sources[i]
|
sources.forEach(source => {
|
||||||
results.push({
|
results.push({
|
||||||
id: source.id,
|
id: source.id,
|
||||||
name: source.name,
|
name: source.name,
|
||||||
thumbnail: source.thumbnail.toDataURL()
|
thumbnail: source.thumbnail.toDataURL()
|
||||||
})
|
})
|
||||||
}
|
})
|
||||||
return results
|
return results
|
||||||
})()
|
}
|
||||||
if ((ref = handledRequest.webContents) != null) {
|
|
||||||
ref.send('ELECTRON_RENDERER_DESKTOP_CAPTURER_RESULT_' + handledRequest.id, result)
|
if (handledWebContents != null) {
|
||||||
|
handledWebContents.send(capturerResult(handledRequest.id), result())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check the queue to see whether there is other same request. If has, handle
|
// Check the queue to see whether there is other same request. If has, handle
|
||||||
// it for reducing redunplicated `desktopCaptuer.startHandling` calls.
|
// it for reducing redunplicated `desktopCaptuer.startHandling` calls.
|
||||||
unhandledRequestsQueue = []
|
|
||||||
for (i = 0, len = requestsQueue.length; i < len; i++) {
|
requestsQueue.forEach(request => {
|
||||||
request = requestsQueue[i]
|
const webContents = request.webContents
|
||||||
if (deepEqual(handledRequest.options, request.options)) {
|
if (deepEqual(handledRequest.options, request.options)) {
|
||||||
if ((ref1 = request.webContents) != null) {
|
if (webContents != null) {
|
||||||
ref1.send('ELECTRON_RENDERER_DESKTOP_CAPTURER_RESULT_' + request.id, result)
|
webContents.send(capturerResult(request.id), result())
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
unhandledRequestsQueue.push(request)
|
unhandledRequestsQueue.push(request)
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
requestsQueue = unhandledRequestsQueue
|
requestsQueue = unhandledRequestsQueue
|
||||||
|
|
||||||
// If the requestsQueue is not empty, start a new request handling.
|
// If the requestsQueue is not empty, start a new request handling.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue