8 Commits

Author SHA1 Message Date
serversdown fb1edfbad4 Merge pull request 'v1.6.0 - Optional dual-send mirror so a standby server stays a live replica.' (#12) from dev into main
Reviewed-on: #12
2026-06-25 10:53:29 -04:00
serversdown a457619158 Merge pull request 'doc: update to 1.5.0' (#10) from dev into main
Reviewed-on: #10
2026-05-11 12:31:57 -04:00
serversdown 9b3ae6d548 Merge pull request 'feat(forward): SFM event forwarder (v1.5.0)' (#9) from dev into main
Reviewed-on: #9
2026-05-11 12:29:21 -04:00
serversdown 1abdc13645 Merge pull request 'bump to 1.4.4 (the nonupdate update)' (#6) from dev into main
Reviewed-on: #6
2026-03-17 21:54:59 -04:00
serversdown f790b21808 Merge pull request 'merge v1.4.3' (#5) from dev into main
Reviewed-on: #5
2026-03-17 21:11:41 -04:00
serversdown 0bea6ca4ea Merge pull request 'v1.4.2' (#3) from dev into main
Reviewed-on: #3
2026-03-17 16:15:22 -04:00
serversdown 2456fd0ee8 Merge pull request 'Merge v1.4.1 from dev' (#2) from dev into main
## [1.4.1] - 2026-03-17

### Fixed
- `config.ini` now saves to `AppData\Local\Series3Watcher\` instead of `Program Files` — fixes permission denied error on first-run wizard save.
- Config path resolution in both `series3_tray.py` and `series3_watcher.py` updated to use `sys.frozen` + `LOCALAPPDATA` when running as a PyInstaller `.exe`.
- Status menu item now uses a callable so it updates every time the menu opens — was showing stale "Starting..." while tooltip correctly showed current status.
- Settings dialog now opens in its own thread — fixes unresponsive tabs and text fields while the watcher loop is running.
- Tray icon reverted to plain colored dot — custom icon graphic was unreadable at 16px tray size. `.ico` file is still used for the `.exe` file icon.

### Changed
- Terra-View URL field in settings wizard now accepts base URL only (e.g. `http://192.168.x.x:8000`) — `/api/series3/heartbeat` endpoint appended automatically.
- Test Connection button now hits `/health` endpoint instead of posting a fake heartbeat — no database side effects.
- "terra-view URL" label capitalized to "Terra-View URL".
- Default log path updated to `AppData\Local\Series3Watcher\agent_logs\series3_watcher.log`.
- Installer now creates `agent_logs\` folder on install.
- `BUILDING.md` added — step-by-step guide for building, releasing, and updating.

## [1.4.0] - 2026-03-12

### Added
- `series3_tray.py` — system tray launcher using `pystray` + `Pillow`. Color-coded icon (green=OK, amber=Pending, red=Missing, purple=Error, grey=Starting). Right-click menu shows live status, unit count, last scan age, Open Log Folder, and Exit.
- `run_watcher(state, stop_event)` in `series3_watcher.py` for background thread use by the tray. Shared `state` dict updated on every scan cycle with status, unit list, last scan time, and last error.
- Interruptible sleep in watcher loop — tray exit is immediate, no waiting out the full scan interval.

### Changed
- `main()` now calls `run_watcher()` — standalone behavior unchanged.
- `requirements.txt` updated to document tray dependencies (`pystray`, `Pillow`); watcher itself remains stdlib-only.
2026-03-17 14:31:50 -04:00
serversdown c133932b29 Merge pull request 'Merge: dev to main, refactor rename' (#1) from dev into main
Reviewed-on: serversdown/series3-agent#1
2026-03-03 17:12:58 -05:00
8 changed files with 15 additions and 170 deletions
-9
View File
@@ -6,15 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
---
## [6-25-26] — v1.6.1
Reliability fixes for the tray app's auto-updater and scan logging.
### Fixed
- **Auto-updater no longer dies when Settings are saved.** Saving the Settings dialog restarts the watcher thread via `_restart_watcher`, which sets and then replaces the shared `stop_event`. Because the updater loop keyed off that *same* event, saving settings would terminate the auto-updater thread (a race — it could survive one save and die on the next). The watcher kept running and reporting heartbeats, but the agent silently stopped checking for / applying updates until the tray app was relaunched. The updater now keys off its own app-lifetime event (`_app_stop`) that watcher restarts never touch; it stops only on Exit or when applying an update. (Same fix as thor-watcher 0.4.1.)
- **Unsniffable `.MLG` files are logged once, not every scan.** A `.MLG` file the watcher couldn't extract a unit ID from was never cached, so every scan (~every 5 min) re-sniffed *and* re-emitted its `[unsniffable-recent]` log line. With a few hundred such files in a long-lived Blastware autocall folder that meant tens of thousands of duplicate lines per day (a 10-day-old log had grown to ~600K lines). The scan now caches the unsniffable result, so each file is sniffed and logged once per session — and the redundant per-scan header reads are gone.
- Added `test_scan_latest.py` (unsniffable cached / logged-once + happy-path sniff) and `test_series3_tray.py` (updater survives a watcher restart; stops on exit).
## [6-25-26] — v1.6.0
Optional dual-send mirror so a standby server stays a live replica.
+2 -2
View File
@@ -1,4 +1,4 @@
# Series 3 Watcher v1.6.1
# Series 3 Watcher v1.6.0
Monitors Instantel **Series 3 (Minimate)** call-in activity on a Blastware server. Runs as a **system tray app** that starts automatically on login, reports heartbeats to terra-view, and self-updates from Gitea.
@@ -188,7 +188,7 @@ where the corresponding server-side work lives.
## Versioning
Follows **Semantic Versioning**. Current release: **v1.6.1**.
Follows **Semantic Versioning**. Current release: **v1.6.0**.
See `CHANGELOG.md` for full history.
---
+1 -1
View File
@@ -3,7 +3,7 @@
[Setup]
AppName=Series 3 Watcher
AppVersion=1.6.1
AppVersion=1.6.0
AppPublisher=Terra-Mechanics Inc.
DefaultDirName={pf}\Series3Watcher
DefaultGroupName=Series 3 Watcher
+4 -7
View File
@@ -1,5 +1,5 @@
"""
Series 3 Watcher — System Tray Launcher v1.6.1
Series 3 Watcher — System Tray Launcher v1.6.0
Requires: pystray, Pillow, tkinter (stdlib)
Run with: pythonw series3_tray.py (no console window)
@@ -335,8 +335,7 @@ def _show_cancel_message():
class WatcherTray:
def __init__(self):
self.state = {}
self.stop_event = threading.Event() # watcher lifecycle; replaced on restart
self._app_stop = threading.Event() # app lifetime; only set on exit/update
self.stop_event = threading.Event()
self._watcher_thread = None
self._icon = None
# Lock guards _rebuild_menu calls from the updater thread
@@ -395,7 +394,6 @@ class WatcherTray:
subprocess.Popen(["explorer", HERE])
def _exit(self, icon, item):
self._app_stop.set()
self.stop_event.set()
icon.stop()
@@ -461,7 +459,7 @@ class WatcherTray:
last_status = None
update_check_counter = 0 # check for updates every ~5 min (30 * 10s ticks)
while not self._app_stop.is_set():
while not self.stop_event.is_set():
icon_status = self._tray_status()
if self._icon is not None:
@@ -489,7 +487,7 @@ class WatcherTray:
self._do_update(url)
return # exit loop; swap bat will relaunch
self._app_stop.wait(timeout=10)
self.stop_event.wait(timeout=10)
def _do_update(self, download_url=None):
"""Notify tray icon then apply update. If url is None, fetch it first."""
@@ -504,7 +502,6 @@ class WatcherTray:
success = apply_update(download_url)
if success:
self._app_stop.set()
self.stop_event.set()
if self._icon is not None:
self._icon.stop()
+6 -9
View File
@@ -237,16 +237,13 @@ def scan_latest(
uid = cached[1]
else:
uid = sniff_unit_from_mlg(fpath, header_bytes)
# Cache the result either way — including unsniffable (uid=None) —
# so the same file isn't re-sniffed and re-logged on every scan.
cache[fpath] = (mtime, uid)
if (not uid) and (recent_cutoff is not None) and (mtime >= recent_cutoff):
# Log once, on first sight, for later inspection.
if not uid:
# If unsniffable but very recent, log for later inspection
if (recent_cutoff is not None) and (mtime >= recent_cutoff):
if logger:
logger("[unsniffable-recent] {}".format(fpath))
if not uid:
continue # no unit ID in header — skip (cached above, won't re-log)
continue # skip file if no unit ID found in header
cache[fpath] = (mtime, uid)
if (uid not in latest) or (mtime > latest[uid]["mtime"]):
latest[uid] = {"mtime": mtime, "fname": e.name, "path": fpath}
@@ -256,7 +253,7 @@ def scan_latest(
# --- API heartbeat / SFM telemetry helpers ---
VERSION = "1.6.1"
VERSION = "1.6.0"
def _read_log_tail(log_file: str, n: int = 25) -> Optional[list]:
+1 -1
View File
@@ -1,5 +1,5 @@
"""
Series 3 Watcher — Settings Dialog v1.6.1
Series 3 Watcher — Settings Dialog v1.6.0
Provides a Tkinter settings dialog that doubles as a first-run wizard.
-62
View File
@@ -1,62 +0,0 @@
"""
Tests for scan_latest's handling of unsniffable .MLG files.
Regression guard: a .MLG file the watcher can't extract a unit ID from must
be cached (as "no id") so it isn't re-sniffed and re-logged on every scan.
Previously the unsniffable result was never cached, so the
`[unsniffable-recent]` warning was re-emitted every scan cycle — ~200 files
x 288 scans/day flooded the log with hundreds of thousands of duplicate lines.
"""
import os
import time
import tempfile
import unittest
import series3_watcher
class UnsniffableCaching(unittest.TestCase):
def test_unsniffable_recent_file_logged_once_across_scans(self):
with tempfile.TemporaryDirectory() as d:
# A .MLG file with no BE####/BA#### pattern → sniff returns None.
path = os.path.join(d, "junk001.MLG")
with open(path, "wb") as f:
f.write(b"\x00" * 512)
calls = []
cache = {}
recent_cutoff = time.time() - 86400.0 # file (mtime≈now) counts as recent
for _ in range(3):
series3_watcher.scan_latest(
watch=d,
header_bytes=2048,
cache=cache,
recent_cutoff=recent_cutoff,
max_age_days=365,
logger=calls.append,
)
unsniff = [c for c in calls if "[unsniffable-recent]" in c]
self.assertEqual(
len(unsniff), 1,
"unsniffable file should log once across scans, got {}: {}".format(
len(unsniff), unsniff),
)
def test_sniffable_file_still_returned(self):
# Sanity: a file WITH a unit id is still detected (happy path intact).
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, "evt001.MLG")
with open(path, "wb") as f:
f.write(b"hdr\x00BE12599\x00hdr") # contains a sniffable unit id
cache = {}
result = series3_watcher.scan_latest(
watch=d, header_bytes=2048, cache=cache,
recent_cutoff=time.time() - 86400.0, max_age_days=365, logger=None,
)
self.assertIn("BE12599", result)
if __name__ == "__main__":
unittest.main()
-78
View File
@@ -1,78 +0,0 @@
"""
Tests for series3_tray's thread lifecycle.
Regression guard: saving the Settings dialog restarts the watcher thread via
``_restart_watcher``, which sets and replaces the shared ``stop_event``. The
auto-updater must key off its own lifetime event (``_app_stop``) so a watcher
restart never kills it; it should only stop when the app actually exits.
"""
import sys
import time
import threading
import unittest
from unittest import mock
# Series3's tray pulls in Windows-only GUI deps at import time; stub them.
for _name in ("pystray", "PIL", "PIL.Image", "PIL.ImageDraw"):
sys.modules.setdefault(_name, mock.MagicMock())
import series3_tray # noqa: E402
class TrayThreadLifecycle(unittest.TestCase):
def setUp(self):
# No-op watcher loop so restarting the watcher doesn't spin up the real
# Blastware scanner / network heartbeat.
patcher = mock.patch.object(
series3_tray.watcher, "run_watcher", lambda state, stop_event: None
)
patcher.start()
self.addCleanup(patcher.stop)
def test_app_stop_is_separate_lifetime_event(self):
app = series3_tray.WatcherTray()
self.assertIsInstance(app._app_stop, threading.Event)
self.assertIsNot(app._app_stop, app.stop_event)
self.assertFalse(app._app_stop.is_set())
def test_exit_signals_app_stop(self):
app = series3_tray.WatcherTray()
icon = mock.MagicMock()
app._exit(icon, None)
self.assertTrue(app._app_stop.is_set())
icon.stop.assert_called_once()
def test_restart_watcher_leaves_watcher_stop_unset(self):
app = series3_tray.WatcherTray()
app._restart_watcher()
self.assertFalse(app.stop_event.is_set())
def test_updater_survives_watcher_restart_then_stops_on_exit(self):
app = series3_tray.WatcherTray()
app._icon = None
with mock.patch.object(series3_tray, "check_for_update", return_value=(None, None)), \
mock.patch.object(app, "_tray_status", return_value="ok"):
t = threading.Thread(
target=app._icon_updater, daemon=True, name="test-updater"
)
t.start()
time.sleep(0.1)
self.assertTrue(t.is_alive(), "updater failed to start")
# A settings save restarts the watcher — it must NOT kill the updater.
app._restart_watcher()
time.sleep(0.2)
self.assertTrue(
t.is_alive(), "updater thread died on watcher restart (the bug)"
)
# Real app exit DOES stop the updater.
app._app_stop.set()
t.join(timeout=2)
self.assertFalse(
t.is_alive(), "updater thread did not stop on app exit"
)
if __name__ == "__main__":
unittest.main()