diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-10 23:07:27 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-10 23:07:27 +0200 |
| commit | db75c8b17549fdfa23cc8622770d257fa0d7420f (patch) | |
| tree | 23d174685c0deaa63a674e9e40f1141602b30d86 | |
| parent | 5f246f7af40ff9875274624b7f392eff22313e77 (diff) | |
file: document File interface semantics (task 399)
| -rw-r--r-- | internal/file/file.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/internal/file/file.go b/internal/file/file.go index 8510b61..ab67fe2 100644 --- a/internal/file/file.go +++ b/internal/file/file.go @@ -12,6 +12,19 @@ import ( ) // File is the common interface for file-like syscall payload representations. +// +// Implementations may represent either a live file descriptor-backed handle +// (FdFile) or partial path metadata for syscalls that do not resolve to a +// stable descriptor (for example rename-like or pathname-only events). +// +// Semantics: +// - Name returns the best single-path identifier for the event. For +// rename-like events this is the "new" path; for pathname-only events it is +// the observed pathname. +// - Flags returns open flags when known, otherwise unknownFlag. +// - FD returns the tracked file descriptor when one exists, otherwise -1. +// - String returns a human-readable representation suitable for TUI/CSV use +// and should remain informative even when Name or FD are unavailable. type File interface { String() string Name() string |
