summaryrefslogtreecommitdiff
path: root/src/pkg/gob/dump.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-12-29 14:03:33 +1100
committerRob Pike <r@golang.org>2009-12-29 14:03:33 +1100
commit4a1ccd48368bc73dd4ed53e91792ad1716a1adde (patch)
tree872c1e5b21e95e7821f4d2d79de4051e967ea784 /src/pkg/gob/dump.go
parentfbc974f5c2061dc8467a87a0f22d4c7288485e3d (diff)
downloadgolang-4a1ccd48368bc73dd4ed53e91792ad1716a1adde.tar.gz
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
Diffstat (limited to 'src/pkg/gob/dump.go')
-rw-r--r--src/pkg/gob/dump.go22
1 files changed, 22 insertions, 0 deletions
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)
+}