mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
7c724a642f
* chore(eslint): add eslint toolchain and configs * fix(eslint): resolve gradual-config errors (rules-of-hooks, no-empty, prefer-const, …) * chore(eslint): clear unused vars in config, contexts, app and test * chore(eslint): clear unused vars in api and music-network * chore(eslint): clear unused vars in utils * chore(eslint): clear unused vars in store * chore(eslint): clear unused vars in cover and hooks * chore(eslint): clear unused vars in components * chore(eslint): clear unused vars in pages * chore(eslint): remove explicit any in src * chore(eslint): align react-hooks exhaustive-deps * chore(eslint): zero gradual config on src * chore(eslint): strict hook rules in store and utils * chore(eslint): strict hook rules in hooks and cover * chore(eslint): strict hook rules in components * chore(eslint): strict hook rules in pages and contexts * chore(eslint): document scripts ignore in eslint config * chore(eslint): add lint script and zero strict findings * chore(eslint): address review round 1 (gradual 0/0, per-site disable reasons) * chore(eslint): tighten two set-state disable comments (review round 2 LOW) * chore(nix): sync npmDepsHash with package-lock.json * docs(changelog): add Under the Hood entry for ESLint setup (PR #1165) --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
256 lines
9.9 KiB
TypeScript
256 lines
9.9 KiB
TypeScript
import { useMemo, useRef } from 'react';
|
|
import { isPerfLivePollWaitingForCpu, usePerfLiveSnapshot } from '../../../utils/perf/perfLiveStore';
|
|
import { usePerfLiveIncludeThreadGroups } from '../../../utils/perf/perfLivePollSettings';
|
|
import {
|
|
togglePerfLiveOverlayPin,
|
|
togglePipelineOverlayPin,
|
|
usePerfLiveOverlayPins,
|
|
usePipelineOverlayPinned,
|
|
type PerfLiveOverlayPinId,
|
|
} from '../../../utils/perf/perfOverlayPins';
|
|
import PerfProbeMetricCard, { PerfProbeMetricSection } from './PerfProbeMetricCard';
|
|
import PerfOverlayAppearanceControls from './PerfOverlayAppearanceControls';
|
|
import PerfOverlayModeControls from './PerfOverlayModeControls';
|
|
import PerfLivePollControls from './PerfLivePollControls';
|
|
|
|
function memoryBarPct(rssKb: number, maxKb: number): number {
|
|
if (maxKb <= 0) return 0;
|
|
return (rssKb / maxKb) * 100;
|
|
}
|
|
|
|
export default function SidebarPerfProbeMonitorTab() {
|
|
const live = usePerfLiveSnapshot();
|
|
const livePins = usePerfLiveOverlayPins();
|
|
const fpsPinned = usePipelineOverlayPinned('pipeline:fps');
|
|
const analysisPinned = usePipelineOverlayPinned('pipeline:analysis');
|
|
const coverPinned = usePipelineOverlayPinned('pipeline:cover');
|
|
const cpu = live.cpu;
|
|
const cpuSupported = cpu?.supported === true;
|
|
const collecting = isPerfLivePollWaitingForCpu();
|
|
const includeThreadGroups = usePerfLiveIncludeThreadGroups();
|
|
const peakMemoryKbRef = useRef(1);
|
|
const peakThreadCpuRef = useRef(1);
|
|
|
|
const maxMemoryKb = useMemo(() => {
|
|
const current = Math.max(1, ...(cpu?.memory.map(m => m.rss_kb) ?? [1]));
|
|
// React Compiler refs rule: ref read imperatively outside reactive rendering; not used to compute the render output.
|
|
// eslint-disable-next-line react-hooks/refs
|
|
if (current > peakMemoryKbRef.current) peakMemoryKbRef.current = current;
|
|
return peakMemoryKbRef.current;
|
|
}, [cpu?.memory]);
|
|
|
|
// React Compiler refs rule: ref read imperatively outside reactive rendering; not used to compute the render output.
|
|
// eslint-disable-next-line react-hooks/refs
|
|
const maxThreadCpu = useMemo(() => {
|
|
const current = Math.max(1, ...(cpu?.threadCpu.map(t => t.pct) ?? [1]));
|
|
if (current > peakThreadCpuRef.current) peakThreadCpuRef.current = current;
|
|
return peakThreadCpuRef.current;
|
|
}, [cpu?.threadCpu]);
|
|
|
|
if (collecting) {
|
|
return (
|
|
<div className="perf-monitor-empty">
|
|
<div className="spinner" style={{ width: 22, height: 22 }} />
|
|
<span>Collecting live samples…</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const toggleLive = (id: PerfLiveOverlayPinId) => () => togglePerfLiveOverlayPin(id);
|
|
const livePinned = (id: PerfLiveOverlayPinId) => livePins.has(id);
|
|
|
|
return (
|
|
<div className="perf-monitor">
|
|
<PerfOverlayModeControls />
|
|
<PerfOverlayAppearanceControls />
|
|
<PerfLivePollControls />
|
|
<PerfProbeMetricSection title="Pipeline overlays" hint="Rust / UI queues">
|
|
<PerfProbeMetricCard
|
|
label="FPS"
|
|
value="—"
|
|
detail="requestAnimationFrame rate"
|
|
pinned={fpsPinned}
|
|
pinKind="pipeline"
|
|
onTogglePin={() => togglePipelineOverlayPin('pipeline:fps')}
|
|
/>
|
|
<PerfProbeMetricCard
|
|
label="Analysis"
|
|
value="—"
|
|
detail="Throughput + last track timings"
|
|
pinned={analysisPinned}
|
|
pinKind="pipeline"
|
|
onTogglePin={() => togglePipelineOverlayPin('pipeline:analysis')}
|
|
/>
|
|
<PerfProbeMetricCard
|
|
label="Cover pipeline"
|
|
value="—"
|
|
detail="Ensure / HTTP / encode queues"
|
|
pinned={coverPinned}
|
|
pinKind="pipeline"
|
|
onTogglePin={() => togglePipelineOverlayPin('pipeline:cover')}
|
|
/>
|
|
</PerfProbeMetricSection>
|
|
|
|
{cpu && !cpuSupported && (
|
|
<div className="perf-monitor-empty perf-monitor-empty--inline">
|
|
Live CPU and RSS sampling is unavailable on this platform. Pipeline, UI rate, and analysis metrics below still work.
|
|
</div>
|
|
)}
|
|
|
|
{cpuSupported && cpu && (
|
|
<>
|
|
<PerfProbeMetricSection title="CPU — processes">
|
|
<PerfProbeMetricCard
|
|
label="psysonic"
|
|
value={cpu.app.toFixed(1)}
|
|
unit="%"
|
|
barPct={cpu.app}
|
|
barTone="cpu"
|
|
pinned={livePinned('cpu:app')}
|
|
onTogglePin={toggleLive('cpu:app')}
|
|
/>
|
|
<PerfProbeMetricCard
|
|
label="WebKit web"
|
|
value={cpu.webkit.toFixed(1)}
|
|
unit="%"
|
|
barPct={cpu.webkit}
|
|
barTone="cpu"
|
|
pinned={livePinned('cpu:webkit')}
|
|
onTogglePin={toggleLive('cpu:webkit')}
|
|
/>
|
|
</PerfProbeMetricSection>
|
|
|
|
{includeThreadGroups && (
|
|
<PerfProbeMetricSection
|
|
title="CPU — psysonic threads"
|
|
defaultOpen
|
|
>
|
|
{/* React Compiler refs rule: the row renderer reads pin-state refs (live overlay); intentional, not reactive render data. */}
|
|
{/* eslint-disable-next-line react-hooks/refs */}
|
|
{cpu.threadCpu.length > 0 ? cpu.threadCpu.map(row => {
|
|
const pinId = `cpu:thread:${row.label}` as PerfLiveOverlayPinId;
|
|
return (
|
|
<PerfProbeMetricCard
|
|
key={row.label}
|
|
label={row.label}
|
|
value={row.pct.toFixed(1)}
|
|
unit="%"
|
|
detail={row.threadCount > 1 ? `${row.threadCount} threads` : undefined}
|
|
barPct={(row.pct / maxThreadCpu) * 100}
|
|
barTone="cpu"
|
|
pinned={livePinned(pinId)}
|
|
onTogglePin={toggleLive(pinId)}
|
|
/>
|
|
);
|
|
}) : (
|
|
<div className="perf-monitor-empty perf-monitor-empty--inline">
|
|
No named psysonic threads yet — wait for the next poll or load audio/analysis work.
|
|
</div>
|
|
)}
|
|
</PerfProbeMetricSection>
|
|
)}
|
|
|
|
{cpu.memory.length > 0 && (
|
|
<PerfProbeMetricSection title="Memory — RSS">
|
|
{/* React Compiler refs rule: the row renderer reads pin-state refs (live overlay); intentional, not reactive render data. */}
|
|
{/* eslint-disable-next-line react-hooks/refs */}
|
|
{cpu.memory.map(row => {
|
|
const pinId = `mem:${row.label}` as PerfLiveOverlayPinId;
|
|
return (
|
|
<PerfProbeMetricCard
|
|
key={row.label}
|
|
label={row.label}
|
|
value={(row.rss_kb / 1024).toFixed(1)}
|
|
unit="MB"
|
|
barPct={memoryBarPct(row.rss_kb, maxMemoryKb)}
|
|
barTone="memory"
|
|
pinned={livePinned(pinId)}
|
|
onTogglePin={toggleLive(pinId)}
|
|
/>
|
|
);
|
|
})}
|
|
</PerfProbeMetricSection>
|
|
)}
|
|
</>
|
|
)}
|
|
|
|
{live.diagRates && (
|
|
<PerfProbeMetricSection title="UI event rates" defaultOpen={false}>
|
|
<PerfProbeMetricCard
|
|
label="audio:progress"
|
|
value={live.diagRates.progress.toFixed(1)}
|
|
unit="/s"
|
|
barPct={Math.min(100, live.diagRates.progress * 2)}
|
|
barTone="rate"
|
|
pinned={livePinned('rate:progress')}
|
|
onTogglePin={toggleLive('rate:progress')}
|
|
/>
|
|
<PerfProbeMetricCard
|
|
label="waveform draws"
|
|
value={live.diagRates.waveform.toFixed(1)}
|
|
unit="/s"
|
|
barPct={Math.min(100, live.diagRates.waveform * 2)}
|
|
barTone="rate"
|
|
pinned={livePinned('rate:waveform')}
|
|
onTogglePin={toggleLive('rate:waveform')}
|
|
/>
|
|
<PerfProbeMetricCard
|
|
label="Home commits"
|
|
value={live.diagRates.home.toFixed(1)}
|
|
unit="/s"
|
|
barPct={Math.min(100, live.diagRates.home * 5)}
|
|
barTone="rate"
|
|
pinned={livePinned('rate:home')}
|
|
onTogglePin={toggleLive('rate:home')}
|
|
/>
|
|
</PerfProbeMetricSection>
|
|
)}
|
|
|
|
{live.analysis && (
|
|
<PerfProbeMetricSection title="Analysis" defaultOpen={false}>
|
|
<PerfProbeMetricCard
|
|
label="Throughput"
|
|
value={live.analysis.tracksPerMinute.toFixed(1)}
|
|
unit="tpm"
|
|
pinned={livePinned('analysis:tpm')}
|
|
onTogglePin={toggleLive('analysis:tpm')}
|
|
/>
|
|
{live.analysis.lastTotalMs != null && (
|
|
<PerfProbeMetricCard
|
|
label="Last track"
|
|
value={(live.analysis.lastTotalMs / 1000).toFixed(1)}
|
|
unit="s"
|
|
detail={`fetch ${((live.analysis.lastFetchMs ?? 0) / 1000).toFixed(1)}s · seed ${((live.analysis.lastSeedMs ?? 0) / 1000).toFixed(1)}s · bpm ${((live.analysis.lastBpmMs ?? 0) / 1000).toFixed(1)}s`}
|
|
pinned={livePinned('analysis:last')}
|
|
onTogglePin={toggleLive('analysis:last')}
|
|
/>
|
|
)}
|
|
</PerfProbeMetricSection>
|
|
)}
|
|
|
|
{live.cover && (
|
|
<PerfProbeMetricSection title="Cover pipeline" defaultOpen={false}>
|
|
<PerfProbeMetricCard
|
|
label="Backfill (lib)"
|
|
value={live.cover.cachedPerMinute.toFixed(1)}
|
|
unit="cpm"
|
|
detail={live.cover.total > 0
|
|
? `${live.cover.done.toLocaleString()} / ${live.cover.total.toLocaleString()} cached`
|
|
: 'covers cached per minute'}
|
|
pinned={livePinned('cover:cpm')}
|
|
onTogglePin={toggleLive('cover:cpm')}
|
|
/>
|
|
<PerfProbeMetricCard
|
|
label="On-demand (ui)"
|
|
value={live.cover.uiPerMinute.toFixed(1)}
|
|
unit="cpm"
|
|
detail="UI cover ensures per minute"
|
|
pinned={livePinned('cover:cpm:ui')}
|
|
onTogglePin={toggleLive('cover:cpm:ui')}
|
|
/>
|
|
</PerfProbeMetricSection>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|