d92349ca6e
Vision needs a second model this box does not have, so the shipped half is the part that works without one: an image arrives, is sniffed, is stored content-addressed, and is prepared for inference. The describing half is written and tested against a fake server, and refuses any endpoint that is not on this box. internal/media is the intake all three senses share — hearing and speaker recognition store their audio in the same place under the same retention. Blobs stay out of the sqlite store; only the derived text becomes a note, and only when the caller asks. Retention is enforced by an hourly prune loop rather than by a comment. The plan's RemoteProvider step is refused: no cloud model, inference stays on the box, and vision.NewLocal validates that at construction.
364 lines
10 KiB
Go
364 lines
10 KiB
Go
package media
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io/fs"
|
|
"os"
|
|
"path/filepath"
|
|
"sort"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
// DefaultMaxBytes — the per-blob cap when a store is built without one. 64 MiB
|
|
// is about an hour of 16 kHz mono PCM, which is also the hearing capture's own
|
|
// ceiling; a single item bigger than that is a mistake, not a meeting.
|
|
const DefaultMaxBytes int64 = 64 << 20
|
|
|
|
// DefaultRetention — how long a blob is kept when no retention is configured.
|
|
// Seven days is long enough to re-run a transcription that came out wrong and
|
|
// short enough that "she has a month of my meetings on disk" is never true.
|
|
const DefaultRetention = 7 * 24 * time.Hour
|
|
|
|
// Store — a content-addressed blob directory. Zero value is not usable; build
|
|
// one with Open, which creates the directory 0700. The store holds no lock and
|
|
// no cache: every operation is a filesystem call, and two writers of the same
|
|
// bytes produce the same file, so concurrent Puts do not need coordinating.
|
|
type Store struct {
|
|
dir string
|
|
maxBytes int64
|
|
retention time.Duration
|
|
now func() time.Time
|
|
}
|
|
|
|
// Open prepares a blob store rooted at dir. maxBytes ≤ 0 ⇒ DefaultMaxBytes;
|
|
// retention ≤ 0 ⇒ DefaultRetention. The directory (and every kind subdirectory
|
|
// created later) is 0700: these are recordings of people, and the daemon's user
|
|
// is the only reader.
|
|
func Open(dir string, maxBytes int64, retention time.Duration) (*Store, error) {
|
|
if strings.TrimSpace(dir) == "" {
|
|
return nil, errors.New("media: empty dir")
|
|
}
|
|
abs, err := filepath.Abs(dir)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("media: resolve dir: %w", err)
|
|
}
|
|
if err := os.MkdirAll(abs, 0o700); err != nil {
|
|
return nil, fmt.Errorf("media: create dir: %w", err)
|
|
}
|
|
if maxBytes <= 0 {
|
|
maxBytes = DefaultMaxBytes
|
|
}
|
|
if retention <= 0 {
|
|
retention = DefaultRetention
|
|
}
|
|
return &Store{dir: abs, maxBytes: maxBytes, retention: retention, now: time.Now}, nil
|
|
}
|
|
|
|
// Dir is the store root. Exported for logs and for pointing a subprocess at a
|
|
// path under it.
|
|
func (s *Store) Dir() string { return s.dir }
|
|
|
|
// Retention is the configured age limit Prune enforces.
|
|
func (s *Store) Retention() time.Duration { return s.retention }
|
|
|
|
// Put stores data and returns its Blob. The id is the sha256 of data, so
|
|
// storing the same bytes twice is idempotent: the second call rewrites the
|
|
// sidecar (keeping the ORIGINAL creation time, so a re-send cannot extend
|
|
// retention indefinitely) and returns the same id.
|
|
//
|
|
// mime is recorded as given and used only to pick a file extension; nothing
|
|
// dispatches on it. Callers that need the mime to be trustworthy sniff it
|
|
// first — see SniffImage.
|
|
func (s *Store) Put(kind Kind, mime, source string, data []byte) (Blob, error) {
|
|
if !kind.Valid() {
|
|
return Blob{}, ErrBadKind
|
|
}
|
|
if len(data) == 0 {
|
|
return Blob{}, ErrEmpty
|
|
}
|
|
if int64(len(data)) > s.maxBytes {
|
|
return Blob{}, fmt.Errorf("%w: %d > %d", ErrTooLarge, len(data), s.maxBytes)
|
|
}
|
|
sum := sha256.Sum256(data)
|
|
id := hex.EncodeToString(sum[:])
|
|
|
|
blobPath, metaPath, err := s.paths(kind, id, mime)
|
|
if err != nil {
|
|
return Blob{}, err
|
|
}
|
|
if err := os.MkdirAll(filepath.Dir(blobPath), 0o700); err != nil {
|
|
return Blob{}, fmt.Errorf("media: create bucket: %w", err)
|
|
}
|
|
|
|
b := Blob{ID: id, Kind: kind, MIME: mime, Size: int64(len(data)), Source: source,
|
|
Created: s.now().UTC(), Path: blobPath}
|
|
|
|
// A blob already here keeps its first-seen time. Re-sending the same photo
|
|
// every hour must not keep it alive past retention.
|
|
if prev, err := readMeta(metaPath); err == nil && !prev.Created.IsZero() {
|
|
b.Created = prev.Created
|
|
}
|
|
|
|
if err := writeFile(blobPath, data); err != nil {
|
|
return Blob{}, err
|
|
}
|
|
if err := writeMeta(metaPath, b); err != nil {
|
|
return Blob{}, err
|
|
}
|
|
return b, nil
|
|
}
|
|
|
|
// Get returns the blob's metadata without reading its bytes.
|
|
func (s *Store) Get(id string) (Blob, error) {
|
|
if !validID(id) {
|
|
return Blob{}, ErrBadID
|
|
}
|
|
for _, kind := range []Kind{KindImage, KindAudio} {
|
|
metaPath := filepath.Join(s.dir, string(kind), id[:2], id+".json")
|
|
b, err := readMeta(metaPath)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
p, err := s.locate(kind, id)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
b.Path = p
|
|
return b, nil
|
|
}
|
|
return Blob{}, ErrNotFound
|
|
}
|
|
|
|
// Read returns the blob's bytes together with its metadata. This is the only
|
|
// way out of the store, and it is a local read: nothing in this package can
|
|
// send bytes anywhere.
|
|
func (s *Store) Read(id string) (Blob, []byte, error) {
|
|
b, err := s.Get(id)
|
|
if err != nil {
|
|
return Blob{}, nil, err
|
|
}
|
|
data, err := os.ReadFile(b.Path)
|
|
if err != nil {
|
|
return Blob{}, nil, fmt.Errorf("media: read %s: %w", shortID(id), err)
|
|
}
|
|
return b, data, nil
|
|
}
|
|
|
|
// List returns every blob of the given kind, newest first. An empty kind lists
|
|
// both. It walks the directory; at personal volumes (tens to hundreds of items
|
|
// inside the retention window) that is cheap, and it means the sidecars are the
|
|
// single source of truth with no index to fall out of sync.
|
|
func (s *Store) List(kind Kind) ([]Blob, error) {
|
|
kinds := []Kind{KindImage, KindAudio}
|
|
if kind != "" {
|
|
if !kind.Valid() {
|
|
return nil, ErrBadKind
|
|
}
|
|
kinds = []Kind{kind}
|
|
}
|
|
var out []Blob
|
|
for _, k := range kinds {
|
|
root := filepath.Join(s.dir, string(k))
|
|
err := filepath.WalkDir(root, func(path string, d fs.DirEntry, err error) error {
|
|
if err != nil {
|
|
if errors.Is(err, fs.ErrNotExist) {
|
|
return nil // kind never used; not an error
|
|
}
|
|
return err
|
|
}
|
|
if d.IsDir() || !strings.HasSuffix(path, ".json") {
|
|
return nil
|
|
}
|
|
b, err := readMeta(path)
|
|
if err != nil {
|
|
return nil // a corrupt sidecar is skipped, not fatal
|
|
}
|
|
if p, err := s.locate(b.Kind, b.ID); err == nil {
|
|
b.Path = p
|
|
}
|
|
out = append(out, b)
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("media: list %s: %w", k, err)
|
|
}
|
|
}
|
|
sort.Slice(out, func(i, j int) bool {
|
|
if out[i].Created.Equal(out[j].Created) {
|
|
return out[i].ID < out[j].ID
|
|
}
|
|
return out[i].Created.After(out[j].Created)
|
|
})
|
|
return out, nil
|
|
}
|
|
|
|
// Delete removes a blob and its sidecar. Missing is not an error: the caller
|
|
// asked for it gone and it is gone.
|
|
func (s *Store) Delete(id string) error {
|
|
if !validID(id) {
|
|
return ErrBadID
|
|
}
|
|
for _, kind := range []Kind{KindImage, KindAudio} {
|
|
bucket := filepath.Join(s.dir, string(kind), id[:2])
|
|
entries, err := os.ReadDir(bucket)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
for _, e := range entries {
|
|
if strings.HasPrefix(e.Name(), id) {
|
|
if err := os.Remove(filepath.Join(bucket, e.Name())); err != nil && !errors.Is(err, fs.ErrNotExist) {
|
|
return fmt.Errorf("media: delete %s: %w", shortID(id), err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Prune deletes every blob older than the store's retention and reports how
|
|
// many went. It is the enforcement half of the retention promise; a caller that
|
|
// never runs it has a store that grows without bound, which is why the daemon
|
|
// runs it on the digestion tick rather than leaving it to a cron the operator
|
|
// might not add.
|
|
func (s *Store) Prune() (int, error) {
|
|
blobs, err := s.List("")
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
now := s.now()
|
|
deleted := 0
|
|
for _, b := range blobs {
|
|
if b.Age(now) <= s.retention {
|
|
continue
|
|
}
|
|
if err := s.Delete(b.ID); err != nil {
|
|
return deleted, err
|
|
}
|
|
deleted++
|
|
}
|
|
return deleted, nil
|
|
}
|
|
|
|
// paths returns the blob and sidecar paths for an id.
|
|
func (s *Store) paths(kind Kind, id, mime string) (blobPath, metaPath string, err error) {
|
|
if !validID(id) {
|
|
return "", "", ErrBadID
|
|
}
|
|
bucket := filepath.Join(s.dir, string(kind), id[:2])
|
|
return filepath.Join(bucket, id+extFor(mime, kind)), filepath.Join(bucket, id+".json"), nil
|
|
}
|
|
|
|
// locate finds the stored bytes for an id whose extension we do not know,
|
|
// because the extension came from the mime at Put time.
|
|
func (s *Store) locate(kind Kind, id string) (string, error) {
|
|
if !validID(id) {
|
|
return "", ErrBadID
|
|
}
|
|
bucket := filepath.Join(s.dir, string(kind), id[:2])
|
|
entries, err := os.ReadDir(bucket)
|
|
if err != nil {
|
|
return "", ErrNotFound
|
|
}
|
|
for _, e := range entries {
|
|
name := e.Name()
|
|
if strings.HasPrefix(name, id) && !strings.HasSuffix(name, ".json") {
|
|
return filepath.Join(bucket, name), nil
|
|
}
|
|
}
|
|
return "", ErrNotFound
|
|
}
|
|
|
|
// validID guards every path built from an id. Without it a caller-supplied id
|
|
// is a path traversal: Get("../../etc/passwd") would read outside the store.
|
|
func validID(id string) bool {
|
|
if len(id) != 64 {
|
|
return false
|
|
}
|
|
for i := 0; i < len(id); i++ {
|
|
c := id[i]
|
|
if (c < '0' || c > '9') && (c < 'a' || c > 'f') {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// extFor maps a mime to a file extension, defaulting per kind. The extension is
|
|
// cosmetic — the id is the key — but it is what makes the store browsable and
|
|
// lets a subprocess that sniffs by name (piper, some image tools) cope.
|
|
func extFor(mime string, kind Kind) string {
|
|
switch strings.ToLower(strings.TrimSpace(mime)) {
|
|
case "image/jpeg", "image/jpg":
|
|
return ".jpg"
|
|
case "image/png":
|
|
return ".png"
|
|
case "image/gif":
|
|
return ".gif"
|
|
case "image/webp":
|
|
return ".webp"
|
|
case "audio/wav", "audio/x-wav", "audio/wave":
|
|
return ".wav"
|
|
case "audio/l16", "audio/pcm":
|
|
return ".pcm"
|
|
}
|
|
if kind == KindImage {
|
|
return ".bin"
|
|
}
|
|
return ".pcm"
|
|
}
|
|
|
|
// writeFile writes data 0600 via a temp file in the same directory, so a
|
|
// crash mid-write cannot leave a truncated blob under a digest that claims
|
|
// to describe the whole thing.
|
|
func writeFile(path string, data []byte) error {
|
|
tmp, err := os.CreateTemp(filepath.Dir(path), ".tmp-*")
|
|
if err != nil {
|
|
return fmt.Errorf("media: temp: %w", err)
|
|
}
|
|
defer os.Remove(tmp.Name())
|
|
if err := tmp.Chmod(0o600); err != nil {
|
|
tmp.Close()
|
|
return fmt.Errorf("media: chmod: %w", err)
|
|
}
|
|
if _, err := tmp.Write(data); err != nil {
|
|
tmp.Close()
|
|
return fmt.Errorf("media: write: %w", err)
|
|
}
|
|
if err := tmp.Close(); err != nil {
|
|
return fmt.Errorf("media: close: %w", err)
|
|
}
|
|
if err := os.Rename(tmp.Name(), path); err != nil {
|
|
return fmt.Errorf("media: rename: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func writeMeta(path string, b Blob) error {
|
|
data, err := json.Marshal(b)
|
|
if err != nil {
|
|
return fmt.Errorf("media: marshal meta: %w", err)
|
|
}
|
|
return writeFile(path, data)
|
|
}
|
|
|
|
func readMeta(path string) (Blob, error) {
|
|
data, err := os.ReadFile(path)
|
|
if err != nil {
|
|
return Blob{}, err
|
|
}
|
|
var b Blob
|
|
if err := json.Unmarshal(data, &b); err != nil {
|
|
return Blob{}, err
|
|
}
|
|
if !validID(b.ID) || !b.Kind.Valid() {
|
|
return Blob{}, errors.New("media: corrupt sidecar")
|
|
}
|
|
b.Created = b.Created.UTC()
|
|
return b, nil
|
|
}
|