summaryrefslogtreecommitdiff
path: root/spew/format.go
diff options
context:
space:
mode:
authorDave Collins <[email protected]>2013-01-10 20:31:03 -0600
committerDave Collins <[email protected]>2013-01-10 20:39:05 -0600
commit184d118062e467401f87c22ea4034135cf508529 (patch)
tree9ebc419e52747bff3f6901b15ce3793a30258cbc /spew/format.go
parent04998fcda361bb6a087d58560bfa03ec3038529f (diff)
Add config pointers to format and dump states.
This paves the way to support individual configuration options through a separate type while still providing the simple global config and package level methods.
Diffstat (limited to 'spew/format.go')
-rw-r--r--spew/format.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/spew/format.go b/spew/format.go
index f97e454..604df9a 100644
--- a/spew/format.go
+++ b/spew/format.go
@@ -37,6 +37,7 @@ type formatState struct {
depth int
pointers map[uintptr]int // Holds map of points and depth they were seen at
fs fmt.State
+ cs *ConfigState
}
// buildDefaultFormat recreates the original format string without precision
@@ -175,9 +176,9 @@ func (f *formatState) format(v reflect.Value) {
// Call error/Stringer interfaces if they exist and the handle methods
// flag is enabled.
kind := v.Kind()
- if !Config.DisableMethods {
+ if !f.cs.DisableMethods {
if (kind != reflect.Invalid) && (kind != reflect.Interface) {
- if handled := handleMethods(&f.buffer, v); handled {
+ if handled := handleMethods(f.cs, &f.buffer, v); handled {
return
}
}
@@ -211,7 +212,7 @@ func (f *formatState) format(v reflect.Value) {
case reflect.Array, reflect.Slice:
f.buffer.WriteRune('[')
f.depth++
- if (Config.MaxDepth != 0) && (f.depth > Config.MaxDepth) {
+ if (f.cs.MaxDepth != 0) && (f.depth > f.cs.MaxDepth) {
f.buffer.Write(maxShortBytes)
} else {
numEntries := v.Len()
@@ -234,7 +235,7 @@ func (f *formatState) format(v reflect.Value) {
case reflect.Map:
f.buffer.Write(openMapBytes)
f.depth++
- if (Config.MaxDepth != 0) && (f.depth > Config.MaxDepth) {
+ if (f.cs.MaxDepth != 0) && (f.depth > f.cs.MaxDepth) {
f.buffer.Write(maxShortBytes)
} else {
keys := v.MapKeys()
@@ -257,7 +258,7 @@ func (f *formatState) format(v reflect.Value) {
numFields := v.NumField()
f.buffer.WriteRune('{')
f.depth++
- if (Config.MaxDepth != 0) && (f.depth > Config.MaxDepth) {
+ if (f.cs.MaxDepth != 0) && (f.depth > f.cs.MaxDepth) {
f.buffer.Write(maxShortBytes)
} else {
vt := v.Type()
@@ -331,8 +332,8 @@ Typically this function shouldn't be called directly. It is much easier to make
use of the custom formatter by calling one of the convenience functions such as
Printf, Println, or Printf.
*/
-func NewFormatter(v interface{}) (f fmt.Formatter) {
- fs := &formatState{value: v}
+func NewFormatter(v interface{}) fmt.Formatter {
+ fs := &formatState{value: v, cs: &Config}
fs.pointers = make(map[uintptr]int)
return fs
}