forked from grafana/tempo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencoding.go
More file actions
128 lines (113 loc) · 2.52 KB
/
encoding.go
File metadata and controls
128 lines (113 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package backend
import (
"bytes"
"encoding/json"
"fmt"
"strings"
)
// Encoding is the identifier for a chunk encoding.
type Encoding byte
// The different available encodings.
// Make sure to preserve the order, as these numeric values are written to the chunks!
const (
EncNone Encoding = iota
EncGZIP
EncLZ4_64k
EncLZ4_256k
EncLZ4_1M
EncLZ4_4M
EncSnappy
EncZstd
EncS2
)
// SupportedEncoding is a slice of all supported encodings
var SupportedEncoding = []Encoding{
EncNone,
EncGZIP,
EncLZ4_64k,
EncLZ4_256k,
EncLZ4_1M,
EncLZ4_4M,
EncSnappy,
EncZstd,
EncS2,
}
func (e Encoding) String() string {
switch e {
case EncNone:
return "none"
case EncGZIP:
return "gzip"
case EncLZ4_64k:
return "lz4-64k"
case EncLZ4_256k:
return "lz4-256k"
case EncLZ4_1M:
return "lz4-1M"
case EncLZ4_4M:
return "lz4"
case EncSnappy:
return "snappy"
case EncZstd:
return "zstd"
case EncS2:
return "s2"
default:
return "unsupported"
}
}
// UnmarshalYAML implements the Unmarshaler interface of the yaml pkg.
func (e *Encoding) UnmarshalYAML(unmarshal func(interface{}) error) error {
var encString string
err := unmarshal(&encString)
if err != nil {
return err
}
*e, err = ParseEncoding(encString)
if err != nil {
return err
}
return nil
}
// MarshalYAML implements the Marshaler interface of the yaml pkg
func (e Encoding) MarshalYAML() (interface{}, error) {
return e.String(), nil
}
// UnmarshalJSON implements the Unmarshaler interface of the json pkg.
func (e *Encoding) UnmarshalJSON(b []byte) error {
var encString string
err := json.Unmarshal(b, &encString)
if err != nil {
return err
}
*e, err = ParseEncoding(encString)
if err != nil {
return err
}
return nil
}
// MarshalJSON implements the marshaler interface of the json pkg.
func (e Encoding) MarshalJSON() ([]byte, error) {
buffer := bytes.NewBufferString("\"" + e.String() + "\"")
return buffer.Bytes(), nil
}
// ParseEncoding parses a chunk encoding (compression algorithm) by its name.
func ParseEncoding(enc string) (Encoding, error) {
for _, e := range SupportedEncoding {
if strings.EqualFold(e.String(), enc) {
return e, nil
}
}
return 0, fmt.Errorf("invalid encoding: %s, supported: %s", enc, SupportedEncodingString())
}
// SupportedEncodingString returns the list of supported Encoding.
func SupportedEncodingString() string {
var sb strings.Builder
for i := range SupportedEncoding {
sb.WriteString(SupportedEncoding[i].String())
if i != len(SupportedEncoding)-1 {
sb.WriteString(", ")
}
}
return sb.String()
}