mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0e025b4bb1
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
122 lines
2.4 KiB
Go
122 lines
2.4 KiB
Go
package jsonlog
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"unicode/utf8"
|
|
)
|
|
|
|
// JSONLogs is based on JSONLog.
|
|
// It allows marshalling JSONLog from Log as []byte
|
|
// and an already marshalled Created timestamp.
|
|
type JSONLogs struct {
|
|
Log []byte `json:"log,omitempty"`
|
|
Stream string `json:"stream,omitempty"`
|
|
Created string `json:"time"`
|
|
|
|
// json-encoded bytes
|
|
RawAttrs json.RawMessage `json:"attrs,omitempty"`
|
|
}
|
|
|
|
// MarshalJSONBuf is based on the same method from JSONLog
|
|
// It has been modified to take into account the necessary changes.
|
|
func (mj *JSONLogs) MarshalJSONBuf(buf *bytes.Buffer) error {
|
|
var first = true
|
|
|
|
buf.WriteString(`{`)
|
|
if len(mj.Log) != 0 {
|
|
first = false
|
|
buf.WriteString(`"log":`)
|
|
ffjsonWriteJSONBytesAsString(buf, mj.Log)
|
|
}
|
|
if len(mj.Stream) != 0 {
|
|
if first == true {
|
|
first = false
|
|
} else {
|
|
buf.WriteString(`,`)
|
|
}
|
|
buf.WriteString(`"stream":`)
|
|
ffjsonWriteJSONString(buf, mj.Stream)
|
|
}
|
|
if len(mj.RawAttrs) > 0 {
|
|
if first {
|
|
first = false
|
|
} else {
|
|
buf.WriteString(`,`)
|
|
}
|
|
buf.WriteString(`"attrs":`)
|
|
buf.Write(mj.RawAttrs)
|
|
}
|
|
if !first {
|
|
buf.WriteString(`,`)
|
|
}
|
|
buf.WriteString(`"time":`)
|
|
buf.WriteString(mj.Created)
|
|
buf.WriteString(`}`)
|
|
return nil
|
|
}
|
|
|
|
// This is based on ffjsonWriteJSONBytesAsString. It has been changed
|
|
// to accept a string passed as a slice of bytes.
|
|
func ffjsonWriteJSONBytesAsString(buf *bytes.Buffer, s []byte) {
|
|
const hex = "0123456789abcdef"
|
|
|
|
buf.WriteByte('"')
|
|
start := 0
|
|
for i := 0; i < len(s); {
|
|
if b := s[i]; b < utf8.RuneSelf {
|
|
if 0x20 <= b && b != '\\' && b != '"' && b != '<' && b != '>' && b != '&' {
|
|
i++
|
|
continue
|
|
}
|
|
if start < i {
|
|
buf.Write(s[start:i])
|
|
}
|
|
switch b {
|
|
case '\\', '"':
|
|
buf.WriteByte('\\')
|
|
buf.WriteByte(b)
|
|
case '\n':
|
|
buf.WriteByte('\\')
|
|
buf.WriteByte('n')
|
|
case '\r':
|
|
buf.WriteByte('\\')
|
|
buf.WriteByte('r')
|
|
default:
|
|
|
|
buf.WriteString(`\u00`)
|
|
buf.WriteByte(hex[b>>4])
|
|
buf.WriteByte(hex[b&0xF])
|
|
}
|
|
i++
|
|
start = i
|
|
continue
|
|
}
|
|
c, size := utf8.DecodeRune(s[i:])
|
|
if c == utf8.RuneError && size == 1 {
|
|
if start < i {
|
|
buf.Write(s[start:i])
|
|
}
|
|
buf.WriteString(`\ufffd`)
|
|
i += size
|
|
start = i
|
|
continue
|
|
}
|
|
|
|
if c == '\u2028' || c == '\u2029' {
|
|
if start < i {
|
|
buf.Write(s[start:i])
|
|
}
|
|
buf.WriteString(`\u202`)
|
|
buf.WriteByte(hex[c&0xF])
|
|
i += size
|
|
start = i
|
|
continue
|
|
}
|
|
i += size
|
|
}
|
|
if start < len(s) {
|
|
buf.Write(s[start:])
|
|
}
|
|
buf.WriteByte('"')
|
|
}
|