Move module declaration and all internal imports from github.com/Snider/Borg to forge.lthn.ai/Snider/Borg. Also updates Enchantrix dependency path to forge.lthn.ai/Snider/Enchantrix. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
50 lines
940 B
Go
50 lines
940 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io/fs"
|
|
"os"
|
|
|
|
"forge.lthn.ai/Snider/Borg/pkg/compress"
|
|
"forge.lthn.ai/Snider/Borg/pkg/datanode"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) != 2 {
|
|
fmt.Println("Usage: go run inspect_datanode.go <path to .dat file>")
|
|
os.Exit(1)
|
|
}
|
|
|
|
datFile := os.Args[1]
|
|
|
|
rawData, err := os.ReadFile(datFile)
|
|
if err != nil {
|
|
fmt.Printf("Error reading .dat file: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
data, err := compress.Decompress(rawData)
|
|
if err != nil {
|
|
fmt.Printf("Error decompressing data: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
dn, err := datanode.FromTar(data)
|
|
if err != nil {
|
|
fmt.Printf("Error creating DataNode from tarball: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
fmt.Printf("Contents of %s:\n", datFile)
|
|
err = dn.Walk(".", func(path string, d fs.DirEntry, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Println(path)
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
fmt.Printf("Error walking DataNode: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|