1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.2 KiB
Go

package main
import (
"flag"
"fmt"
"io"
"os"
"github.com/rqlite/rqlite/v8/db/wal"
)
const name = `walr`
const desc = `walr is a tool for displaying information about WAL files.`
func init() {
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "\n%s\n\n", desc)
fmt.Fprintf(os.Stderr, "Usage: %s <Path to WAL file>\n", name)
flag.PrintDefaults()
}
}
func main() {
flag.Parse()
if flag.NArg() == 0 {
flag.Usage()
os.Exit(1)
}
walPath := flag.Args()[0]
walFD, err := os.Open(walPath)
if err != nil {
fmt.Println("failed to open WAL file:", err)
os.Exit(1)
}
r := wal.NewReader(walFD)
if err := r.ReadHeader(); err != nil {
fmt.Println("failed to read WAL header:", err)
os.Exit(1)
}
1 year ago
fmt.Println("WAL page size:", r.PageSize())
nFrames := 0
nCommits := 0
uniquePgs := make(map[uint32]struct{})
buf := make([]byte, r.PageSize())
for {
pgno, commit, err := r.ReadFrame(buf)
if err == io.EOF {
break
} else if err != nil {
fmt.Println("failed to read WAL frame:", err)
os.Exit(1)
}
fmt.Println("pgno:", pgno, "commit:", commit)
uniquePgs[pgno] = struct{}{}
nFrames++
if commit != 0 {
nCommits++
}
}
fmt.Printf("Found %d WAL frames, %d unique pages, %d commit frames\n", nFrames, len(uniquePgs), nCommits)
}