feat: funciones bash audit_registry_paths y validate_registry_paths

Pipeline para auditar file_path del registry contra disco y función shell para validar paths individuales.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-03 03:23:47 +02:00
parent 6ba6507618
commit 8413db65cc
4 changed files with 283 additions and 0 deletions
@@ -0,0 +1,37 @@
---
name: validate_registry_paths
kind: function
lang: bash
domain: shell
version: "1.0.0"
purity: impure
signature: "validate_registry_paths(db_path: string, table: string, root_dir: string) -> tsv_stdout"
description: "Consulta registry.db y verifica que cada file_path apunte a un archivo existente en disco. Imprime a stdout las rutas rotas en formato TSV (id, file_path, domain, tabla)."
tags: [registry, validation, paths, audit, bash]
uses_functions: []
uses_types: []
returns: []
returns_optional: false
error_type: "error_go_core"
imports: []
tested: false
tests: []
test_file_path: ""
file_path: "bash/functions/shell/validate_registry_paths.sh"
---
## Ejemplo
```bash
source validate_registry_paths.sh
validate_registry_paths /home/lucas/fn_registry/registry.db functions /home/lucas/fn_registry
# Output (TSV):
# cdp_click_go_browser functions/infra/cdp_click.go browser functions
```
## Notas
Impura porque lee el filesystem y la base de datos. No modifica nada — solo reporta.
La salida TSV es consumible por otros scripts o pipelines. Si no hay rutas rotas, no imprime nada.
@@ -0,0 +1,45 @@
#!/usr/bin/env bash
# validate_registry_paths
# -----------------------
# Consulta registry.db y verifica que cada file_path apunte a un archivo existente.
# Recibe la ruta a registry.db y la tabla a validar (functions o types).
# Imprime a stdout las lineas con rutas rotas en formato TSV:
# id<TAB>file_path<TAB>domain<TAB>tabla
# Exit code 0 siempre (es una consulta, no una asercion).
#
# USO (sourced):
# source validate_registry_paths.sh
# validate_registry_paths /ruta/registry.db functions /ruta/raiz
#
# USO (directo):
# bash validate_registry_paths.sh /ruta/registry.db functions /ruta/raiz
validate_registry_paths() {
local db_path="$1"
local table="$2"
local root_dir="$3"
if [[ -z "$db_path" || -z "$table" || -z "$root_dir" ]]; then
echo "validate_registry_paths: uso: validate_registry_paths <db_path> <table> <root_dir>" >&2
return 1
fi
if [[ "$table" != "functions" && "$table" != "types" ]]; then
echo "validate_registry_paths: tabla debe ser 'functions' o 'types'" >&2
return 1
fi
local broken=0
while IFS='|' read -r id fp domain; do
if [[ ! -f "$root_dir/$fp" ]]; then
printf '%s\t%s\t%s\t%s\n' "$id" "$fp" "$domain" "$table"
((broken++))
fi
done < <(sqlite3 "$db_path" "SELECT id, file_path, domain FROM $table ORDER BY id;")
return 0
}
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
validate_registry_paths "$@"
fi