ai-code-battle/cmd/acb-evolver/internal/db/programs.go
jedarden 5669688984 Add validation pipeline, sandbox, and evolution DB layer (Phase 7)
Three-stage fail-fast validator for LLM-generated bot candidates:
- syntax.go: language-aware parse (go/parser for Go; py_compile, rustfmt,
  tsc, javac, php -l for others; brace-balance fallback)
- schema.go: regex detection of /health + /turn endpoints and "moves" field
- sandbox.go: nsjail-isolated smoke test — builds bot, polls /health, sends
  5 signed /turn requests, verifies JSON moves responses
- validator.go: orchestrates stages with fail-fast short-circuit

DB layer:
- programs table + CRUD (create, get, list, updateFitness, setPromoted)
- validation_log table with RecordValidation, IslandPassRates,
  IslandValidationStats for per-island pass-rate tracking
- seed.go: 6 generation-0 bots across alpha/beta/gamma/delta islands

MAP-Elites grid (mapelites/grid.go): 2-D behavior grid on aggression×economy
axes; TryPlace keeps the fittest occupant per niche.

acb-evolver CLI gains two new subcommands:
  validate <file> -lang <lang> [-island <island>] [-nsjail] [-nolog]
  validation-stats (tabular per-island pass-rate breakdown)

cmd/acb-api/db.go: add programs table to API schema so the API can query
promoted evolved bots.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-26 22:45:13 -04:00

179 lines
5.2 KiB
Go

package db
import (
"context"
"database/sql"
"encoding/json"
"fmt"
"time"
"github.com/lib/pq"
)
// Island names for the 4 independent populations.
const (
IslandAlpha = "alpha" // core-rushing strategies
IslandBeta = "beta" // energy-focused strategies
IslandGamma = "gamma" // defensive strategies
IslandDelta = "delta" // mixed / experimental
)
// AllIslands is the ordered list of the 4 island names.
var AllIslands = []string{IslandAlpha, IslandBeta, IslandGamma, IslandDelta}
// Program represents an evolved strategy program stored in the database.
// BehaviorVector is a 2-element slice: [aggression, economy], each in [0, 1].
type Program struct {
ID int64
Code string
Language string
Island string
Generation int
ParentIDs []int64
BehaviorVector []float64
Fitness float64
Promoted bool
CreatedAt time.Time
}
// Store provides CRUD operations for programs.
type Store struct {
db *sql.DB
}
// NewStore creates a Store backed by the given database connection.
func NewStore(db *sql.DB) *Store {
return &Store{db: db}
}
// Create inserts a new program and returns its assigned ID.
func (s *Store) Create(ctx context.Context, p *Program) (int64, error) {
parentJSON, err := json.Marshal(p.ParentIDs)
if err != nil {
return 0, fmt.Errorf("marshal parent_ids: %w", err)
}
var id int64
err = s.db.QueryRowContext(ctx, `
INSERT INTO programs (code, language, island, generation, parent_ids, behavior_vector, fitness, promoted)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
RETURNING id`,
p.Code,
p.Language,
p.Island,
p.Generation,
string(parentJSON),
pq.Array(p.BehaviorVector),
p.Fitness,
p.Promoted,
).Scan(&id)
if err != nil {
return 0, fmt.Errorf("insert program: %w", err)
}
return id, nil
}
// Get retrieves a program by ID. Returns (nil, nil) if not found.
func (s *Store) Get(ctx context.Context, id int64) (*Program, error) {
p := &Program{}
var parentJSON string
err := s.db.QueryRowContext(ctx, `
SELECT id, code, language, island, generation, parent_ids,
behavior_vector, fitness, promoted, created_at
FROM programs WHERE id = $1`, id).Scan(
&p.ID, &p.Code, &p.Language, &p.Island, &p.Generation,
&parentJSON, pq.Array(&p.BehaviorVector), &p.Fitness, &p.Promoted, &p.CreatedAt,
)
if err == sql.ErrNoRows {
return nil, nil
}
if err != nil {
return nil, fmt.Errorf("get program %d: %w", id, err)
}
if err := json.Unmarshal([]byte(parentJSON), &p.ParentIDs); err != nil {
return nil, fmt.Errorf("unmarshal parent_ids: %w", err)
}
return p, nil
}
// ListByIsland returns all programs on the given island ordered by fitness desc.
func (s *Store) ListByIsland(ctx context.Context, island string) ([]*Program, error) {
rows, err := s.db.QueryContext(ctx, `
SELECT id, code, language, island, generation, parent_ids,
behavior_vector, fitness, promoted, created_at
FROM programs WHERE island = $1
ORDER BY fitness DESC`, island)
if err != nil {
return nil, fmt.Errorf("list programs on %s: %w", island, err)
}
defer rows.Close()
var programs []*Program
for rows.Next() {
p := &Program{}
var parentJSON string
if err := rows.Scan(
&p.ID, &p.Code, &p.Language, &p.Island, &p.Generation,
&parentJSON, pq.Array(&p.BehaviorVector), &p.Fitness, &p.Promoted, &p.CreatedAt,
); err != nil {
return nil, fmt.Errorf("scan program: %w", err)
}
if err := json.Unmarshal([]byte(parentJSON), &p.ParentIDs); err != nil {
return nil, fmt.Errorf("unmarshal parent_ids: %w", err)
}
programs = append(programs, p)
}
return programs, rows.Err()
}
// UpdateFitness updates the fitness score and behavior vector of a program.
func (s *Store) UpdateFitness(ctx context.Context, id int64, fitness float64, behaviorVec []float64) error {
_, err := s.db.ExecContext(ctx, `
UPDATE programs SET fitness = $1, behavior_vector = $2 WHERE id = $3`,
fitness, pq.Array(behaviorVec), id,
)
if err != nil {
return fmt.Errorf("update fitness for program %d: %w", id, err)
}
return nil
}
// SetPromoted marks a program as promoted to the live bot fleet.
func (s *Store) SetPromoted(ctx context.Context, id int64) error {
_, err := s.db.ExecContext(ctx, `UPDATE programs SET promoted = TRUE WHERE id = $1`, id)
if err != nil {
return fmt.Errorf("set promoted for program %d: %w", id, err)
}
return nil
}
// CountByIsland returns the number of programs on each island.
func (s *Store) CountByIsland(ctx context.Context) (map[string]int, error) {
rows, err := s.db.QueryContext(ctx,
`SELECT island, COUNT(*) FROM programs GROUP BY island`)
if err != nil {
return nil, fmt.Errorf("count by island: %w", err)
}
defer rows.Close()
counts := make(map[string]int)
for rows.Next() {
var island string
var count int
if err := rows.Scan(&island, &count); err != nil {
return nil, fmt.Errorf("scan island count: %w", err)
}
counts[island] = count
}
return counts, rows.Err()
}
// TotalCount returns the total number of programs across all islands.
func (s *Store) TotalCount(ctx context.Context) (int, error) {
var n int
err := s.db.QueryRowContext(ctx, `SELECT COUNT(*) FROM programs`).Scan(&n)
if err != nil {
return 0, fmt.Errorf("total count: %w", err)
}
return n, nil
}