mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 23:07:14 +02:00
Change the dump code so that it hides the values of variable definitions if they're large. This means that godoc.org should be able to deal with the output, and the godoc output is readable without needing to read through a huge struct literal definition. Other approaches might be to always generate an extra variable (seems unnecessary) or to pass to writer explicitly to the dump methods rather than swapping s.w out temporarily. The former seems unnecessarily intrusive to the usual output; the latter seemed unnecessarily intrusive to the source itself. YMMV.
565 lines
12 KiB
Go
565 lines
12 KiB
Go
/*
|
|
Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Package dump can dump a Go data structure to Go source file, so that it can
|
|
// be statically embedded into other code.
|
|
package dump
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"reflect"
|
|
"regexp"
|
|
"sort"
|
|
"strconv"
|
|
)
|
|
|
|
var packageNameStripperRegexp = regexp.MustCompile("\\b[a-zA-Z_]+[a-zA-Z_0-9]+\\.")
|
|
|
|
// Options represents configuration option
|
|
type Options struct {
|
|
StripPackageNames bool
|
|
HidePrivateFields bool
|
|
HomePackage string
|
|
VariableName string
|
|
VariableDescription string
|
|
}
|
|
|
|
// Config is the default config used when calling Dump
|
|
var Config = Options{
|
|
StripPackageNames: false,
|
|
HidePrivateFields: true,
|
|
VariableName: "Obj",
|
|
VariableDescription: "",
|
|
}
|
|
|
|
type dumpState struct {
|
|
w io.Writer
|
|
depth int
|
|
config *Options
|
|
|
|
allPointers []uintptr
|
|
visitedPointers []uintptr
|
|
|
|
reusedPointers []uintptr
|
|
primitivePointers []uintptr
|
|
|
|
currentPointerName string
|
|
homePackageRegexp *regexp.Regexp
|
|
}
|
|
|
|
func (s *dumpState) indent() {
|
|
s.w.Write(bytes.Repeat([]byte("\t"), s.depth))
|
|
}
|
|
|
|
func (s *dumpState) newline() {
|
|
s.w.Write([]byte("\n"))
|
|
}
|
|
|
|
func (s *dumpState) dumpType(v reflect.Value) {
|
|
typeName := v.Type().String()
|
|
if s.config.StripPackageNames {
|
|
typeName = packageNameStripperRegexp.ReplaceAllLiteralString(typeName, "")
|
|
} else if s.homePackageRegexp != nil {
|
|
typeName = s.homePackageRegexp.ReplaceAllLiteralString(typeName, "")
|
|
}
|
|
s.w.Write([]byte(typeName))
|
|
}
|
|
|
|
func (s *dumpState) dumpSlice(v reflect.Value) {
|
|
s.dumpType(v)
|
|
numEntries := v.Len()
|
|
if numEntries == 0 {
|
|
s.w.Write([]byte("{}"))
|
|
return
|
|
}
|
|
s.w.Write([]byte("{"))
|
|
s.newline()
|
|
s.depth++
|
|
for i := 0; i < numEntries; i++ {
|
|
s.indent()
|
|
s.dumpVal(v.Index(i))
|
|
s.w.Write([]byte(","))
|
|
s.newline()
|
|
}
|
|
s.depth--
|
|
s.indent()
|
|
s.w.Write([]byte("}"))
|
|
}
|
|
|
|
func (s *dumpState) dumpStruct(v reflect.Value) {
|
|
dumpPreamble := func() {
|
|
s.dumpType(v)
|
|
s.w.Write([]byte("{"))
|
|
s.newline()
|
|
s.depth++
|
|
}
|
|
preambleDumped := false
|
|
vt := v.Type()
|
|
numFields := v.NumField()
|
|
for i := 0; i < numFields; i++ {
|
|
vtf := vt.Field(i)
|
|
if s.config.HidePrivateFields && vtf.PkgPath != "" {
|
|
continue
|
|
}
|
|
if !preambleDumped {
|
|
dumpPreamble()
|
|
preambleDumped = true
|
|
}
|
|
s.indent()
|
|
s.w.Write([]byte(vtf.Name))
|
|
s.w.Write([]byte(": "))
|
|
s.dumpVal(v.Field(i))
|
|
s.w.Write([]byte(","))
|
|
s.newline()
|
|
}
|
|
if preambleDumped {
|
|
s.depth--
|
|
s.indent()
|
|
s.w.Write([]byte("}"))
|
|
} else {
|
|
// There were no fields dumped
|
|
s.dumpType(v)
|
|
s.w.Write([]byte("{}"))
|
|
}
|
|
}
|
|
|
|
func (s *dumpState) dumpMap(v reflect.Value) {
|
|
s.dumpType(v)
|
|
s.w.Write([]byte("{"))
|
|
s.newline()
|
|
s.depth++
|
|
keys := v.MapKeys()
|
|
sort.Sort(mapKeySorter{keys})
|
|
for _, key := range keys {
|
|
s.indent()
|
|
s.dumpVal(key)
|
|
s.w.Write([]byte(": "))
|
|
s.dumpVal(v.MapIndex(key))
|
|
s.w.Write([]byte(","))
|
|
s.newline()
|
|
}
|
|
s.depth--
|
|
s.indent()
|
|
s.w.Write([]byte("}"))
|
|
}
|
|
|
|
func (s *dumpState) dump(value interface{}) {
|
|
writeVar := func() {
|
|
if s.config.VariableDescription != "" {
|
|
fmt.Fprintf(s.w, "\n// %s\n", s.config.VariableDescription)
|
|
}
|
|
s.w.Write([]byte("var " + s.config.VariableName + " = "))
|
|
}
|
|
|
|
if value == nil {
|
|
writeVar()
|
|
printNil(s.w)
|
|
s.newline()
|
|
return
|
|
}
|
|
v := reflect.ValueOf(value)
|
|
|
|
s.dumpPrimitivePointerVal(v)
|
|
s.visitedPointers = []uintptr{}
|
|
|
|
s.dumpReusedPointerVal(v)
|
|
|
|
writeVar()
|
|
if v.Kind() == reflect.Ptr && v.IsNil() {
|
|
printNil(s.w)
|
|
} else {
|
|
// Replace the writer with a temporary buffer so that
|
|
// we can see how big the output is. If it's too big,
|
|
// we use an intermediate value so that godoc output
|
|
// isn't swamped by the literal.
|
|
oldWriter := s.w
|
|
buf := new(bytes.Buffer)
|
|
s.w = buf
|
|
s.dumpVal(v)
|
|
s.w = oldWriter
|
|
if buf.Len() > 100 {
|
|
s.w.Write([]byte("_" + s.config.VariableName))
|
|
s.newline()
|
|
s.w.Write([]byte("var _" + s.config.VariableName + " = "))
|
|
}
|
|
s.w.Write(buf.Bytes())
|
|
}
|
|
s.newline()
|
|
}
|
|
|
|
func (s *dumpState) printPrimitivePointer(value reflect.Value, pointerName string) {
|
|
v := deInterface(value)
|
|
|
|
s.w.Write([]byte("var " + pointerName + "Var" + " = "))
|
|
switch v.Kind() {
|
|
case reflect.Bool:
|
|
printBool(s.w, v.Bool())
|
|
|
|
case reflect.Int:
|
|
printInt(s.w, v)
|
|
case reflect.Int8:
|
|
printInt(s.w, v)
|
|
case reflect.Int16:
|
|
printInt(s.w, v)
|
|
case reflect.Int32:
|
|
printInt(s.w, v)
|
|
case reflect.Int64:
|
|
printInt(s.w, v)
|
|
|
|
case reflect.Uint:
|
|
printUint(s.w, v)
|
|
case reflect.Uint8:
|
|
printUint(s.w, v)
|
|
case reflect.Uint16:
|
|
printUint(s.w, v)
|
|
case reflect.Uint32:
|
|
printUint(s.w, v)
|
|
case reflect.Uint64:
|
|
printUint(s.w, v)
|
|
|
|
case reflect.Float32:
|
|
printFloat(s.w, v.Float(), 32, "float32")
|
|
case reflect.Float64:
|
|
printFloat(s.w, v.Float(), 64, "float64")
|
|
|
|
case reflect.Complex64:
|
|
printComplex(s.w, v.Complex(), 32)
|
|
case reflect.Complex128:
|
|
printComplex(s.w, v.Complex(), 64)
|
|
|
|
case reflect.String:
|
|
s.w.Write([]byte(strconv.Quote(v.String())))
|
|
}
|
|
|
|
s.newline()
|
|
s.w.Write([]byte("var " + pointerName + " = &" + pointerName + "Var"))
|
|
s.newline()
|
|
}
|
|
|
|
func (s *dumpState) dumpPrimitivePointerVal(value reflect.Value) {
|
|
if value.Kind() == reflect.Ptr && value.IsNil() {
|
|
return
|
|
}
|
|
v := deInterface(value)
|
|
kind := v.Kind()
|
|
|
|
switch kind {
|
|
case reflect.Invalid:
|
|
// Do nothing. We should never get here since invalid has already
|
|
// been handled above.
|
|
s.w.Write([]byte("<invalid>"))
|
|
|
|
case reflect.Slice:
|
|
if v.IsNil() {
|
|
break
|
|
}
|
|
fallthrough
|
|
|
|
case reflect.Array:
|
|
for i := 0; i < v.Len(); i++ {
|
|
s.dumpPrimitivePointerVal(v.Index(i))
|
|
}
|
|
|
|
case reflect.Map:
|
|
keys := v.MapKeys()
|
|
sort.Sort(mapKeySorter{keys})
|
|
for _, key := range keys {
|
|
s.dumpPrimitivePointerVal(v.MapIndex(key))
|
|
}
|
|
|
|
case reflect.Struct:
|
|
for i := 0; i < v.NumField(); i++ {
|
|
s.dumpPrimitivePointerVal(v.Field(i))
|
|
}
|
|
|
|
case reflect.Ptr:
|
|
pointerName, isPrimitive, isFirstVisit := s.nameForPointer(v), s.isPrimitivePointer(v), s.visitPointerAndCheckIfFirstTime(v)
|
|
if isPrimitive && isFirstVisit {
|
|
s.printPrimitivePointer(v.Elem(), pointerName)
|
|
} else {
|
|
s.dumpPrimitivePointerVal(v.Elem())
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *dumpState) dumpReusedPointerVal(value reflect.Value) {
|
|
if value.Kind() == reflect.Ptr && value.IsNil() {
|
|
return
|
|
}
|
|
|
|
v := deInterface(value)
|
|
kind := v.Kind()
|
|
|
|
switch kind {
|
|
case reflect.Invalid:
|
|
// Do nothing. We should never get here since invalid has already
|
|
// been handled above.
|
|
s.w.Write([]byte("<invalid>"))
|
|
|
|
case reflect.Slice:
|
|
if v.IsNil() {
|
|
break
|
|
}
|
|
fallthrough
|
|
|
|
case reflect.Array:
|
|
for i := 0; i < v.Len(); i++ {
|
|
s.dumpReusedPointerVal(v.Index(i))
|
|
}
|
|
|
|
case reflect.Map:
|
|
keys := v.MapKeys()
|
|
sort.Sort(mapKeySorter{keys})
|
|
for _, key := range keys {
|
|
s.dumpReusedPointerVal(v.MapIndex(key))
|
|
}
|
|
|
|
case reflect.Struct:
|
|
for i := 0; i < v.NumField(); i++ {
|
|
s.dumpReusedPointerVal(v.Field(i))
|
|
}
|
|
|
|
case reflect.Ptr:
|
|
pointerName, isReused, isPrimitive, isFirstVisit := s.nameForPointer(v), s.isReusedPointer(v), s.isPrimitivePointer(v), s.visitPointerAndCheckIfFirstTime(v)
|
|
if isReused && !isPrimitive && isFirstVisit {
|
|
s.w.Write([]byte("var " + pointerName + " = &"))
|
|
s.dumpVal(v.Elem())
|
|
s.newline()
|
|
} else {
|
|
s.dumpReusedPointerVal(v.Elem())
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *dumpState) dumpVal(value reflect.Value) {
|
|
if value.Kind() == reflect.Ptr && value.IsNil() {
|
|
s.w.Write([]byte("nil"))
|
|
return
|
|
}
|
|
|
|
v := deInterface(value)
|
|
kind := v.Kind()
|
|
switch kind {
|
|
case reflect.Invalid:
|
|
// Do nothing. We should never get here since invalid has already
|
|
// been handled above.
|
|
s.w.Write([]byte("<invalid>"))
|
|
|
|
case reflect.Bool:
|
|
printBool(s.w, v.Bool())
|
|
|
|
case reflect.Int:
|
|
printInt(s.w, v)
|
|
case reflect.Int8:
|
|
printInt(s.w, v)
|
|
case reflect.Int16:
|
|
printInt(s.w, v)
|
|
case reflect.Int32:
|
|
printInt(s.w, v)
|
|
case reflect.Int64:
|
|
printInt(s.w, v)
|
|
|
|
case reflect.Uint:
|
|
printUint(s.w, v)
|
|
case reflect.Uint8:
|
|
printUint(s.w, v)
|
|
case reflect.Uint16:
|
|
printUint(s.w, v)
|
|
case reflect.Uint32:
|
|
printUint(s.w, v)
|
|
case reflect.Uint64:
|
|
printUint(s.w, v)
|
|
|
|
case reflect.Float32:
|
|
printFloat(s.w, v.Float(), 32, "float32")
|
|
case reflect.Float64:
|
|
printFloat(s.w, v.Float(), 64, "float64")
|
|
|
|
case reflect.Complex64:
|
|
printComplex(s.w, v.Complex(), 32)
|
|
case reflect.Complex128:
|
|
printComplex(s.w, v.Complex(), 64)
|
|
|
|
case reflect.String:
|
|
s.w.Write([]byte(strconv.Quote(v.String())))
|
|
|
|
case reflect.Slice:
|
|
if v.IsNil() {
|
|
printNil(s.w)
|
|
break
|
|
}
|
|
fallthrough
|
|
|
|
case reflect.Array:
|
|
s.dumpSlice(v)
|
|
|
|
case reflect.Interface:
|
|
// The only time we should get here is for nil interfaces due to
|
|
// unpackValue calls.
|
|
if v.IsNil() {
|
|
printNil(s.w)
|
|
}
|
|
|
|
case reflect.Ptr:
|
|
pointerName, isPrimitive, isReused := s.nameForPointer(v), s.isPrimitivePointer(v), s.isReusedPointer(v)
|
|
if isPrimitive || isReused {
|
|
s.w.Write([]byte(pointerName))
|
|
} else {
|
|
s.w.Write([]byte("&"))
|
|
s.dumpVal(v.Elem())
|
|
}
|
|
|
|
case reflect.Map:
|
|
s.dumpMap(v)
|
|
|
|
case reflect.Struct:
|
|
s.dumpStruct(v)
|
|
|
|
default:
|
|
if v.CanInterface() {
|
|
fmt.Fprintf(s.w, "%v", v.Interface())
|
|
} else {
|
|
fmt.Fprintf(s.w, "%v", v.String())
|
|
}
|
|
}
|
|
}
|
|
|
|
// call to signal that the pointer is being visited, returns true if this is the
|
|
// first visit to that pointer. Used to detect when to output the entire contents
|
|
// behind a pointer (the first time), and when to just emit a name (all other times)
|
|
func (s *dumpState) visitPointerAndCheckIfItIsTheFirstTime(ptr uintptr) bool {
|
|
for _, addr := range s.visitedPointers {
|
|
if addr == ptr {
|
|
return false
|
|
}
|
|
}
|
|
s.visitedPointers = append(s.visitedPointers, ptr)
|
|
return true
|
|
}
|
|
|
|
func (s *dumpState) nameForPointer(v reflect.Value) string {
|
|
if isPointerValue(v) {
|
|
ptr := v.Pointer()
|
|
for i, addr := range s.allPointers {
|
|
if ptr == addr {
|
|
return fmt.Sprintf("p%d", i)
|
|
}
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (s *dumpState) isPrimitivePointer(v reflect.Value) bool {
|
|
if isPointerValue(v) {
|
|
ptr := v.Pointer()
|
|
for _, addr := range s.primitivePointers {
|
|
if addr == ptr {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (s *dumpState) isReusedPointer(v reflect.Value) bool {
|
|
if isPointerValue(v) {
|
|
ptr := v.Pointer()
|
|
for _, addr := range s.reusedPointers {
|
|
if addr == ptr {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (s *dumpState) visitPointerAndCheckIfFirstTime(v reflect.Value) bool {
|
|
if isPointerValue(v) {
|
|
ptr := v.Pointer()
|
|
for _, addr := range s.visitedPointers {
|
|
if addr == ptr {
|
|
return false
|
|
}
|
|
}
|
|
s.visitedPointers = append(s.visitedPointers, ptr)
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// prepares a new state object for dumping the provided value
|
|
func newDumpState(value interface{}, options *Options) *dumpState {
|
|
result := &dumpState{
|
|
config: options,
|
|
}
|
|
|
|
result.allPointers, result.reusedPointers, result.primitivePointers = GetPointers(reflect.ValueOf(value))
|
|
|
|
if options.HomePackage != "" {
|
|
result.homePackageRegexp = regexp.MustCompile(fmt.Sprintf("\\b%s\\.", options.HomePackage))
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
// Dump a value to stdout
|
|
func Dump(value interface{}) {
|
|
(&Config).Dump(value)
|
|
}
|
|
|
|
// Sdump dumps a value to a string
|
|
func Sdump(value interface{}) string {
|
|
return (&Config).Sdump(value)
|
|
}
|
|
|
|
// Dump a value to stdout according to the options
|
|
func (o Options) Dump(value interface{}) {
|
|
|
|
state := newDumpState(value, &o)
|
|
state.w = os.Stdout
|
|
state.dump(value)
|
|
}
|
|
|
|
// Sdump dumps a value to a string according to the options
|
|
func (o Options) Sdump(value interface{}) string {
|
|
buf := new(bytes.Buffer)
|
|
|
|
state := newDumpState(value, &o)
|
|
state.w = buf
|
|
state.dump(value)
|
|
|
|
return buf.String()
|
|
}
|
|
|
|
type mapKeySorter struct {
|
|
keys []reflect.Value
|
|
}
|
|
|
|
func (s mapKeySorter) Len() int {
|
|
return len(s.keys)
|
|
}
|
|
|
|
func (s mapKeySorter) Swap(i, j int) {
|
|
s.keys[i], s.keys[j] = s.keys[j], s.keys[i]
|
|
}
|
|
|
|
func (s mapKeySorter) Less(i, j int) bool {
|
|
return fmt.Sprintf("%s", s.keys[i].Interface()) < fmt.Sprintf("%s", s.keys[j].Interface())
|
|
}
|