2018-07-27 01:13:56 +00:00
|
|
|
const electron = require('electron');
|
2019-05-16 22:32:11 +00:00
|
|
|
const Queue = require('p-queue');
|
2018-07-27 01:13:56 +00:00
|
|
|
const sql = require('./sql');
|
2018-08-28 21:53:05 +00:00
|
|
|
const { remove: removeUserConfig } = require('./user_config');
|
|
|
|
const { remove: removeEphemeralConfig } = require('./ephemeral_config');
|
2018-07-27 01:13:56 +00:00
|
|
|
|
|
|
|
const { ipcMain } = electron;
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
initialize,
|
|
|
|
};
|
|
|
|
|
|
|
|
let initialized = false;
|
|
|
|
|
|
|
|
const SQL_CHANNEL_KEY = 'sql-channel';
|
|
|
|
const ERASE_SQL_KEY = 'erase-sql-key';
|
|
|
|
|
2019-05-16 22:32:11 +00:00
|
|
|
const queue = new Queue({ concurrency: 1 });
|
|
|
|
|
2018-08-16 17:07:38 +00:00
|
|
|
function initialize() {
|
2018-07-27 01:13:56 +00:00
|
|
|
if (initialized) {
|
|
|
|
throw new Error('sqlChannels: already initialized!');
|
|
|
|
}
|
|
|
|
initialized = true;
|
|
|
|
|
|
|
|
ipcMain.on(SQL_CHANNEL_KEY, async (event, jobId, callName, ...args) => {
|
|
|
|
try {
|
|
|
|
const fn = sql[callName];
|
|
|
|
if (!fn) {
|
|
|
|
throw new Error(
|
|
|
|
`sql channel: ${callName} is not an available function`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-16 22:32:11 +00:00
|
|
|
// Note: we queue here to keep multi-query operations atomic. Without it, any
|
|
|
|
// multistage data operation (even within a BEGIN/COMMIT) can become interleaved,
|
|
|
|
// since all requests share one database connection.
|
|
|
|
const result = await queue.add(() => fn(...args));
|
2018-07-27 01:13:56 +00:00
|
|
|
event.sender.send(`${SQL_CHANNEL_KEY}-done`, jobId, null, result);
|
|
|
|
} catch (error) {
|
|
|
|
const errorForDisplay = error && error.stack ? error.stack : error;
|
|
|
|
console.log(
|
|
|
|
`sql channel error with call ${callName}: ${errorForDisplay}`
|
|
|
|
);
|
2019-08-20 13:24:43 +00:00
|
|
|
if (!event.sender.isDestroyed()) {
|
|
|
|
event.sender.send(`${SQL_CHANNEL_KEY}-done`, jobId, errorForDisplay);
|
|
|
|
}
|
2018-07-27 01:13:56 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
ipcMain.on(ERASE_SQL_KEY, async event => {
|
|
|
|
try {
|
2018-08-28 21:53:05 +00:00
|
|
|
removeUserConfig();
|
|
|
|
removeEphemeralConfig();
|
2018-07-27 01:13:56 +00:00
|
|
|
event.sender.send(`${ERASE_SQL_KEY}-done`);
|
|
|
|
} catch (error) {
|
|
|
|
const errorForDisplay = error && error.stack ? error.stack : error;
|
|
|
|
console.log(`sql-erase error: ${errorForDisplay}`);
|
|
|
|
event.sender.send(`${ERASE_SQL_KEY}-done`, error);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|