From 4a1ccd48368bc73dd4ed53e91792ad1716a1adde Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 29 Dec 2009 14:03:33 +1100 Subject: add a debugging printer to the gob package. used only for debugging, debug.go is not normally part of the package source. also add a dump program to call it. R=rsc CC=golang-dev http://codereview.appspot.com/183075 --- src/pkg/gob/dump.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/pkg/gob/dump.go (limited to 'src/pkg/gob/dump.go') diff --git a/src/pkg/gob/dump.go b/src/pkg/gob/dump.go new file mode 100644 index 000000000..a05510566 --- /dev/null +++ b/src/pkg/gob/dump.go @@ -0,0 +1,22 @@ +package main + +// Need to compile package gob with debug.go to build this program. + +import ( + "fmt" + "gob" + "os" +) + +func main() { + var err os.Error + file := os.Stdin + if len(os.Args) > 1 { + file, err = os.Open(os.Args[1], os.O_RDONLY, 0) + if err != nil { + fmt.Fprintf(os.Stderr, "dump: %s\n", err) + os.Exit(1) + } + } + gob.Debug(file) +} -- cgit v1.2.3