File size: 11,698 Bytes
a6e26f9 3cdde15 a6e26f9 1d4d3e9 a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 3cdde15 a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 5008b9d a6e26f9 | 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 | import React, { useEffect, useRef } from 'react';
import { motion } from 'framer-motion';
import { api } from '../api';
const STATES_DISPLAY: Record<string, { label: string; icon: string }> = {
INIT: { label: 'Initializing Workspace', icon: 'π§' },
SPEC: { label: 'Architectural Planning', icon: 'π' },
SPEC_VALIDATE: { label: 'Specification Validation', icon: 'π' },
HIERARCHY_EXPAND: { label: 'Hierarchy Expansion', icon: 'π²' },
FEASIBILITY_CHECK: { label: 'Feasibility Check', icon: 'βοΈ' },
CDC_ANALYZE: { label: 'CDC Analysis', icon: 'π' },
VERIFICATION_PLAN: { label: 'Verification Planning', icon: 'π' },
RTL_GEN: { label: 'RTL Generation', icon: 'π»' },
RTL_FIX: { label: 'RTL Syntax Fixing', icon: 'π¨' },
VERIFICATION: { label: 'Verification & Testbench', icon: 'π§ͺ' },
FORMAL_VERIFY: { label: 'Formal Verification', icon: 'π' },
COVERAGE_CHECK: { label: 'Coverage Analysis', icon: 'π' },
REGRESSION: { label: 'Regression Testing', icon: 'π' },
SDC_GEN: { label: 'SDC Generation', icon: 'π' },
FLOORPLAN: { label: 'Floorplanning', icon: 'πΊοΈ' },
HARDENING: { label: 'GDSII Hardening', icon: 'ποΈ' },
CONVERGENCE_REVIEW: { label: 'Convergence Review', icon: 'π―' },
ECO_PATCH: { label: 'ECO Patch', icon: 'π©Ή' },
SIGNOFF: { label: 'DRC/LVS Signoff', icon: 'β
' },
SUCCESS: { label: 'Build Complete', icon: 'π' },
};
interface BuildEvent {
type: string;
state: string;
message: string;
step: number;
total_steps: number;
timestamp: number;
}
interface StageSchemaItem {
state: string;
label: string;
icon: string;
}
interface Props {
designName: string;
jobId: string;
events: BuildEvent[];
jobStatus: string;
stageSchema?: StageSchemaItem[];
}
export const BuildMonitor: React.FC<Props> = ({ designName, jobId, events, jobStatus, stageSchema }) => {
const logsRef = useRef<HTMLDivElement>(null);
const [cancelling, setCancelling] = React.useState(false);
const mergedDisplay: Record<string, { label: string; icon: string }> = React.useMemo(() => {
if (!stageSchema || stageSchema.length === 0) return STATES_DISPLAY;
const map: Record<string, { label: string; icon: string }> = {};
for (const stage of stageSchema) {
map[stage.state] = { label: stage.label, icon: stage.icon };
}
if (!map.SUCCESS) map.SUCCESS = STATES_DISPLAY.SUCCESS;
return map;
}, [stageSchema]);
const stateOrder = React.useMemo(() => Object.keys(mergedDisplay), [mergedDisplay]);
const reachedStates = new Set(events.map(e => e.state));
const currentState = events.length > 0 ? events[events.length - 1].state : 'INIT';
const currentStateIndex = stateOrder.indexOf(currentState);
const furthestReachedIndex = Math.max(
0,
...events
.map(e => stateOrder.indexOf(e.state))
.filter(idx => idx >= 0)
);
const currentStep = Math.max(1, (currentStateIndex >= 0 ? currentStateIndex : furthestReachedIndex) + 1);
const logEvents = events.filter(e => e.message && e.message.trim().length > 0);
const isDone = ['done', 'failed', 'cancelled', 'cancelling'].includes(jobStatus);
const selfHeal = {
stageExceptions: events.filter(e => /stage .* exception/i.test(e.message || '')).length,
formalRegens: events.filter(e => /regenerating sva/i.test(e.message || '')).length,
coverageRestores: events.filter(e => /restoring best testbench/i.test(e.message || '')).length,
coverageRejects: events.filter(e => /regressed coverage/i.test(e.message || '')).length,
deterministicFallbacks: events.filter(e => /deterministic tb fallback/i.test(e.message || '')).length,
};
useEffect(() => {
if (logsRef.current) {
logsRef.current.scrollTop = logsRef.current.scrollHeight;
}
}, [events]);
const handleCancel = async () => {
if (!jobId || cancelling) return;
setCancelling(true);
try {
await api.post(`/build/cancel/${jobId}`);
} catch {
setCancelling(false);
}
};
return (
<div className="monitor-root">
{/* Header */}
<div className="monitor-header">
<div className="monitor-chip-badge">
<span className="badge-dot" data-status={jobStatus} />
<span className="badge-name">{designName}</span>
</div>
<div className="monitor-status">
{!isDone ? (
<>
<span className="spinner" />
<span>Step {currentStep} / {stateOrder.length}</span>
<button
className="cancel-btn"
onClick={handleCancel}
disabled={cancelling}
>
{cancelling ? 'Stoppingβ¦' : 'β Cancel'}
</button>
</>
) : (
<span style={{ color: jobStatus === 'done' ? 'var(--success)' : 'var(--fail)', fontWeight: 600 }}>
{jobStatus === 'done' ? 'β Complete' : jobStatus === 'cancelled' ? 'β Cancelled' : 'β Failed'}
</span>
)}
</div>
</div>
{/* Body */}
<div className="monitor-body">
{/* Checkpoint Timeline */}
<div className="checkpoint-column">
<div className="section-heading">Build Pipeline</div>
<div className="checkpoint-list">
{stateOrder.map((stateKey, idx) => {
const info = mergedDisplay[stateKey] || { label: stateKey, icon: 'β’' };
const isPassed = stateOrder.indexOf(stateKey) < stateOrder.indexOf(currentState);
const isCurrent = currentState === stateKey && !isDone;
const isSuccess = stateKey === 'SUCCESS' && jobStatus === 'done';
return (
<motion.div
key={stateKey}
className={`checkpoint-item ${isPassed || reachedStates.has(stateKey) ? 'reached' : ''} ${isCurrent ? 'active' : ''}`}
initial={{ opacity: 0, x: -10 }}
animate={{ opacity: 1, x: 0 }}
transition={{ delay: idx * 0.04 }}
>
<div className="checkpoint-icon-wrap">
{isPassed || isSuccess ? (
<span className="check-done">β</span>
) : isCurrent ? (
<span className="check-pulse">β³</span>
) : (
<span className="check-todo" />
)}
{idx < stateOrder.length - 1 && (
<div className={`checkpoint-line ${isPassed ? 'line-done' : ''}`} />
)}
</div>
<div className="checkpoint-label">
<span className="checkpoint-icon-emoji">{info.icon}</span>
<span className={`checkpoint-text ${isCurrent ? 'text-active' : ''}`}>
{info.label}
</span>
</div>
</motion.div>
);
})}
</div>
</div>
{/* Live Terminal */}
<div className="terminal-column">
<div className="section-heading">Live Log</div>
<div style={{
border: '1px solid var(--border)',
borderRadius: 'var(--radius)',
background: 'var(--bg-card)',
padding: '0.65rem 0.75rem',
marginBottom: '0.65rem',
display: 'flex',
flexWrap: 'wrap',
gap: '0.5rem',
color: 'var(--text-mid)',
fontSize: '0.78rem',
}}>
<span style={{ color: 'var(--text)', fontWeight: 600 }}>Self-Healing</span>
<span>Stage guards: {selfHeal.stageExceptions}</span>
<span>Formal regens: {selfHeal.formalRegens}</span>
<span>TB regressions blocked: {selfHeal.coverageRejects}</span>
<span>Best TB restores: {selfHeal.coverageRestores}</span>
<span>TB fallbacks: {selfHeal.deterministicFallbacks}</span>
</div>
<div className="live-terminal" ref={logsRef}>
{logEvents.length === 0 ? (
<span className="terminal-waiting">Waiting for AgentIC to startβ¦</span>
) : (
logEvents.map((evt, i) => (
<motion.div
key={i}
className={`terminal-line ${evt.type === 'checkpoint' || evt.type === 'transition' ? 'terminal-highlight' : ''}`}
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 0.15 }}
>
<span className="terminal-ts">
{new Date(evt.timestamp * 1000).toLocaleTimeString()}
</span>
<span className="terminal-state">[{evt.state}]</span>
<span className="terminal-msg">{evt.message}</span>
</motion.div>
))
)}
</div>
{/* Progress */}
<div className="progress-bar-wrap">
<div
className="progress-bar-fill"
style={{ width: `${(currentStep / stateOrder.length) * 100}%` }}
/>
</div>
<div className="progress-label">
{Math.round((currentStep / stateOrder.length) * 100)}% complete
</div>
</div>
</div>
{/* Footer */}
{!isDone && (
<div className="monitor-footer">
<span className="spinner-small" />
AgentIC is building your chip autonomously. This takes 10β30 min.
You'll get a browser notification when done β you can leave this tab open.
</div>
)}
</div>
);
};
|