-
Notifications
You must be signed in to change notification settings - Fork 0
/
encoding.go
108 lines (89 loc) · 2.49 KB
/
encoding.go
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
// Copyright (c) 2022 Gobalsky Labs Limited
//
// Use of this software is governed by the Business Source License included
// in the LICENSE.DATANODE file and at https://www.mariadb.com/bsl11.
//
// Change Date: 18 months from the later of the date of the first publicly
// available Distribution of this version of the repository, and 25 June 2022.
//
// On the date above, in accordance with the Business Source License, use
// of this software will be governed by version 3 or later of the GNU General
// Public License.
package encoding
import (
"encoding/base64"
"fmt"
"time"
"zuluprotocol/zeta/logging"
)
// Duration is a wrapper over an actual duration so we can represent
// them as string in the toml configuration.
type Duration struct {
time.Duration
}
// Get returns the stored duration.
func (d *Duration) Get() time.Duration {
return d.Duration
}
// UnmarshalText unmarshal a duration from bytes.
func (d *Duration) UnmarshalText(text []byte) error {
var err error
d.Duration, err = time.ParseDuration(string(text))
return err
}
func (d *Duration) UnmarshalFlag(s string) error {
return d.UnmarshalText([]byte(s))
}
// MarshalText marshal a duraton into bytes.
func (d Duration) MarshalText() ([]byte, error) {
return []byte(d.String()), nil
}
func (d Duration) MarshalFlag() (string, error) {
bz, err := d.MarshalText()
return string(bz), err
}
// LogLevel is wrapper over the actual log level
// so they can be specified as strings in the toml configuration.
type LogLevel struct {
logging.Level
}
// Get return the store value.
func (l *LogLevel) Get() logging.Level {
return l.Level
}
// UnmarshalText unmarshal a loglevel from bytes.
func (l *LogLevel) UnmarshalText(text []byte) error {
var err error
l.Level, err = logging.ParseLevel(string(text))
return err
}
func (l *LogLevel) UnmarshalFlag(s string) error {
return l.UnmarshalText([]byte(s))
}
// MarshalText marshal a loglevel into bytes.
func (l LogLevel) MarshalText() ([]byte, error) {
return []byte(l.String()), nil
}
type Bool bool
func (b *Bool) UnmarshalFlag(s string) error {
if s == "true" {
*b = true
} else if s == "false" {
*b = false
} else {
return fmt.Errorf("only `true' and `false' are valid values, not `%s'", s)
}
return nil
}
type Base64 []byte
func (b *Base64) UnmarshalFlag(s string) error {
dec, err := base64.StdEncoding.DecodeString(s)
if err != nil {
return err
}
*b = dec
return nil
}
func (b Base64) MarshalFlag() (string, error) {
return base64.StdEncoding.EncodeToString(b), nil
}