-
Notifications
You must be signed in to change notification settings - Fork 2k
/
msgpack.go
92 lines (78 loc) · 1.81 KB
/
msgpack.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
package raftutil
import (
"bytes"
"fmt"
"time"
"unicode"
"github.com/hashicorp/go-msgpack/codec"
"github.com/hashicorp/nomad/nomad/structs"
)
// fixTime converts any suspected time.Time binary string representation to time.Time
func fixTime(v interface{}) {
switch v2 := v.(type) {
case map[string]interface{}:
for ek, ev := range v2 {
if s, ok := ev.(string); ok {
t, err := maybeDecodeTime(s)
if err == nil && isReasonableTime(t) {
v2[ek] = *t
}
} else {
fixTime(ev)
}
}
case []interface{}:
for _, e := range v2 {
fixTime(e)
}
default:
return
}
}
// maybeDecodeTime returns a time.Time representation if the string represents a msgpack
// representation of a date.
func maybeDecodeTime(v string) (*time.Time, error) {
if isASCII(v) {
return nil, fmt.Errorf("simple ascii string")
}
tt := &time.Time{}
var err error
err = tt.UnmarshalBinary([]byte(v))
if err == nil {
return tt, nil
}
switch len(v) {
case 4, 8, 12:
default:
return nil, fmt.Errorf("bad length: %d", len(v))
}
var nb bytes.Buffer
err = codec.NewEncoder(&nb, structs.MsgpackHandle).Encode(v)
if err != nil {
return nil, err
}
err = codec.NewDecoder(&nb, structs.MsgpackHandle).Decode(tt)
if err != nil {
return nil, err
}
return tt, nil
}
// isASCII returns true if all string characters are ASCII characters
func isASCII(s string) bool {
for i := 0; i < len(s); i++ {
if s[i] > unicode.MaxASCII {
return false
}
}
return true
}
// isReasonableTime returns true if the time is within some N years of current time
//
// It's can be used to rule out bad date interpretation (e.g. dates million years away).
func isReasonableTime(t *time.Time) bool {
if t.IsZero() {
return true
}
now := time.Now()
return t.Before(now.AddDate(20, 0, 0)) && t.After(now.AddDate(-20, 0, 0))
}