electron/lib/browser/api/app.ts

114 lines
3.3 KiB
TypeScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
import * as fs from 'fs';
import { Menu } from 'electron/main';
const bindings = process._linkedBinding('electron_browser_app');
const commandLine = process._linkedBinding('electron_common_command_line');
2020-07-28 23:43:43 +00:00
const { app } = bindings;
// Only one app object permitted.
2020-03-20 20:28:31 +00:00
export default app;
2020-03-20 20:28:31 +00:00
let dockMenu: Electron.Menu | null = null;
// Properties.
2020-03-20 20:28:31 +00:00
const nativeASGetter = app.isAccessibilitySupportEnabled;
const nativeASSetter = app.setAccessibilitySupportEnabled;
2020-07-28 23:43:43 +00:00
Object.defineProperty(app, 'accessibilitySupportEnabled', {
get: () => nativeASGetter.call(app),
set: (enabled) => nativeASSetter.call(app, enabled)
2020-03-20 20:28:31 +00:00
});
2020-03-20 20:28:31 +00:00
const nativeBCGetter = app.getBadgeCount;
const nativeBCSetter = app.setBadgeCount;
2020-07-28 23:43:43 +00:00
Object.defineProperty(app, 'badgeCount', {
get: () => nativeBCGetter.call(app),
set: (count) => nativeBCSetter.call(app, count)
2020-03-20 20:28:31 +00:00
});
2020-03-20 20:28:31 +00:00
const nativeNGetter = app.getName;
const nativeNSetter = app.setName;
2020-07-28 23:43:43 +00:00
Object.defineProperty(app, 'name', {
get: () => nativeNGetter.call(app),
set: (name) => nativeNSetter.call(app, name)
2020-03-20 20:28:31 +00:00
});
Object.assign(app, {
commandLine: {
hasSwitch: (theSwitch: string) => commandLine.hasSwitch(String(theSwitch)),
getSwitchValue: (theSwitch: string) => commandLine.getSwitchValue(String(theSwitch)),
appendSwitch: (theSwitch: string, value?: string) => commandLine.appendSwitch(String(theSwitch), typeof value === 'undefined' ? value : String(value)),
appendArgument: (arg: string) => commandLine.appendArgument(String(arg)),
removeSwitch: (theSwitch: string) => commandLine.removeSwitch(String(theSwitch))
} as Electron.CommandLine
2020-03-20 20:28:31 +00:00
});
// we define this here because it'd be overly complicated to
// do in native land
Object.defineProperty(app, 'applicationMenu', {
get () {
2020-03-20 20:28:31 +00:00
return Menu.getApplicationMenu();
},
set (menu: Electron.Menu | null) {
2020-03-20 20:28:31 +00:00
return Menu.setApplicationMenu(menu);
}
2020-03-20 20:28:31 +00:00
});
// The native implementation is not provided on non-windows platforms
app.setAppUserModelId = app.setAppUserModelId || (() => {});
if (process.platform === 'darwin') {
2020-03-20 20:28:31 +00:00
const setDockMenu = app.dock!.setMenu;
app.dock!.setMenu = (menu) => {
2020-03-20 20:28:31 +00:00
dockMenu = menu;
setDockMenu(menu);
};
app.dock!.getMenu = () => dockMenu;
}
if (process.platform === 'linux') {
2020-03-20 20:28:31 +00:00
const patternVmRSS = /^VmRSS:\s*(\d+) kB$/m;
const patternVmHWM = /^VmHWM:\s*(\d+) kB$/m;
const getStatus = (pid: number) => {
try {
2020-03-20 20:28:31 +00:00
return fs.readFileSync(`/proc/${pid}/status`, 'utf8');
} catch {
2020-03-20 20:28:31 +00:00
return '';
}
2020-03-20 20:28:31 +00:00
};
const getEntry = (file: string, pattern: RegExp) => {
2020-03-20 20:28:31 +00:00
const match = file.match(pattern);
return match ? parseInt(match[1], 10) : 0;
};
const getProcessMemoryInfo = (pid: number) => {
2020-03-20 20:28:31 +00:00
const file = getStatus(pid);
return {
workingSetSize: getEntry(file, patternVmRSS),
peakWorkingSetSize: getEntry(file, patternVmHWM)
2020-03-20 20:28:31 +00:00
};
};
2020-03-20 20:28:31 +00:00
const nativeFn = app.getAppMetrics;
app.getAppMetrics = () => {
2020-03-20 20:28:31 +00:00
const metrics = nativeFn.call(app);
for (const metric of metrics) {
2020-03-20 20:28:31 +00:00
metric.memory = getProcessMemoryInfo(metric.pid);
}
2020-03-20 20:28:31 +00:00
return metrics;
};
}
// Routes the events to webContents.
2020-03-20 20:28:31 +00:00
const events = ['certificate-error', 'select-client-certificate'];
for (const name of events) {
app.on(name as 'certificate-error', (event, webContents, ...args: any[]) => {
2020-03-20 20:28:31 +00:00
webContents.emit(name, event, ...args);
});
}