This change introduces optional compression to the `collect` commands. Users can now specify `--compression` with `gz` or `xz` to compress the output. The `serve` command has also been enhanced to transparently decompress and serve these files.
50 lines
934 B
Go
50 lines
934 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io/fs"
|
|
"os"
|
|
|
|
"github.com/Snider/Borg/pkg/compress"
|
|
"github.com/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)
|
|
}
|
|
}
|