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

68 lines
1.3 KiB

7 years ago
  1. /*
  2. wal2json converts binary WAL file to JSON.
  3. Usage:
  4. wal2json <path-to-wal>
  5. */
  6. package main
  7. import (
  8. "fmt"
  9. "io"
  10. "os"
  11. "github.com/tendermint/go-amino"
  12. cs "github.com/tendermint/tendermint/consensus"
  13. "github.com/tendermint/tendermint/types"
  14. )
  15. var cdc = amino.NewCodec()
  16. func init() {
  17. cs.RegisterConsensusMessages(cdc)
  18. cs.RegisterWALMessages(cdc)
  19. types.RegisterBlockAmino(cdc)
  20. }
  21. func main() {
  22. if len(os.Args) < 2 {
  23. fmt.Println("missing one argument: <path-to-wal>")
  24. os.Exit(1)
  25. }
  26. f, err := os.Open(os.Args[1])
  27. if err != nil {
  28. panic(fmt.Errorf("failed to open WAL file: %v", err))
  29. }
  30. defer f.Close()
  31. dec := cs.NewWALDecoder(f)
  32. for {
  33. msg, err := dec.Decode()
  34. if err == io.EOF {
  35. break
  36. } else if err != nil {
  37. panic(fmt.Errorf("failed to decode msg: %v", err))
  38. }
  39. json, err := cdc.MarshalJSON(msg)
  40. if err != nil {
  41. panic(fmt.Errorf("failed to marshal msg: %v", err))
  42. }
  43. _, err = os.Stdout.Write(json)
  44. if err == nil {
  45. _, err = os.Stdout.Write([]byte("\n"))
  46. }
  47. if err == nil {
  48. if end, ok := msg.Msg.(cs.EndHeightMessage); ok {
  49. _, err = os.Stdout.Write([]byte(fmt.Sprintf("ENDHEIGHT %d\n", end.Height))) // nolint: errcheck, gas
  50. }
  51. }
  52. if err != nil {
  53. fmt.Println("Failed to write message", err)
  54. os.Exit(1)
  55. }
  56. }
  57. }