2017-11-20 09:30:52 -05:00
|
|
|
package jsoniter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
2018-07-25 04:17:02 -04:00
|
|
|
// stream is a io.Writer like object, with JSON specific write functions.
|
2017-11-20 09:30:52 -05:00
|
|
|
// Error is not returned as return value, but stored as Error member on this stream instance.
|
|
|
|
type Stream struct {
|
2018-07-25 04:17:02 -04:00
|
|
|
cfg *frozenConfig
|
|
|
|
out io.Writer
|
|
|
|
buf []byte
|
|
|
|
Error error
|
|
|
|
indention int
|
|
|
|
Attachment interface{} // open for customized encoder
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewStream create new stream instance.
|
|
|
|
// cfg can be jsoniter.ConfigDefault.
|
|
|
|
// out can be nil if write to internal buffer.
|
|
|
|
// bufSize is the initial size for the internal buffer in bytes.
|
|
|
|
func NewStream(cfg API, out io.Writer, bufSize int) *Stream {
|
|
|
|
return &Stream{
|
|
|
|
cfg: cfg.(*frozenConfig),
|
|
|
|
out: out,
|
2018-07-25 04:17:02 -04:00
|
|
|
buf: make([]byte, 0, bufSize),
|
2017-11-20 09:30:52 -05:00
|
|
|
Error: nil,
|
|
|
|
indention: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pool returns a pool can provide more stream with same configuration
|
|
|
|
func (stream *Stream) Pool() StreamPool {
|
|
|
|
return stream.cfg
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset reuse this stream instance by assign a new writer
|
|
|
|
func (stream *Stream) Reset(out io.Writer) {
|
|
|
|
stream.out = out
|
2018-07-25 04:17:02 -04:00
|
|
|
stream.buf = stream.buf[:0]
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Available returns how many bytes are unused in the buffer.
|
|
|
|
func (stream *Stream) Available() int {
|
2018-07-25 04:17:02 -04:00
|
|
|
return cap(stream.buf) - len(stream.buf)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Buffered returns the number of bytes that have been written into the current buffer.
|
|
|
|
func (stream *Stream) Buffered() int {
|
2018-07-25 04:17:02 -04:00
|
|
|
return len(stream.buf)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Buffer if writer is nil, use this method to take the result
|
|
|
|
func (stream *Stream) Buffer() []byte {
|
2018-07-25 04:17:02 -04:00
|
|
|
return stream.buf
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetBuffer allows to append to the internal buffer directly
|
|
|
|
func (stream *Stream) SetBuffer(buf []byte) {
|
|
|
|
stream.buf = buf
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write writes the contents of p into the buffer.
|
|
|
|
// It returns the number of bytes written.
|
|
|
|
// If nn < len(p), it also returns an error explaining
|
|
|
|
// why the write is short.
|
|
|
|
func (stream *Stream) Write(p []byte) (nn int, err error) {
|
2018-07-25 04:17:02 -04:00
|
|
|
stream.buf = append(stream.buf, p...)
|
|
|
|
if stream.out != nil {
|
|
|
|
nn, err = stream.out.Write(stream.buf)
|
|
|
|
stream.buf = stream.buf[nn:]
|
|
|
|
return
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
2018-07-25 04:17:02 -04:00
|
|
|
return len(p), nil
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// WriteByte writes a single byte.
|
|
|
|
func (stream *Stream) writeByte(c byte) {
|
2018-07-25 04:17:02 -04:00
|
|
|
stream.buf = append(stream.buf, c)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (stream *Stream) writeTwoBytes(c1 byte, c2 byte) {
|
2018-07-25 04:17:02 -04:00
|
|
|
stream.buf = append(stream.buf, c1, c2)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (stream *Stream) writeThreeBytes(c1 byte, c2 byte, c3 byte) {
|
2018-07-25 04:17:02 -04:00
|
|
|
stream.buf = append(stream.buf, c1, c2, c3)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (stream *Stream) writeFourBytes(c1 byte, c2 byte, c3 byte, c4 byte) {
|
2018-07-25 04:17:02 -04:00
|
|
|
stream.buf = append(stream.buf, c1, c2, c3, c4)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (stream *Stream) writeFiveBytes(c1 byte, c2 byte, c3 byte, c4 byte, c5 byte) {
|
2018-07-25 04:17:02 -04:00
|
|
|
stream.buf = append(stream.buf, c1, c2, c3, c4, c5)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Flush writes any buffered data to the underlying io.Writer.
|
|
|
|
func (stream *Stream) Flush() error {
|
|
|
|
if stream.out == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if stream.Error != nil {
|
|
|
|
return stream.Error
|
|
|
|
}
|
[20.10] vendor: github.com/json-iterator/go v1.1.12 for Go 1.18 compatibility
full diff: https://github.com/json-iterator/go/compare/0ff49de124c6f76f8494e194af75bde0f1a49a29...024077e996b048517130b21ea6bf12aa23055d3d
Fixes a nil-pointer exception on go 1.18;
```
=== FAIL: cli/context/kubernetes TestSaveLoadContexts (0.00s)
panic: runtime error: invalid memory address or nil pointer dereference [recovered]
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x40fcbc]
goroutine 19 [running]:
testing.tRunner.func1.2({0xa7e080, 0x1073930})
/usr/local/go/src/testing/testing.go:1389 +0x24e
testing.tRunner.func1()
/usr/local/go/src/testing/testing.go:1392 +0x39f
panic({0xa7e080, 0x1073930})
/usr/local/go/src/runtime/panic.go:838 +0x207
reflect.mapiternext(0x40?)
/usr/local/go/src/runtime/map.go:1378 +0x19
github.com/docker/cli/vendor/github.com/modern-go/reflect2.(*UnsafeMapIterator).UnsafeNext(0x8?)
/go/src/github.com/docker/cli/vendor/github.com/modern-go/reflect2/unsafe_map.go:136 +0x32
github.com/docker/cli/vendor/github.com/json-iterator/go.(*sortKeysMapEncoder).Encode(0xc000478930, 0xc0000ca3a8, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_map.go:293 +0x335
github.com/docker/cli/vendor/github.com/json-iterator/go.(*placeholderEncoder).Encode(0xc00046c898?, 0x95d787?, 0xc0000bae58?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:327 +0x22
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc000482630, 0xa2790c?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000482780, 0xb3a599?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*placeholderEncoder).Encode(0xc00046ca10?, 0x95d787?, 0xc0000bae58?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:327 +0x22
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc0004829f0, 0xa0fd11?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000482a50, 0x40aa15?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*sliceEncoder).Encode(0xc00047e198, 0xc0003a83c8, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_slice.go:38 +0x2bb
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc0004837a0, 0xa12e12?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000483890, 0x0?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*OptionalEncoder).Encode(0xc0003b6be0?, 0x0?, 0x0?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_optional.go:74 +0xa4
github.com/docker/cli/vendor/github.com/json-iterator/go.(*onePtrEncoder).Encode(0xc000471e30, 0xc0003a8370, 0xc000460720?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:214 +0x82
github.com/docker/cli/vendor/github.com/json-iterator/go.(*Stream).WriteVal(0xc0000bae40, {0xabe4a0, 0xc0003a8370})
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:93 +0x158
github.com/docker/cli/vendor/github.com/json-iterator/go.(*frozenConfig).Marshal(0xc0003b6be0, {0xabe4a0, 0xc0003a8370})
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/config.go:299 +0xc9
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json.(*Serializer).Encode(0xc00043aee0?, {0xc375c0?, 0xc0003a8370?}, {0xc339e0, 0xc000460210})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go:310 +0x6d
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning.(*codec).Encode(0xc0000f8480, {0xc37570?, 0xc0000bacc0}, {0xc339e0, 0xc000460210})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning.go:231 +0x926
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime.Encode({0x7f48b36ce5c0, 0xc0000f8480}, {0xc37570, 0xc0000bacc0})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/codec.go:46 +0x64
github.com/docker/cli/vendor/k8s.io/client-go/tools/clientcmd.Write(...)
/go/src/github.com/docker/cli/vendor/k8s.io/client-go/tools/clientcmd/loader.go:469
github.com/docker/cli/cli/context/kubernetes.TestSaveLoadContexts(0xc0004561a0?)
/go/src/github.com/docker/cli/cli/context/kubernetes/endpoint_test.go:75 +0xf0a
testing.tRunner(0xc0004561a0, 0xb89ea0)
/usr/local/go/src/testing/testing.go:1439 +0x102
created by testing.(*T).Run
/usr/local/go/src/testing/testing.go:1486 +0x35f
```
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-08-19 10:12:25 -04:00
|
|
|
_, err := stream.out.Write(stream.buf)
|
2017-11-20 09:30:52 -05:00
|
|
|
if err != nil {
|
2018-07-25 04:17:02 -04:00
|
|
|
if stream.Error == nil {
|
|
|
|
stream.Error = err
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
[20.10] vendor: github.com/json-iterator/go v1.1.12 for Go 1.18 compatibility
full diff: https://github.com/json-iterator/go/compare/0ff49de124c6f76f8494e194af75bde0f1a49a29...024077e996b048517130b21ea6bf12aa23055d3d
Fixes a nil-pointer exception on go 1.18;
```
=== FAIL: cli/context/kubernetes TestSaveLoadContexts (0.00s)
panic: runtime error: invalid memory address or nil pointer dereference [recovered]
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x40fcbc]
goroutine 19 [running]:
testing.tRunner.func1.2({0xa7e080, 0x1073930})
/usr/local/go/src/testing/testing.go:1389 +0x24e
testing.tRunner.func1()
/usr/local/go/src/testing/testing.go:1392 +0x39f
panic({0xa7e080, 0x1073930})
/usr/local/go/src/runtime/panic.go:838 +0x207
reflect.mapiternext(0x40?)
/usr/local/go/src/runtime/map.go:1378 +0x19
github.com/docker/cli/vendor/github.com/modern-go/reflect2.(*UnsafeMapIterator).UnsafeNext(0x8?)
/go/src/github.com/docker/cli/vendor/github.com/modern-go/reflect2/unsafe_map.go:136 +0x32
github.com/docker/cli/vendor/github.com/json-iterator/go.(*sortKeysMapEncoder).Encode(0xc000478930, 0xc0000ca3a8, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_map.go:293 +0x335
github.com/docker/cli/vendor/github.com/json-iterator/go.(*placeholderEncoder).Encode(0xc00046c898?, 0x95d787?, 0xc0000bae58?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:327 +0x22
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc000482630, 0xa2790c?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000482780, 0xb3a599?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*placeholderEncoder).Encode(0xc00046ca10?, 0x95d787?, 0xc0000bae58?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:327 +0x22
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc0004829f0, 0xa0fd11?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000482a50, 0x40aa15?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*sliceEncoder).Encode(0xc00047e198, 0xc0003a83c8, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_slice.go:38 +0x2bb
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc0004837a0, 0xa12e12?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000483890, 0x0?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*OptionalEncoder).Encode(0xc0003b6be0?, 0x0?, 0x0?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_optional.go:74 +0xa4
github.com/docker/cli/vendor/github.com/json-iterator/go.(*onePtrEncoder).Encode(0xc000471e30, 0xc0003a8370, 0xc000460720?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:214 +0x82
github.com/docker/cli/vendor/github.com/json-iterator/go.(*Stream).WriteVal(0xc0000bae40, {0xabe4a0, 0xc0003a8370})
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:93 +0x158
github.com/docker/cli/vendor/github.com/json-iterator/go.(*frozenConfig).Marshal(0xc0003b6be0, {0xabe4a0, 0xc0003a8370})
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/config.go:299 +0xc9
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json.(*Serializer).Encode(0xc00043aee0?, {0xc375c0?, 0xc0003a8370?}, {0xc339e0, 0xc000460210})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go:310 +0x6d
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning.(*codec).Encode(0xc0000f8480, {0xc37570?, 0xc0000bacc0}, {0xc339e0, 0xc000460210})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning.go:231 +0x926
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime.Encode({0x7f48b36ce5c0, 0xc0000f8480}, {0xc37570, 0xc0000bacc0})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/codec.go:46 +0x64
github.com/docker/cli/vendor/k8s.io/client-go/tools/clientcmd.Write(...)
/go/src/github.com/docker/cli/vendor/k8s.io/client-go/tools/clientcmd/loader.go:469
github.com/docker/cli/cli/context/kubernetes.TestSaveLoadContexts(0xc0004561a0?)
/go/src/github.com/docker/cli/cli/context/kubernetes/endpoint_test.go:75 +0xf0a
testing.tRunner(0xc0004561a0, 0xb89ea0)
/usr/local/go/src/testing/testing.go:1439 +0x102
created by testing.(*T).Run
/usr/local/go/src/testing/testing.go:1486 +0x35f
```
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-08-19 10:12:25 -04:00
|
|
|
stream.buf = stream.buf[:0]
|
2017-11-20 09:30:52 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteRaw write string out without quotes, just like []byte
|
|
|
|
func (stream *Stream) WriteRaw(s string) {
|
2018-07-25 04:17:02 -04:00
|
|
|
stream.buf = append(stream.buf, s...)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// WriteNil write null to stream
|
|
|
|
func (stream *Stream) WriteNil() {
|
|
|
|
stream.writeFourBytes('n', 'u', 'l', 'l')
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteTrue write true to stream
|
|
|
|
func (stream *Stream) WriteTrue() {
|
|
|
|
stream.writeFourBytes('t', 'r', 'u', 'e')
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteFalse write false to stream
|
|
|
|
func (stream *Stream) WriteFalse() {
|
|
|
|
stream.writeFiveBytes('f', 'a', 'l', 's', 'e')
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteBool write true or false into stream
|
|
|
|
func (stream *Stream) WriteBool(val bool) {
|
|
|
|
if val {
|
|
|
|
stream.WriteTrue()
|
|
|
|
} else {
|
|
|
|
stream.WriteFalse()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteObjectStart write { with possible indention
|
|
|
|
func (stream *Stream) WriteObjectStart() {
|
|
|
|
stream.indention += stream.cfg.indentionStep
|
|
|
|
stream.writeByte('{')
|
|
|
|
stream.writeIndention(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteObjectField write "field": with possible indention
|
|
|
|
func (stream *Stream) WriteObjectField(field string) {
|
|
|
|
stream.WriteString(field)
|
|
|
|
if stream.indention > 0 {
|
|
|
|
stream.writeTwoBytes(':', ' ')
|
|
|
|
} else {
|
|
|
|
stream.writeByte(':')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteObjectEnd write } with possible indention
|
|
|
|
func (stream *Stream) WriteObjectEnd() {
|
|
|
|
stream.writeIndention(stream.cfg.indentionStep)
|
|
|
|
stream.indention -= stream.cfg.indentionStep
|
|
|
|
stream.writeByte('}')
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteEmptyObject write {}
|
|
|
|
func (stream *Stream) WriteEmptyObject() {
|
|
|
|
stream.writeByte('{')
|
|
|
|
stream.writeByte('}')
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteMore write , with possible indention
|
|
|
|
func (stream *Stream) WriteMore() {
|
|
|
|
stream.writeByte(',')
|
|
|
|
stream.writeIndention(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteArrayStart write [ with possible indention
|
|
|
|
func (stream *Stream) WriteArrayStart() {
|
|
|
|
stream.indention += stream.cfg.indentionStep
|
|
|
|
stream.writeByte('[')
|
|
|
|
stream.writeIndention(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteEmptyArray write []
|
|
|
|
func (stream *Stream) WriteEmptyArray() {
|
|
|
|
stream.writeTwoBytes('[', ']')
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteArrayEnd write ] with possible indention
|
|
|
|
func (stream *Stream) WriteArrayEnd() {
|
|
|
|
stream.writeIndention(stream.cfg.indentionStep)
|
|
|
|
stream.indention -= stream.cfg.indentionStep
|
|
|
|
stream.writeByte(']')
|
|
|
|
}
|
|
|
|
|
|
|
|
func (stream *Stream) writeIndention(delta int) {
|
|
|
|
if stream.indention == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
stream.writeByte('\n')
|
|
|
|
toWrite := stream.indention - delta
|
2018-07-25 04:17:02 -04:00
|
|
|
for i := 0; i < toWrite; i++ {
|
|
|
|
stream.buf = append(stream.buf, ' ')
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
}
|