mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 07:12:16 +00:00
* use increment and decrement operators. * remove unnecessary else branches. * fix package comment with leading space. * fix receiver names. * fix error strings. * remove omittable code. * remove redundant return statement. * Revert changes (code is generated.) * use cfg as receiver name for all config-related types. * use lsi as the receiver name for the LastSignedInfo type.
60 lines
1.1 KiB
Go
60 lines
1.1 KiB
Go
/*
|
|
wal2json converts binary WAL file to JSON.
|
|
|
|
Usage:
|
|
wal2json <path-to-wal>
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
cs "github.com/tendermint/tendermint/consensus"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) < 2 {
|
|
fmt.Println("missing one argument: <path-to-wal>")
|
|
os.Exit(1)
|
|
}
|
|
|
|
f, err := os.Open(os.Args[1])
|
|
if err != nil {
|
|
panic(fmt.Errorf("failed to open WAL file: %v", err))
|
|
}
|
|
defer f.Close()
|
|
|
|
dec := cs.NewWALDecoder(f)
|
|
for {
|
|
msg, err := dec.Decode()
|
|
if err == io.EOF {
|
|
break
|
|
} else if err != nil {
|
|
panic(fmt.Errorf("failed to decode msg: %v", err))
|
|
}
|
|
|
|
json, err := json.Marshal(msg)
|
|
if err != nil {
|
|
panic(fmt.Errorf("failed to marshal msg: %v", err))
|
|
}
|
|
|
|
_, err = os.Stdout.Write(json)
|
|
if err == nil {
|
|
_, err = os.Stdout.Write([]byte("\n"))
|
|
}
|
|
if err == nil {
|
|
if end, ok := msg.Msg.(cs.EndHeightMessage); ok {
|
|
_, err = os.Stdout.Write([]byte(fmt.Sprintf("ENDHEIGHT %d\n", end.Height))) // nolint: errcheck, gas
|
|
}
|
|
}
|
|
if err != nil {
|
|
fmt.Println("Failed to write message", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
}
|