From ae2df2c450dd655b93a950124b6ab16e2b4d967b Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 25 Sep 2025 13:46:21 +0900 Subject: internal: remove sys package This package is replaced by container/stub. Remove and replace it with unexported implementation for the upcoming test suite rewrite. Signed-off-by: Ophestra --- internal/sys/std.go | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 internal/sys/std.go (limited to 'internal/sys/std.go') diff --git a/internal/sys/std.go b/internal/sys/std.go deleted file mode 100644 index 11334c72..00000000 --- a/internal/sys/std.go +++ /dev/null @@ -1,44 +0,0 @@ -package sys - -import ( - "io/fs" - "os" - "os/exec" - "os/user" - "path/filepath" - "sync" - - "hakurei.app/container" - "hakurei.app/hst" - "hakurei.app/internal" - "hakurei.app/internal/hlog" -) - -// Std implements System using the standard library. -type Std struct { - paths hst.Paths - pathsOnce sync.Once - Hsu -} - -func (s *Std) Getuid() int { return os.Getuid() } -func (s *Std) Getgid() int { return os.Getgid() } -func (s *Std) LookupEnv(key string) (string, bool) { return os.LookupEnv(key) } -func (s *Std) TempDir() string { return os.TempDir() } -func (s *Std) LookPath(file string) (string, error) { return exec.LookPath(file) } -func (s *Std) MustExecutable() string { return container.MustExecutable() } -func (s *Std) LookupGroup(name string) (*user.Group, error) { return user.LookupGroup(name) } -func (s *Std) ReadDir(name string) ([]os.DirEntry, error) { return os.ReadDir(name) } -func (s *Std) Stat(name string) (fs.FileInfo, error) { return os.Stat(name) } -func (s *Std) Open(name string) (fs.File, error) { return os.Open(name) } -func (s *Std) EvalSymlinks(path string) (string, error) { return filepath.EvalSymlinks(path) } -func (s *Std) Exit(code int) { internal.Exit(code) } -func (s *Std) Println(v ...any) { hlog.Verbose(v...) } -func (s *Std) Printf(format string, v ...any) { hlog.Verbosef(format, v...) } - -const xdgRuntimeDir = "XDG_RUNTIME_DIR" - -func (s *Std) Paths() hst.Paths { - s.pathsOnce.Do(func() { CopyPaths(s, &s.paths, MustGetUserID(s)) }) - return s.paths -} -- cgit v1.3.1