feat: main.cpp intenta HTTP API primero, fallback a SQLite
Nuevo flujo: por defecto conecta a sqlite_api en localhost:8484. Si la API no responde, cae a SQLite directo. Flag --api para URL custom. Launcher PowerShell actualizado con --api. app.md refleja la nueva arquitectura dual HTTP/SQLite y dir_path del proyecto. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
name: registry_dashboard
|
||||
lang: cpp
|
||||
domain: tui
|
||||
description: "Dashboard ImGui para visualizar el estado del fn_registry: KPIs, charts, tablas, desglose por lenguaje/dominio/pureza"
|
||||
tags: [dashboard, imgui, visualization, registry]
|
||||
description: "Dashboard ImGui para visualizar el estado del fn_registry. Consume datos via sqlite_api HTTP (fallback a SQLite directo). KPIs, charts, tablas, desglose por lenguaje/dominio/pureza."
|
||||
tags: [dashboard, imgui, visualization, registry, http]
|
||||
uses_functions:
|
||||
- kpi_card_cpp_viz
|
||||
- bar_chart_cpp_viz
|
||||
@@ -17,24 +17,27 @@ uses_functions:
|
||||
uses_types: []
|
||||
framework: "imgui"
|
||||
entry_point: "main.cpp"
|
||||
dir_path: "apps/registry_dashboard"
|
||||
dir_path: "projects/fn_monitoring/apps/registry_dashboard"
|
||||
repo_url: "https://gitea-dgg044oo04woo4ggcsws4gk0.organic-machine.com/dataforge/registry_dashboard"
|
||||
---
|
||||
|
||||
## Arquitectura
|
||||
|
||||
Dashboard C++ que lee `registry.db` directamente via SQLite C API y visualiza el estado completo del fn_registry.
|
||||
Dashboard C++ con dos modos de acceso a datos:
|
||||
|
||||
**Data layer** (`data.cpp`): Carga todas las stats, desgloses y listas en un solo paso desde SQLite. Soporte para reload en caliente.
|
||||
1. **HTTP API** (primario): Conecta a `sqlite_api` via HTTP para obtener datos de registry.db. No requiere acceso al filesystem.
|
||||
2. **SQLite directo** (fallback): Lee registry.db directamente si la API no esta disponible.
|
||||
|
||||
**Data layers:**
|
||||
- `data_http.cpp`: Carga datos via HTTP POST a sqlite_api (cpp-httplib + nlohmann/json)
|
||||
- `data.cpp`: Carga directa desde SQLite C API
|
||||
|
||||
**Views** (`views.cpp`): Compone funciones del registry C++ para renderizar:
|
||||
- 6 KPI cards: total functions, types, apps, analysis, tested%, pure%
|
||||
- Bar charts: funciones por lenguaje, por dominio, actividad ultimos 30 dias
|
||||
- Pie charts: pureza (pure/impure), kind (function/pipeline/component), tested/untested
|
||||
- 8 KPI cards: functions, types, apps, analysis, unit tests, proposals, tested%, pure%
|
||||
- Bar charts: funciones por lenguaje, por dominio
|
||||
- Pie charts: pureza (pure/impure), kind (function/pipeline/component)
|
||||
- Tablas: ultimas 20 funciones, apps, analysis, tipos
|
||||
|
||||
**Entrada**: Paths a `registry.db` como argumentos con fallback encadenado.
|
||||
|
||||
## Build
|
||||
|
||||
```bash
|
||||
@@ -48,23 +51,37 @@ cd cpp && cmake -B build/windows -S . -DCMAKE_TOOLCHAIN_FILE=toolchains/mingw-w6
|
||||
## Ejecucion
|
||||
|
||||
```bash
|
||||
# Linux
|
||||
./cpp/build/linux/apps/registry_dashboard/registry_dashboard /home/lucas/fn_registry/registry.db
|
||||
# Via API (default, intenta conectar a localhost:8484)
|
||||
./registry_dashboard
|
||||
|
||||
# Windows (PowerShell) — intenta WSL mount, luego local
|
||||
# API explicita
|
||||
./registry_dashboard --api http://192.168.1.10:8484
|
||||
|
||||
# Con SQLite fallback
|
||||
./registry_dashboard --api http://127.0.0.1:8484 /path/to/registry.db
|
||||
|
||||
# Solo SQLite (sin API)
|
||||
./registry_dashboard /path/to/registry.db
|
||||
|
||||
# Windows (PowerShell)
|
||||
.\registry_dashboard.ps1
|
||||
|
||||
# Otra maquina — copiar .exe + .db al mismo dir
|
||||
registry_dashboard.exe .\registry.db
|
||||
```
|
||||
|
||||
## Dependencias vendored
|
||||
|
||||
| Libreria | Version | Archivo |
|
||||
|----------|---------|---------|
|
||||
| cpp-httplib | v0.18.3 | vendor/httplib.h |
|
||||
| nlohmann/json | v3.11.3 | vendor/nlohmann/json.hpp |
|
||||
|
||||
## Roadmap
|
||||
|
||||
- [ ] Integrar Go runtime (CGo) para ejecutar comandos `fn` desde el GUI
|
||||
- [ ] Filtros interactivos por lenguaje/dominio en sidebar
|
||||
- [ ] Busqueda FTS5 integrada
|
||||
- [ ] Busqueda FTS5 integrada via API
|
||||
- [ ] Detalles de funcion al hacer click en tabla
|
||||
|
||||
## Notas
|
||||
|
||||
SQLite compilado estaticamente en Windows via amalgamation vendoreada. En Linux usa libsqlite3 del sistema.
|
||||
- Por defecto intenta conectar a sqlite_api en `http://127.0.0.1:8484`. Si falla, usa SQLite directo.
|
||||
- SQLite compilado estaticamente en Windows via amalgamation vendoreada. En Linux usa libsqlite3 del sistema.
|
||||
- cpp-httplib usa sockets nativos (no OpenSSL) — solo HTTP, no HTTPS.
|
||||
|
||||
Reference in New Issue
Block a user