-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.js
585 lines (513 loc) · 19.2 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
const { app, Menu, dialog, ipcMain, MessageChannelMain, BrowserWindow, powerSaveBlocker } = require('electron');
app.commandLine.appendSwitch('disable-renderer-backgrounding');
// WebGPU flags needed for Linux
app.commandLine.appendSwitch('enable-unsafe-webgpu');
app.commandLine.appendSwitch('enable-features','Vulkan');
const { autoUpdater } = require("electron-updater");
const log = require('electron-log');
const fs = require("node:fs");
const path = require('node:path');
const settings = require('electron-settings');
process.env['TF_ENABLE_ONEDNN_OPTS'] = "1";
//require('update-electron-app')();
let files = [];
let DEBUG = false;
let unsavedRecords = false;
//-------------------------------------------------------------------
// Logging
// This logging setup is not required for auto-updates to work,
// but it sure makes debugging easier :)
//-------------------------------------------------------------------
console.log = log.log;
console.warn = log.warn;
console.error = log.error;
autoUpdater.logger = log;
autoUpdater.logger.transports.file.level = 'info';
// Define the menu template
const isMac = process.platform === 'darwin'; // macOS check
const template = [
...(isMac ? [{
label: 'Chirpity',
submenu: [
{ role: 'about' },
{ type: 'separator' },
{ role: 'services' },
{ type: 'separator' },
{ role: 'hide' },
{ role: 'hideOthers' },
{ role: 'unhide' },
{ type: 'separator' },
{ role: 'quit' }
]
}] : []),
{
label: 'Edit',
submenu: [
{ role: 'undo' },
{ role: 'redo' },
{ type: 'separator' },
{ role: 'cut' },
{ role: 'copy' },
{ role: 'paste' },
{ role: 'selectAll' }
]
}
];
const menu = Menu.buildFromTemplate(template);
Menu.setApplicationMenu(menu);
// Updates
// Function to fetch release notes from GitHub API
async function fetchReleaseNotes(version) {
try {
const response = await fetch('https://api.github.com/repos/Mattk70/Chirpity-Electron/releases/latest');
if (response.ok) {
const data = await response.json();
if (data && data.body) {
return data.body;
}
} else {
console.error('Error fetching release notes:', response.statusText);
}
} catch (error) {
console.error('Error fetching release notes:', error);
}
return 'Release notes not available.';
}
if (! isMac){ // The auto updater doesn't work for .pkg installers
autoUpdater.on('checking-for-update', function () {
logUpdateStatus('Checking for update...');
if (process.env.PORTABLE_EXECUTABLE_DIR){
logUpdateStatus('This is a portable exe')
}
});
autoUpdater.on('update-available', async function (info) {
if (!process.env.PORTABLE_EXECUTABLE_DIR){
autoUpdater.downloadUpdate();
} else {
// Fetch release notes from GitHub API
const releaseNotes = await fetchReleaseNotes(info.version);
dialog.showMessageBox({
type: 'info',
title: 'Update Available',
message: `A new version (${info.version}) is available.\n\nRelease Notes:\n${releaseNotes}`,
buttons: ['OK'],
defaultId: 1,
noLink: true
})
}
});
autoUpdater.on('update-not-available', function (info) {
logUpdateStatus('Update not available.');
});
autoUpdater.on('error', function (err) {
logUpdateStatus('Error in auto-updater:' + err);
});
autoUpdater.on('download-progress', function (progressObj) {
mainWindow.webContents.send('download-progress', progressObj);
});
autoUpdater.on('update-downloaded', async function (info) {
// Fetch release notes from GitHub API
const releaseNotes = await fetchReleaseNotes(info.version);
log.info(JSON.stringify(info))
// Display dialog to the user with release notes
dialog.showMessageBox({
type: 'info',
title: 'Update Available',
message: `A new version (${info.version}) is available.\n\nRelease Notes:\n${releaseNotes}\n\nDo you want to install it now?`,
buttons: ['Quit and Install', 'Install after Exit'],
defaultId: 1,
noLink: true
}).then((result) => {
if (result.response === 0) {
// User clicked 'Yes', start the download
autoUpdater.quitAndInstall();
}
});
});
function logUpdateStatus(message) {
console.log(message);
}
}
process.stdin.resume();//so the program will not close instantly
async function exitHandler(options, exitCode) {
if (options.cleanup) {
// clean up settings.json litter
const conf = app.getPath('userData');
fs.readdir(conf, (err, files) => {
if (err) {
console.error('Error reading folder:', err);
return;
}
files.forEach((file) => {
if (file.startsWith('settings.json.')) {
fs.unlink(path.join(conf, file), (err) => {
if (err) {
console.error('Error deleting file:', err);
} else {
DEBUG && console.log('Deleted file:', file);
}
});
}
});
});
// Remove old logs - commented out as logs are rotated
// const logs = path.join(app.getPath('userData'), 'logs');
// fs.readdir(logs, (err, files) => {
// if (err) {
// console.error('Error reading folder:', err);
// return;
// }
// files.forEach((file) => {
// fs.unlink(path.join(logs, file), (err) => {
// if (err) {
// console.error('Error deleting file:', err);
// } else {
// DEBUG && console.log('Deleted file:', file);
// }
// });
// });
// });
// Disable debug mode here?
} else {
DEBUG && console.log('no clean')
}
if (exitCode || exitCode === 0) {
DEBUG && console.log(exitCode);
}
if (options.exit) {
process.exit();
}
}
//do something when app is closing
process.on('exit', exitHandler.bind(undefined, { cleanup: true }));
//catches ctrl+c event (but not in main process!)
process.on('SIGINT', exitHandler.bind(undefined, { exit: true }));
// catches "kill pid" (for example: nodemon restart)
process.on('SIGUSR1', exitHandler.bind(undefined, { exit: true }));
process.on('SIGUSR2', exitHandler.bind(undefined, { exit: true }));
//catches uncaught exceptions
process.on('uncaughtException', exitHandler.bind(undefined, { exit: true }));
let mainWindow;
let workerWindow;
async function windowStateKeeper(windowName) {
let window, windowState;
async function setBounds() {
// Restore from settings
if (await settings.has(`windowState.${windowName}`)) {
windowState = await settings.get(`windowState.${windowName}`);
} else {
// Default
windowState = {
x: undefined,
y: undefined,
width: 1280,
height: 768,
};
}
}
async function saveState() {
if (!windowState.isMaximized) {
windowState = window.getBounds();
}
windowState.isMaximized = window.isMaximized();
try {
await settings.set(`windowState.${windowName}`, windowState);
} catch {} // do nothing
}
function track(win) {
window = win;
['resize', 'move', 'close'].forEach(event => {
win.on(event, saveState);
});
}
await setBounds();
return ({
x: windowState.x,
y: windowState.y,
width: windowState.width,
height: windowState.height,
isMaximized: windowState.isMaximized,
track,
});
}
async function createWindow() {
// Create the browser window.
// Get window state
const mainWindowStateKeeper = await windowStateKeeper('main');
mainWindow = new BrowserWindow({
show: false,
title: "Chirpity Nocmig",
x: mainWindowStateKeeper.x,
y: mainWindowStateKeeper.y,
width: mainWindowStateKeeper.width,
height: mainWindowStateKeeper.height,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
nodeIntegration: true,
contextIsolation: true,
backgroundThrottling: false
}
});
// Track window state
mainWindowStateKeeper.track(mainWindow);
// Set icon
mainWindow.setIcon(__dirname + '/img/icon/icon.png');
// Hide nav bar except in ci mode
mainWindow.setMenuBarVisibility(!!process.env.CI);
// and load the index.html of the app.
mainWindow.loadFile('index.html');
// Open the DevTools. Comment out for release
if (DEBUG) mainWindow.webContents.openDevTools();
mainWindow.once('ready-to-show', () => {
mainWindow.show()
})
DEBUG && console.log("main window created");
// Emitted when the window is closed.
if (process.platform !== 'darwin') {
mainWindow.on('closed', () => {
app.quit()
})
}
mainWindow.on('close', (e) => {
if (unsavedRecords && !process.env.CI){
const choice = dialog.showMessageBoxSync(mainWindow, {
type: 'warning',
buttons: ['Yes', 'No'],
title: 'Unsaved Records',
message: 'There are unsaved records, are you sure you want to exit?',
});
if (choice === 1) {
e.preventDefault(); // Prevent the app from closing
}
}
});
}
async function createWorker() {
// hidden worker
// Get window state
const mainWindowStateKeeper = await windowStateKeeper('worker');
workerWindow = new BrowserWindow({
show: DEBUG,
x: mainWindowStateKeeper.x,
y: mainWindowStateKeeper.y,
width: mainWindowStateKeeper.width,
height: mainWindowStateKeeper.height,
webPreferences: {
nodeIntegration: true,
nodeIntegrationInWorker: true,
contextIsolation: false,
backgroundThrottling: false
}
});
// Track window state
mainWindowStateKeeper.track(workerWindow);
workerWindow.setIcon(__dirname + '/img/icon/icon.png');
await workerWindow.loadFile('worker.html');
workerWindow.on('closed', () => {
workerWindow = undefined;
});
if (DEBUG) workerWindow.webContents.openDevTools();
DEBUG && console.log("worker created");
}
// This method will be called when Electron has finished loading
app.whenReady().then(async () => {
// Update the userData path for portable app
if (process.env.PORTABLE_EXECUTABLE_DIR) {
app.setPath ('userData', path.join(process.env.PORTABLE_EXECUTABLE_DIR, "chirpity-data"));
ipcMain.handle('getVersion', () => app.getVersion() + ' (Portable)');
} else {
ipcMain.handle('getVersion', () => app.getVersion());
}
ipcMain.handle('getPath', () => app.getPath('userData'));
ipcMain.handle('getLocale', () => app.getLocale());
ipcMain.handle('getTemp', () => app.getPath('temp'));
ipcMain.handle('isMac', () => process.platform === 'darwin');
ipcMain.handle('getAudio', () => path.join(__dirname.replace('app.asar', ''), 'Help', 'example.mp3'));
ipcMain.handle('exitApplication', () => app.quit());
// Debug mode
try {
// Specify the file path
const filePath = path.join(app.getPath('userData'), 'config.json');
// Read the contents of the file synchronously
const fileContent = fs.readFileSync(filePath, 'utf8');
const config = JSON.parse(fileContent);
DEBUG = process.env.CI === 'e2e' ? false : config.debug;
DEBUG && console.log('CI mode' , process.env.CI)
}
catch (error) {
// Handle errors, for example, file not found
console.warn('Error reading file:', error.message);
}
await createWorker();
await createWindow();
if (process.platform === 'darwin') {
//const appIcon = new Tray('./img/icon/icon.png')
app.dock.setIcon(__dirname + '/img/icon/icon.png');
app.dock.bounce();
} else {
// Quit when all windows are closed.
app.setAppUserModelId('chirpity')
app.on('window-all-closed', () => {
app.quit()
})
}
app.on('activate', async () => {
const windowsOpen = BrowserWindow.getAllWindows().length
if (!windowsOpen) {
await createWorker();
await createWindow();
} else if (windowsOpen === 1) {
await createWindow();
}
});
app.on('open-file', (event, path) => {
files.push(path);
DEBUG && console.log('file passed to open:', path)
});
ipcMain.handle('openFiles', async (_event, _method, config) => {
const {type, fileOrFolder, multi, buttonLabel, title} = config;
let options;
if (type === 'audio') {
options = {
filters: [
{ name: 'Audio Files', extensions: ['mp3', 'wav', 'ogg', 'aac', 'flac', 'm4a', 'mpga', 'mpeg', 'mp4', 'opus', 'mov'] }
],
properties: [fileOrFolder, multi] ,
buttonLabel: buttonLabel,
title: title
}
} else {
options = {
filters: [
{ name: 'Text Files', extensions: ['txt'] }
],
properties: ['openFile']
}
}
// Show file dialog
return await dialog.showOpenDialog(mainWindow, options);
})
ipcMain.handle('selectDirectory', async (_e, path) => {
// Show file dialog to select a directory
return await dialog.showOpenDialog(mainWindow, {
// From docs:
// Note: On Windows and Linux an open dialog can not be both a file selector and a directory selector,
// so if you set properties to ['openFile', 'openDirectory'] on these platforms,
// a directory selector will be shown.
defaultPath: path,
properties: ['openDirectory']
});
})
mainWindow.webContents.setWindowOpenHandler(({ url, frameName }) => {
require('electron').shell.openExternal(url);
return {
action: 'deny',
}
});
workerWindow.webContents.once('render-process-gone', (e, details) => {
DEBUG && console.log(details);
const dialogOpts = {
type: 'warning',
title: 'Crash report',
detail: 'Oh no! Chirpity has crashed. It is most likely that it has run out of memory.\nTry lowering the batch size and / or number of threads in settings'
};
dialog.showMessageBox(dialogOpts).then((returnValue) => {
if (returnValue.response === 0) {
//app.relaunch();
app.quit();
}
})
});
//Update handling
autoUpdater.autoDownload = false;
autoUpdater.checkForUpdatesAndNotify().catch(error => console.warn('Error checking for updates', error))
// Allow multiple instances of Chirpity - experimental! This alone doesn't work:
//app.releaseSingleInstanceLock()
});
app.on('activate', async () => {
if (mainWindow === null) {
await createWindow();
}
if (workerWindow == undefined) {
await createWorker();
}
});
ipcMain.handle('request-worker-channel', async (_event) =>{
// Create a new channel ...
const { port1, port2 } = new MessageChannelMain()
// ... send one end to the worker ...
workerWindow.webContents.postMessage('new-client', undefined, [port1])
// ... and the other end to the UI window.
mainWindow.webContents.postMessage('provide-worker-channel', undefined, [port2])
// Now the main window and the worker can communicate with each other
// without going through the main process!
})
ipcMain.handle('unsaved-records', (_event, data) => {
unsavedRecords = data.newValue; // Update the variable with the new value
});
ipcMain.handle('saveFile', async (event, arg) => {
// Show file dialog to select audio file
if (arg.type === 'audacity'){
let currentFile = arg.currentFile.substr(0, arg.currentFile.lastIndexOf(".")) + ".txt";
dialog.showSaveDialog({
filters: [{ name: 'Text Files', extensions: ['txt'] }],
defaultPath: currentFile
}).then(file => {
// Stating whether dialog operation was cancelled or not.
//DEBUG && console.log(file.canceled);
if (!file.canceled) {
const AUDACITY_LABELS = arg.labels;
let str = "";
// Format results
for (let i = 0; i < AUDACITY_LABELS.length; i++) {
str += AUDACITY_LABELS[i].timestamp + "\t";
str += " " + AUDACITY_LABELS[i].cname;
// str += " " + AUDACITY_LABELS[i].sname ;
str += " " + (parseFloat(AUDACITY_LABELS[i].score) * 100).toFixed(0) + "%\r\n";
}
fs.writeFile(file.filePath.toString(),
str, function (err) {
if (err) throw err;
DEBUG && console.log('Saved!');
});
}
}).catch(error => {
console.warn(error)
});
} else {
const {file, filename, extension} = arg;
dialog.showSaveDialog({
title: 'Save File',
filters: [{ name: 'Audio files', extensions: [extension] }],
defaultPath: filename
}).then( saveObj => {
// Check if the user cancelled the operation
const {canceled, filePath} = saveObj;
if (canceled) {
DEBUG && console.log('User cancelled the save operation.');
fs.rmSync(file);
return;
}
try {
// Copy file to the destination
fs.copyFileSync(file, filePath);
// Remove the original file
fs.unlinkSync(file);
DEBUG && console.log(`File moved from ${file} to ${filePath}`);
} catch (error) {
console.error(`Error moving file: ${error}`);
}
})
}
});
let powerSaveID = powerSaveBlocker.start('prevent-app-suspension');
powerSaveBlocker.stop(powerSaveID);
ipcMain.handle('powerSaveControl', (e, on) => {
if (on){
powerSaveID = powerSaveBlocker.start('prevent-app-suspension')
//DEBUG && console.log(powerSaveBlocker.isStarted(powerSaveID), powerSaveID)
} else {
powerSaveBlocker.stop(powerSaveID)
//DEBUG && console.log(powerSaveBlocker.isStarted(powerSaveID), powerSaveID)
}
})