~bigbes/lethe

ref: f0f651bfc74681988f56bd610074e1dce6dbee1c lethe/internal/collector/parser/parser.go -rw-r--r-- 438 bytes
f0f651bf — Eugene Blikh feat: add search data layer — adapter, highlight helper, hook, and tests 24 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package parser

import "sourcecraft.dev/bigbes/lethe/internal/shared/wire"

// SourceFile is a discovered transcript file under a tool-specific source root.
type SourceFile struct {
	Path string
	Size int64
}

// Parser maps one tool's on-disk transcript format into lethe wire events.
type Parser interface {
	Tool() string
	Discover(root string) ([]SourceFile, error)
	Parse(path string, since int64) ([]wire.TurnEvent, int64, error)
}