|
|
import { app, api, ComfyButtonGroup } from './comfy/index.js';
|
|
|
import { commonPrefix } from './common.js';
|
|
|
import { MonitorUI } from './monitorUI.js';
|
|
|
import { Colors } from './styles.js';
|
|
|
import { convertNumberToPascalCase } from './utils.js';
|
|
|
import { ComfyKeyMenuDisplayOption, MenuDisplayOptions } from './progressBarUIBase.js';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CrystoolsMonitor {
|
|
|
readonly idExtensionName = 'Crystools.monitor';
|
|
|
private readonly menuPrefix = commonPrefix;
|
|
|
private menuDisplayOption: MenuDisplayOptions = MenuDisplayOptions.Disabled;
|
|
|
private crystoolsButtonGroup: ComfyButtonGroup = null;
|
|
|
|
|
|
|
|
|
private settingsRate: TMonitorSettings;
|
|
|
private settingsMonitorHeight: TMonitorSettings;
|
|
|
private settingsMonitorWidth: TMonitorSettings;
|
|
|
private monitorCPUElement: TMonitorSettings;
|
|
|
private monitorRAMElement: TMonitorSettings;
|
|
|
private monitorHDDElement: TMonitorSettings;
|
|
|
private settingsHDD: TMonitorSettings;
|
|
|
private monitorGPUSettings: TMonitorSettings[] = [];
|
|
|
private monitorVRAMSettings: TMonitorSettings[] = [];
|
|
|
private monitorTemperatureSettings: TMonitorSettings[] = [];
|
|
|
|
|
|
private monitorUI: MonitorUI;
|
|
|
|
|
|
|
|
|
private readonly monitorWidthId = 'Crystools.MonitorWidth';
|
|
|
private readonly monitorWidth = 60;
|
|
|
private readonly monitorHeightId = 'Crystools.MonitorHeight';
|
|
|
private readonly monitorHeight = 30;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
createSettingsRate = (): void => {
|
|
|
this.settingsRate = {
|
|
|
id: 'Crystools.RefreshRate',
|
|
|
name: 'Refresh per second',
|
|
|
category: ['Crystools', this.menuPrefix + ' Configuration', 'refresh'],
|
|
|
tooltip: 'This is the time (in seconds) between each update of the monitors, 0 means no refresh',
|
|
|
type: 'slider',
|
|
|
attrs: {
|
|
|
min: 0,
|
|
|
max: 2,
|
|
|
step: .25,
|
|
|
},
|
|
|
defaultValue: .5,
|
|
|
|
|
|
|
|
|
onChange: async(value: string): Promise<void> => {
|
|
|
let valueNumber: number;
|
|
|
|
|
|
try {
|
|
|
valueNumber = parseFloat(value);
|
|
|
if (isNaN(valueNumber)) {
|
|
|
throw new Error('invalid value');
|
|
|
}
|
|
|
} catch (error) {
|
|
|
console.error(error);
|
|
|
return;
|
|
|
}
|
|
|
try {
|
|
|
await this.updateServer({rate: valueNumber});
|
|
|
} catch (error) {
|
|
|
console.error(error);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
const data = {
|
|
|
cpu_utilization: 0,
|
|
|
device: 'cpu',
|
|
|
|
|
|
gpus: [
|
|
|
{
|
|
|
gpu_utilization: 0,
|
|
|
gpu_temperature: 0,
|
|
|
vram_total: 0,
|
|
|
vram_used: 0,
|
|
|
vram_used_percent: 0,
|
|
|
},
|
|
|
],
|
|
|
hdd_total: 0,
|
|
|
hdd_used: 0,
|
|
|
hdd_used_percent: 0,
|
|
|
ram_total: 0,
|
|
|
ram_used: 0,
|
|
|
ram_used_percent: 0,
|
|
|
};
|
|
|
if (valueNumber === 0) {
|
|
|
this.monitorUI.updateDisplay(data);
|
|
|
}
|
|
|
|
|
|
this.monitorUI?.updateAllAnimationDuration(valueNumber);
|
|
|
},
|
|
|
};
|
|
|
};
|
|
|
|
|
|
createSettingsMonitorWidth = (): void => {
|
|
|
this.settingsMonitorWidth = {
|
|
|
id: this.monitorWidthId,
|
|
|
name: 'Pixel Width',
|
|
|
category: ['Crystools', this.menuPrefix + ' Configuration', 'width'],
|
|
|
tooltip: 'The width of the monitor in pixels on the UI (only on top/bottom UI)',
|
|
|
type: 'slider',
|
|
|
attrs: {
|
|
|
min: 60,
|
|
|
max: 100,
|
|
|
step: 1,
|
|
|
},
|
|
|
defaultValue: this.monitorWidth,
|
|
|
|
|
|
onChange: (value: string): void => {
|
|
|
let valueNumber: number;
|
|
|
|
|
|
try {
|
|
|
valueNumber = parseInt(value);
|
|
|
if (isNaN(valueNumber)) {
|
|
|
throw new Error('invalid value');
|
|
|
}
|
|
|
} catch (error) {
|
|
|
console.error(error);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
const h = app.extensionManager.setting.get(this.monitorHeightId);
|
|
|
this.monitorUI?.updateMonitorSize(valueNumber, h);
|
|
|
},
|
|
|
};
|
|
|
};
|
|
|
|
|
|
createSettingsMonitorHeight = (): void => {
|
|
|
this.settingsMonitorHeight = {
|
|
|
id: this.monitorHeightId,
|
|
|
name: 'Pixel Height',
|
|
|
category: ['Crystools', this.menuPrefix + ' Configuration', 'height'],
|
|
|
tooltip: 'The height of the monitor in pixels on the UI (only on top/bottom UI)',
|
|
|
type: 'slider',
|
|
|
attrs: {
|
|
|
min: 16,
|
|
|
max: 50,
|
|
|
step: 1,
|
|
|
},
|
|
|
defaultValue: this.monitorHeight,
|
|
|
|
|
|
onChange: async(value: string): void => {
|
|
|
let valueNumber: number;
|
|
|
|
|
|
try {
|
|
|
valueNumber = parseInt(value);
|
|
|
if (isNaN(valueNumber)) {
|
|
|
throw new Error('invalid value');
|
|
|
}
|
|
|
} catch (error) {
|
|
|
console.error(error);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
const w = await app.extensionManager.setting.get(this.monitorWidthId);
|
|
|
this.monitorUI?.updateMonitorSize(w, valueNumber);
|
|
|
},
|
|
|
};
|
|
|
};
|
|
|
|
|
|
createSettingsCPU = (): void => {
|
|
|
|
|
|
this.monitorCPUElement = {
|
|
|
id: 'Crystools.ShowCpu',
|
|
|
name: 'CPU Usage',
|
|
|
category: ['Crystools', this.menuPrefix + ' Hardware', 'Cpu'],
|
|
|
type: 'boolean',
|
|
|
label: 'CPU',
|
|
|
symbol: '%',
|
|
|
defaultValue: true,
|
|
|
htmlMonitorRef: undefined,
|
|
|
htmlMonitorSliderRef: undefined,
|
|
|
htmlMonitorLabelRef: undefined,
|
|
|
cssColor: Colors.CPU,
|
|
|
|
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
|
await this.updateServer({switchCPU: value});
|
|
|
this.updateWidget(this.monitorCPUElement);
|
|
|
},
|
|
|
};
|
|
|
};
|
|
|
|
|
|
createSettingsRAM = (): void => {
|
|
|
|
|
|
this.monitorRAMElement = {
|
|
|
id: 'Crystools.ShowRam',
|
|
|
name: 'RAM Used',
|
|
|
category: ['Crystools', this.menuPrefix + ' Hardware', 'Ram'],
|
|
|
type: 'boolean',
|
|
|
label: 'RAM',
|
|
|
symbol: '%',
|
|
|
defaultValue: true,
|
|
|
htmlMonitorRef: undefined,
|
|
|
htmlMonitorSliderRef: undefined,
|
|
|
htmlMonitorLabelRef: undefined,
|
|
|
cssColor: Colors.RAM,
|
|
|
|
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
|
await this.updateServer({switchRAM: value});
|
|
|
this.updateWidget(this.monitorRAMElement);
|
|
|
},
|
|
|
};
|
|
|
};
|
|
|
|
|
|
createSettingsGPUUsage = (name: string, index: number, moreThanOneGPU: boolean): void => {
|
|
|
if (name === undefined || index === undefined) {
|
|
|
console.warn('getGPUsFromServer: name or index undefined', name, index);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
let label = 'GPU ';
|
|
|
label += moreThanOneGPU ? index : '';
|
|
|
|
|
|
const monitorGPUNElement: TMonitorSettings = {
|
|
|
id: 'Crystools.ShowGpuUsage' + convertNumberToPascalCase(index),
|
|
|
name: ' Usage',
|
|
|
category: ['Crystools', `${this.menuPrefix} Show GPU [${index}] ${name}`, 'Usage'],
|
|
|
type: 'boolean',
|
|
|
label,
|
|
|
symbol: '%',
|
|
|
monitorTitle: `${index}: ${name}`,
|
|
|
defaultValue: true,
|
|
|
htmlMonitorRef: undefined,
|
|
|
htmlMonitorSliderRef: undefined,
|
|
|
htmlMonitorLabelRef: undefined,
|
|
|
cssColor: Colors.GPU,
|
|
|
|
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
|
await this.updateServerGPU(index, {utilization: value});
|
|
|
this.updateWidget(monitorGPUNElement);
|
|
|
},
|
|
|
};
|
|
|
|
|
|
this.monitorGPUSettings[index] = monitorGPUNElement;
|
|
|
app.ui.settings.addSetting(this.monitorGPUSettings[index]);
|
|
|
this.monitorUI.createDOMGPUMonitor(this.monitorGPUSettings[index]);
|
|
|
};
|
|
|
|
|
|
createSettingsGPUVRAM = (name: string, index: number, moreThanOneGPU: boolean): void => {
|
|
|
if (name === undefined || index === undefined) {
|
|
|
console.warn('getGPUsFromServer: name or index undefined', name, index);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
let label = 'VRAM ';
|
|
|
label += moreThanOneGPU ? index : '';
|
|
|
|
|
|
|
|
|
const monitorVRAMNElement: TMonitorSettings = {
|
|
|
id: 'Crystools.ShowGpuVram' + convertNumberToPascalCase(index),
|
|
|
name: 'VRAM',
|
|
|
category: ['Crystools', `${this.menuPrefix} Show GPU [${index}] ${name}`, 'VRAM'],
|
|
|
type: 'boolean',
|
|
|
label: label,
|
|
|
symbol: '%',
|
|
|
monitorTitle: `${index}: ${name}`,
|
|
|
defaultValue: true,
|
|
|
htmlMonitorRef: undefined,
|
|
|
htmlMonitorSliderRef: undefined,
|
|
|
htmlMonitorLabelRef: undefined,
|
|
|
cssColor: Colors.VRAM,
|
|
|
|
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
|
await this.updateServerGPU(index, {vram: value});
|
|
|
this.updateWidget(monitorVRAMNElement);
|
|
|
},
|
|
|
};
|
|
|
|
|
|
this.monitorVRAMSettings[index] = monitorVRAMNElement;
|
|
|
app.ui.settings.addSetting(this.monitorVRAMSettings[index]);
|
|
|
this.monitorUI.createDOMGPUMonitor(this.monitorVRAMSettings[index]);
|
|
|
};
|
|
|
|
|
|
createSettingsGPUTemp = (name: string, index: number, moreThanOneGPU: boolean): void => {
|
|
|
if (name === undefined || index === undefined) {
|
|
|
console.warn('getGPUsFromServer: name or index undefined', name, index);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
let label = 'Temp ';
|
|
|
label += moreThanOneGPU ? index : '';
|
|
|
|
|
|
|
|
|
const monitorTemperatureNElement: TMonitorSettings = {
|
|
|
id: 'Crystools.ShowGpuTemperature' + convertNumberToPascalCase(index),
|
|
|
name: 'Temperature',
|
|
|
category: ['Crystools', `${this.menuPrefix} Show GPU [${index}] ${name}`, 'Temperature'],
|
|
|
type: 'boolean',
|
|
|
label: label,
|
|
|
symbol: '°',
|
|
|
monitorTitle: `${index}: ${name}`,
|
|
|
defaultValue: true,
|
|
|
htmlMonitorRef: undefined,
|
|
|
htmlMonitorSliderRef: undefined,
|
|
|
htmlMonitorLabelRef: undefined,
|
|
|
cssColor: Colors.TEMP_START,
|
|
|
cssColorFinal: Colors.TEMP_END,
|
|
|
|
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
|
await this.updateServerGPU(index, {temperature: value});
|
|
|
this.updateWidget(monitorTemperatureNElement);
|
|
|
},
|
|
|
};
|
|
|
|
|
|
this.monitorTemperatureSettings[index] = monitorTemperatureNElement;
|
|
|
app.ui.settings.addSetting(this.monitorTemperatureSettings[index]);
|
|
|
this.monitorUI.createDOMGPUMonitor(this.monitorTemperatureSettings[index]);
|
|
|
};
|
|
|
|
|
|
createSettingsHDD = (): void => {
|
|
|
|
|
|
this.monitorHDDElement = {
|
|
|
id: 'Crystools.ShowHdd',
|
|
|
name: 'Show HDD Used',
|
|
|
category: ['Crystools', this.menuPrefix + ' Show Hard Disk', 'Show'],
|
|
|
type: 'boolean',
|
|
|
label: 'HDD',
|
|
|
symbol: '%',
|
|
|
|
|
|
defaultValue: false,
|
|
|
htmlMonitorRef: undefined,
|
|
|
htmlMonitorSliderRef: undefined,
|
|
|
htmlMonitorLabelRef: undefined,
|
|
|
cssColor: Colors.DISK,
|
|
|
|
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
|
await this.updateServer({switchHDD: value});
|
|
|
this.updateWidget(this.monitorHDDElement);
|
|
|
},
|
|
|
};
|
|
|
|
|
|
this.settingsHDD = {
|
|
|
id: 'Crystools.WhichHdd',
|
|
|
name: 'Partition to show',
|
|
|
category: ['Crystools', this.menuPrefix + ' Show Hard Disk', 'Which'],
|
|
|
type: 'combo',
|
|
|
defaultValue: '/',
|
|
|
options: [],
|
|
|
|
|
|
onChange: async(value: string): Promise<void> => {
|
|
|
await this.updateServer({whichHDD: value});
|
|
|
},
|
|
|
};
|
|
|
};
|
|
|
|
|
|
createSettings = (): void => {
|
|
|
app.ui.settings.addSetting(this.settingsRate);
|
|
|
app.ui.settings.addSetting(this.settingsMonitorHeight);
|
|
|
app.ui.settings.addSetting(this.settingsMonitorWidth);
|
|
|
|
|
|
app.ui.settings.addSetting(this.monitorRAMElement);
|
|
|
app.ui.settings.addSetting(this.monitorCPUElement);
|
|
|
|
|
|
void this.getHDDsFromServer().then((data: string[]): void => {
|
|
|
|
|
|
this.settingsHDD.options = data;
|
|
|
app.ui.settings.addSetting(this.settingsHDD);
|
|
|
});
|
|
|
app.ui.settings.addSetting(this.monitorHDDElement);
|
|
|
|
|
|
void this.getGPUsFromServer().then((gpus: TGpuName[]): void => {
|
|
|
let moreThanOneGPU = false;
|
|
|
if (gpus.length > 1) {
|
|
|
moreThanOneGPU = true;
|
|
|
}
|
|
|
|
|
|
gpus?.forEach(({name, index}) => {
|
|
|
this.createSettingsGPUTemp(name, index, moreThanOneGPU);
|
|
|
this.createSettingsGPUVRAM(name, index, moreThanOneGPU);
|
|
|
this.createSettingsGPUUsage(name, index, moreThanOneGPU);
|
|
|
});
|
|
|
|
|
|
this.finishedLoad();
|
|
|
});
|
|
|
};
|
|
|
|
|
|
finishedLoad = (): void => {
|
|
|
this.monitorUI.orderMonitors();
|
|
|
this.updateAllWidget();
|
|
|
this.moveMonitor(this.menuDisplayOption);
|
|
|
|
|
|
const w = app.extensionManager.setting.get(this.monitorWidthId);
|
|
|
const h = app.extensionManager.setting.get(this.monitorHeightId);
|
|
|
this.monitorUI.updateMonitorSize(w, h);
|
|
|
};
|
|
|
|
|
|
updateDisplay = (value: MenuDisplayOptions): void => {
|
|
|
if (value !== this.menuDisplayOption) {
|
|
|
this.menuDisplayOption = value;
|
|
|
this.moveMonitor(this.menuDisplayOption);
|
|
|
}
|
|
|
};
|
|
|
|
|
|
moveMonitor = (menuPosition: MenuDisplayOptions): void => {
|
|
|
|
|
|
|
|
|
let parentElement: Element | null | undefined;
|
|
|
|
|
|
switch (menuPosition) {
|
|
|
case MenuDisplayOptions.Disabled:
|
|
|
parentElement = document.getElementById('queue-button');
|
|
|
if (parentElement && this.monitorUI.rootElement) {
|
|
|
parentElement.insertAdjacentElement('afterend', this.crystoolsButtonGroup.element);
|
|
|
} else {
|
|
|
console.error('Crystools: parentElement to move monitors not found!', parentElement);
|
|
|
}
|
|
|
break;
|
|
|
|
|
|
case MenuDisplayOptions.Top:
|
|
|
case MenuDisplayOptions.Bottom:
|
|
|
|
|
|
|
|
|
app.menu?.settingsGroup.element.before(this.crystoolsButtonGroup.element);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
updateAllWidget = (): void => {
|
|
|
this.updateWidget(this.monitorCPUElement);
|
|
|
this.updateWidget(this.monitorRAMElement);
|
|
|
this.updateWidget(this.monitorHDDElement);
|
|
|
|
|
|
this.monitorGPUSettings.forEach((monitorSettings) => {
|
|
|
monitorSettings && this.updateWidget(monitorSettings);
|
|
|
});
|
|
|
this.monitorVRAMSettings.forEach((monitorSettings) => {
|
|
|
monitorSettings && this.updateWidget(monitorSettings);
|
|
|
});
|
|
|
this.monitorTemperatureSettings.forEach((monitorSettings) => {
|
|
|
monitorSettings && this.updateWidget(monitorSettings);
|
|
|
});
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateWidget = (monitorSettings: TMonitorSettings): void => {
|
|
|
if (this.monitorUI) {
|
|
|
const value = app.extensionManager.setting.get(monitorSettings.id);
|
|
|
this.monitorUI.showMonitor(monitorSettings, value);
|
|
|
}
|
|
|
};
|
|
|
|
|
|
updateServer = async(data: TStatsSettings): Promise<string> => {
|
|
|
const resp = await api.fetchApi('/crystools/monitor', {
|
|
|
method: 'PATCH',
|
|
|
body: JSON.stringify(data),
|
|
|
cache: 'no-store',
|
|
|
});
|
|
|
if (resp.status === 200) {
|
|
|
return await resp.text();
|
|
|
}
|
|
|
throw new Error(resp.statusText);
|
|
|
};
|
|
|
|
|
|
updateServerGPU = async(index: number, data: TGpuSettings): Promise<string> => {
|
|
|
const resp = await api.fetchApi(`/crystools/monitor/GPU/${index}`, {
|
|
|
method: 'PATCH',
|
|
|
body: JSON.stringify(data),
|
|
|
cache: 'no-store',
|
|
|
});
|
|
|
if (resp.status === 200) {
|
|
|
return await resp.text();
|
|
|
}
|
|
|
throw new Error(resp.statusText);
|
|
|
};
|
|
|
|
|
|
getHDDsFromServer = async(): Promise<string[]> => {
|
|
|
return this.getDataFromServer('HDD');
|
|
|
};
|
|
|
|
|
|
getGPUsFromServer = async(): Promise<TGpuName[]> => {
|
|
|
return this.getDataFromServer<TGpuName>('GPU');
|
|
|
};
|
|
|
|
|
|
getDataFromServer = async <T>(what: string): Promise<T[]> => {
|
|
|
const resp = await api.fetchApi(`/crystools/monitor/${what}`, {
|
|
|
method: 'GET',
|
|
|
cache: 'no-store',
|
|
|
});
|
|
|
if (resp.status === 200) {
|
|
|
return await resp.json();
|
|
|
}
|
|
|
throw new Error(resp.statusText);
|
|
|
};
|
|
|
|
|
|
setup = (): void => {
|
|
|
if (this.monitorUI) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
this.createSettingsRate();
|
|
|
this.createSettingsMonitorHeight();
|
|
|
this.createSettingsMonitorWidth();
|
|
|
this.createSettingsCPU();
|
|
|
this.createSettingsRAM();
|
|
|
this.createSettingsHDD();
|
|
|
this.createSettings();
|
|
|
|
|
|
const currentRate =
|
|
|
parseFloat(app.extensionManager.setting.get(this.settingsRate.id));
|
|
|
|
|
|
this.menuDisplayOption = app.extensionManager.setting.get(ComfyKeyMenuDisplayOption);
|
|
|
app.ui.settings.addEventListener(`${ComfyKeyMenuDisplayOption}.change`, (e: any) => {
|
|
|
this.updateDisplay(e.detail.value);
|
|
|
},
|
|
|
);
|
|
|
|
|
|
this.crystoolsButtonGroup = new ComfyButtonGroup();
|
|
|
app.menu?.settingsGroup.element.before(this.crystoolsButtonGroup.element);
|
|
|
|
|
|
this.monitorUI = new MonitorUI(
|
|
|
this.crystoolsButtonGroup.element,
|
|
|
this.monitorCPUElement,
|
|
|
this.monitorRAMElement,
|
|
|
this.monitorHDDElement,
|
|
|
this.monitorGPUSettings,
|
|
|
this.monitorVRAMSettings,
|
|
|
this.monitorTemperatureSettings,
|
|
|
currentRate,
|
|
|
);
|
|
|
|
|
|
this.updateDisplay(this.menuDisplayOption);
|
|
|
this.registerListeners();
|
|
|
};
|
|
|
|
|
|
registerListeners = (): void => {
|
|
|
api.addEventListener('crystools.monitor', (event: CustomEvent) => {
|
|
|
if (event?.detail === undefined) {
|
|
|
return;
|
|
|
}
|
|
|
this.monitorUI.updateDisplay(event.detail);
|
|
|
}, false);
|
|
|
};
|
|
|
}
|
|
|
|
|
|
const crystoolsMonitor = new CrystoolsMonitor();
|
|
|
app.registerExtension({
|
|
|
name: crystoolsMonitor.idExtensionName,
|
|
|
setup: crystoolsMonitor.setup,
|
|
|
});
|
|
|
|