maddy/framework/log/orderedjson.go

85 lines
2 KiB
Go

/*
Maddy Mail Server - Composable all-in-one email server.
Copyright © 2019-2020 Max Mazurov <fox.cpp@disroot.org>, Maddy Mail Server contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package log
import (
"encoding/json"
"fmt"
"sort"
"strings"
"time"
)
// To support ad-hoc parsing in a better way we want to make order of fields in
// output JSON documents determistics. Additionally, this will make them more
// human-readable when values from multiple messages are lined up to each
// other.
type module interface {
Name() string
InstanceName() string
}
func marshalOrderedJSON(output *strings.Builder, m map[string]interface{}) error {
order := make([]string, 0, len(m))
for k := range m {
order = append(order, k)
}
sort.Strings(order)
output.WriteRune('{')
for i, key := range order {
if i != 0 {
output.WriteRune(',')
}
jsonKey, err := json.Marshal(key)
if err != nil {
return err
}
output.Write(jsonKey)
output.WriteString(":")
val := m[key]
switch casted := val.(type) {
case time.Time:
val = casted.Format("2006-01-02T15:04:05.000")
case time.Duration:
val = casted.String()
case LogFormatter:
val = casted.FormatLog()
case fmt.Stringer:
val = casted.String()
case module:
val = casted.Name() + "/" + casted.InstanceName()
case error:
val = casted.Error()
}
jsonValue, err := json.Marshal(val)
if err != nil {
return err
}
output.Write(jsonValue)
}
output.WriteRune('}')
return nil
}