better-rtplot 0.4.6__tar.gz → 0.4.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/PKG-INFO +1 -1
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/pyproject.toml +1 -1
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/server_browser.py +31 -2
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/index.html +48 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/LICENSE +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/README.md +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/client.py +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/interactive_test.py +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/saved_plots/.gitignore +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/server.py +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/server_browser_gui.py +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/auto-render.min.js +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/katex.min.css +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/katex.min.js +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/uPlot.iife.min.js +0 -0
- {better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/uPlot.min.css +0 -0
|
@@ -306,6 +306,12 @@ class Tab:
|
|
|
306
306
|
data_rate_hz: float = 0.0
|
|
307
307
|
_last_rx_ts: float = 0.0
|
|
308
308
|
|
|
309
|
+
# When the most recent client-supplied config failed to parse we
|
|
310
|
+
# stash the reason + a unix timestamp so the browser can surface
|
|
311
|
+
# "your last config was rejected at HH:MM:SS" instead of just
|
|
312
|
+
# silently rendering nothing. Cleared on the next successful parse.
|
|
313
|
+
last_config_error: Optional[dict] = None
|
|
314
|
+
|
|
309
315
|
def ensure_buffer(self):
|
|
310
316
|
if self.buffer is None:
|
|
311
317
|
self.buffer = np.zeros((INITIAL_NUM_TRACES, MAX_LOCAL_STORAGE))
|
|
@@ -344,6 +350,7 @@ def tab_public(t: Tab) -> dict:
|
|
|
344
350
|
"endpoint": t.endpoint,
|
|
345
351
|
"status": t.status,
|
|
346
352
|
"error": t.error,
|
|
353
|
+
"last_config_error": t.last_config_error,
|
|
347
354
|
}
|
|
348
355
|
|
|
349
356
|
|
|
@@ -711,8 +718,30 @@ async def zmq_receiver(tab: Tab):
|
|
|
711
718
|
tab._last_rx_ts = now
|
|
712
719
|
|
|
713
720
|
if category == RECEIVED_PLOT_UPDATE:
|
|
714
|
-
|
|
715
|
-
|
|
721
|
+
# Decode + parse are wrapped so a malformed config doesn't kill
|
|
722
|
+
# the receiver task. We stash the failure on the tab so the
|
|
723
|
+
# browser can show "your last config was rejected at HH:MM:SS"
|
|
724
|
+
# instead of looking like nothing happened. Existing valid
|
|
725
|
+
# state (if any) is preserved on parse failure.
|
|
726
|
+
try:
|
|
727
|
+
cfg = await sock.recv_json(object_pairs_hook=OrderedDict)
|
|
728
|
+
except Exception as exc: # noqa: BLE001
|
|
729
|
+
msg = f"Could not decode config JSON: {type(exc).__name__}: {exc}"
|
|
730
|
+
print(f"[{tab.id}] {msg}")
|
|
731
|
+
tab.last_config_error = {"message": msg, "timestamp": time.time()}
|
|
732
|
+
await broadcast_tab(tab.id)
|
|
733
|
+
continue
|
|
734
|
+
|
|
735
|
+
try:
|
|
736
|
+
parse_config(tab, cfg)
|
|
737
|
+
except Exception as exc: # noqa: BLE001
|
|
738
|
+
msg = f"Configuration rejected: {type(exc).__name__}: {exc}"
|
|
739
|
+
print(f"[{tab.id}] {msg}")
|
|
740
|
+
tab.last_config_error = {"message": msg, "timestamp": time.time()}
|
|
741
|
+
await broadcast_tab(tab.id)
|
|
742
|
+
continue
|
|
743
|
+
|
|
744
|
+
tab.last_config_error = None # clear: this one was good
|
|
716
745
|
tab.config_dict = cfg
|
|
717
746
|
tab.config_message = build_config_message(tab, cfg)
|
|
718
747
|
tab.initialized = True
|
|
@@ -67,6 +67,13 @@
|
|
|
67
67
|
.plot-wrap { background: #fff; border: 1px solid #ddd; border-radius: 4px; padding: 8px; flex: 1 1 auto; min-width: 320px; }
|
|
68
68
|
.plot-title { font-size: 13px; font-weight: 600; margin: 0 0 4px 4px; color: #333; }
|
|
69
69
|
#empty-state { padding: 28px 32px; color: #888; font-size: calc(14px * var(--ui-scale)); font-style: italic; }
|
|
70
|
+
/* Persistent banner the server raises when a client-supplied plot
|
|
71
|
+
config fails to parse — the user used to be left guessing why
|
|
72
|
+
nothing rendered; now they get the reason + a local timestamp. */
|
|
73
|
+
.config-error-banner { margin: 12px 12px 0 12px; padding: 10px 14px; background: #fce8e8; color: #8a1a1a; border: 1px solid #f0c2c2; border-left: 4px solid #d24a4a; border-radius: 4px; font-size: calc(13px * var(--ui-scale)); }
|
|
74
|
+
.config-error-banner .ce-title { font-weight: 600; margin-right: 8px; }
|
|
75
|
+
.config-error-banner .ce-when { color: #6b1818; opacity: 0.8; font-family: monospace; font-size: calc(12px * var(--ui-scale)); }
|
|
76
|
+
.config-error-banner .ce-msg { display: block; margin-top: 4px; font-family: monospace; font-size: calc(12px * var(--ui-scale)); white-space: pre-wrap; word-break: break-word; }
|
|
70
77
|
:root { --ctrl-unit-h: 38px; --ui-scale: 1; }
|
|
71
78
|
.ctrl-row { display: flex; gap: 12px; align-items: center; padding: 10px 14px; background: #fff; border: 1px solid #ddd; border-radius: 4px; flex-wrap: wrap; }
|
|
72
79
|
.ctrl-item { display: flex; align-items: center; gap: 6px; }
|
|
@@ -187,6 +194,7 @@
|
|
|
187
194
|
<div id="res-unavail" class="res-unavail" style="display:none;">psutil not installed — pip install psutil for live stats</div>
|
|
188
195
|
</div>
|
|
189
196
|
</div>
|
|
197
|
+
<div id="config-error-banner" class="config-error-banner" style="display:none"></div>
|
|
190
198
|
<div id="plots" class="row"></div>
|
|
191
199
|
<script src="/static/uPlot.iife.min.js"></script>
|
|
192
200
|
<script src="/static/katex/katex.min.js"></script>
|
|
@@ -210,6 +218,43 @@
|
|
|
210
218
|
return 'rgb(0,0,0)';
|
|
211
219
|
}
|
|
212
220
|
|
|
221
|
+
const configErrorBanner = document.getElementById('config-error-banner');
|
|
222
|
+
|
|
223
|
+
function fmtLocalTimestamp(unixSeconds) {
|
|
224
|
+
const d = new Date(unixSeconds * 1000);
|
|
225
|
+
const pad = (n) => String(n).padStart(2, '0');
|
|
226
|
+
return `${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())} ` +
|
|
227
|
+
`${pad(d.getHours())}:${pad(d.getMinutes())}:${pad(d.getSeconds())}`;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
function applyConfigErrorBanner() {
|
|
231
|
+
const t = activeTab && knownTabs[activeTab];
|
|
232
|
+
const err = t && t.last_config_error;
|
|
233
|
+
if (!err) {
|
|
234
|
+
configErrorBanner.style.display = 'none';
|
|
235
|
+
configErrorBanner.innerHTML = '';
|
|
236
|
+
return;
|
|
237
|
+
}
|
|
238
|
+
// Build with textContent on the leaf nodes so user-controlled
|
|
239
|
+
// strings (the error message) can't inject HTML.
|
|
240
|
+
configErrorBanner.innerHTML = '';
|
|
241
|
+
const head = document.createElement('div');
|
|
242
|
+
const title = document.createElement('span');
|
|
243
|
+
title.className = 'ce-title';
|
|
244
|
+
title.textContent = 'Last configuration was rejected';
|
|
245
|
+
head.appendChild(title);
|
|
246
|
+
const when = document.createElement('span');
|
|
247
|
+
when.className = 'ce-when';
|
|
248
|
+
when.textContent = `at ${fmtLocalTimestamp(err.timestamp)}`;
|
|
249
|
+
head.appendChild(when);
|
|
250
|
+
configErrorBanner.appendChild(head);
|
|
251
|
+
const body = document.createElement('span');
|
|
252
|
+
body.className = 'ce-msg';
|
|
253
|
+
body.textContent = err.message || '';
|
|
254
|
+
configErrorBanner.appendChild(body);
|
|
255
|
+
configErrorBanner.style.display = '';
|
|
256
|
+
}
|
|
257
|
+
|
|
213
258
|
// ---- LaTeX rendering ($...$ inline, $$...$$ display) ----
|
|
214
259
|
// KaTeX's auto-render walks an element's text nodes looking for the
|
|
215
260
|
// configured delimiters, so plain labels without `$` are completely
|
|
@@ -1111,6 +1156,7 @@
|
|
|
1111
1156
|
showEmptyState('Loading tab \u2026');
|
|
1112
1157
|
const t = knownTabs[id];
|
|
1113
1158
|
setZmqMode(t.mode, t.endpoint);
|
|
1159
|
+
applyConfigErrorBanner();
|
|
1114
1160
|
sendCtrl({ type: 'tab_subscribe', id: id });
|
|
1115
1161
|
}
|
|
1116
1162
|
|
|
@@ -1183,6 +1229,7 @@
|
|
|
1183
1229
|
if (activeTab) {
|
|
1184
1230
|
const t = knownTabs[activeTab];
|
|
1185
1231
|
setZmqMode(t.mode, t.endpoint);
|
|
1232
|
+
applyConfigErrorBanner();
|
|
1186
1233
|
sendCtrl({ type: 'tab_subscribe', id: activeTab });
|
|
1187
1234
|
showEmptyState('Loading tab \u2026');
|
|
1188
1235
|
}
|
|
@@ -1193,6 +1240,7 @@
|
|
|
1193
1240
|
renderTabs();
|
|
1194
1241
|
if (msg.tab.id === activeTab) {
|
|
1195
1242
|
setZmqMode(msg.tab.mode, msg.tab.endpoint);
|
|
1243
|
+
applyConfigErrorBanner();
|
|
1196
1244
|
}
|
|
1197
1245
|
}
|
|
1198
1246
|
} else if (msg.type === 'tab_removed') {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_AMS-Regular.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Caligraphic-Bold.woff2
RENAMED
|
File without changes
|
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Fraktur-Bold.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Fraktur-Regular.woff2
RENAMED
|
File without changes
|
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Main-BoldItalic.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Main-Italic.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Main-Regular.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Math-BoldItalic.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Math-Italic.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_SansSerif-Bold.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_SansSerif-Italic.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_SansSerif-Regular.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Script-Regular.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Size1-Regular.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Size2-Regular.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Size3-Regular.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Size4-Regular.woff2
RENAMED
|
File without changes
|
{better_rtplot-0.4.6 → better_rtplot-0.4.7}/rtplot/static/katex/fonts/KaTeX_Typewriter-Regular.woff2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|