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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
package needle
import (
"fmt"
"strconv"
)
const (
// stored unit types
Empty byte = iota
Minute
Hour
Day
Week
Month
Year
)
type TTL struct {
Count byte
Unit byte
}
var EMPTY_TTL = &TTL{}
// translate a readable ttl to internal ttl
// Supports format example:
// 3m: 3 minutes
// 4h: 4 hours
// 5d: 5 days
// 6w: 6 weeks
// 7M: 7 months
// 8y: 8 years
func ReadTTL(ttlString string) (*TTL, error) {
if ttlString == "" {
return EMPTY_TTL, nil
}
ttlBytes := []byte(ttlString)
unitByte := ttlBytes[len(ttlBytes)-1]
countBytes := ttlBytes[0 : len(ttlBytes)-1]
if '0' <= unitByte && unitByte <= '9' {
countBytes = ttlBytes
unitByte = 'm'
}
count, err := strconv.Atoi(string(countBytes))
unit := toStoredByte(unitByte)
return fitTtlCount(count, unit), err
}
func fitTtlCount(count int, unit byte) *TTL {
seconds := ToSeconds(count, unit)
if seconds == 0 {
return EMPTY_TTL
}
if seconds%(3600*24*365) == 0 && seconds/(3600*24*365) < 256 {
return &TTL{Count: byte(seconds / (3600 * 24 * 365)), Unit: Year}
}
if seconds%(3600*24*30) == 0 && seconds/(3600*24*30) < 256 {
return &TTL{Count: byte(seconds / (3600 * 24 * 30)), Unit: Month}
}
if seconds%(3600*24*7) == 0 && seconds/(3600*24*7) < 256 {
return &TTL{Count: byte(seconds / (3600 * 24 * 7)), Unit: Week}
}
if seconds%(3600*24) == 0 && seconds/(3600*24) < 256 {
return &TTL{Count: byte(seconds / (3600 * 24)), Unit: Day}
}
if seconds%(3600) == 0 && seconds/(3600) < 256 {
return &TTL{Count: byte(seconds / (3600)), Unit: Hour}
}
if seconds/60 < 256 {
return &TTL{Count: byte(seconds / 60), Unit: Minute}
}
if seconds/(3600) < 256 {
return &TTL{Count: byte(seconds / (3600)), Unit: Hour}
}
if seconds/(3600*24) < 256 {
return &TTL{Count: byte(seconds / (3600 * 24)), Unit: Day}
}
if seconds/(3600*24*7) < 256 {
return &TTL{Count: byte(seconds / (3600 * 24 * 7)), Unit: Week}
}
if seconds/(3600*24*30) < 256 {
return &TTL{Count: byte(seconds / (3600 * 24 * 30)), Unit: Month}
}
if seconds/(3600*24*365) < 256 {
return &TTL{Count: byte(seconds / (3600 * 24 * 365)), Unit: Year}
}
return EMPTY_TTL
}
// read stored bytes to a ttl
func LoadTTLFromBytes(input []byte) (t *TTL) {
if input[0] == 0 && input[1] == 0 {
return EMPTY_TTL
}
return &TTL{Count: input[0], Unit: input[1]}
}
// read stored bytes to a ttl
func LoadTTLFromUint32(ttl uint32) (t *TTL) {
input := make([]byte, 2)
input[1] = byte(ttl)
input[0] = byte(ttl >> 8)
return LoadTTLFromBytes(input)
}
// save stored bytes to an output with 2 bytes
func (t *TTL) ToBytes(output []byte) {
output[0] = t.Count
output[1] = t.Unit
}
func (t *TTL) ToUint32() (output uint32) {
if t == nil || t.Count == 0 {
return 0
}
output = uint32(t.Count) << 8
output += uint32(t.Unit)
return output
}
func (t *TTL) String() string {
if t == nil || t.Count == 0 {
return ""
}
if t.Unit == Empty {
return ""
}
countString := strconv.Itoa(int(t.Count))
switch t.Unit {
case Minute:
return countString + "m"
case Hour:
return countString + "h"
case Day:
return countString + "d"
case Week:
return countString + "w"
case Month:
return countString + "M"
case Year:
return countString + "y"
}
return ""
}
func (t *TTL) ToSeconds() uint64 {
return ToSeconds(int(t.Count), t.Unit)
}
func ToSeconds(count int, unit byte) uint64 {
switch unit {
case Empty:
return 0
case Minute:
return uint64(count) * 60
case Hour:
return uint64(count) * 60 * 60
case Day:
return uint64(count) * 60 * 24 * 60
case Week:
return uint64(count) * 60 * 24 * 7 * 60
case Month:
return uint64(count) * 60 * 24 * 30 * 60
case Year:
return uint64(count) * 60 * 24 * 365 * 60
}
return 0
}
func toStoredByte(readableUnitByte byte) byte {
switch readableUnitByte {
case 'm':
return Minute
case 'h':
return Hour
case 'd':
return Day
case 'w':
return Week
case 'M':
return Month
case 'y':
return Year
}
return 0
}
func (t TTL) Minutes() uint32 {
switch t.Unit {
case Empty:
return 0
case Minute:
return uint32(t.Count)
case Hour:
return uint32(t.Count) * 60
case Day:
return uint32(t.Count) * 60 * 24
case Week:
return uint32(t.Count) * 60 * 24 * 7
case Month:
return uint32(t.Count) * 60 * 24 * 30
case Year:
return uint32(t.Count) * 60 * 24 * 365
}
return 0
}
func SecondsToTTL(seconds int32) string {
if seconds == 0 {
return ""
}
if seconds%(3600*24*365) == 0 && seconds/(3600*24*365) < 256 {
return fmt.Sprintf("%dy", seconds/(3600*24*365))
}
if seconds%(3600*24*30) == 0 && seconds/(3600*24*30) < 256 {
return fmt.Sprintf("%dM", seconds/(3600*24*30))
}
if seconds%(3600*24*7) == 0 && seconds/(3600*24*7) < 256 {
return fmt.Sprintf("%dw", seconds/(3600*24*7))
}
if seconds%(3600*24) == 0 && seconds/(3600*24) < 256 {
return fmt.Sprintf("%dd", seconds/(3600*24))
}
if seconds%(3600) == 0 && seconds/(3600) < 256 {
return fmt.Sprintf("%dh", seconds/(3600))
}
if seconds/60 < 256 {
return fmt.Sprintf("%dm", seconds/60)
}
if seconds/(3600) < 256 {
return fmt.Sprintf("%dh", seconds/(3600))
}
if seconds/(3600*24) < 256 {
return fmt.Sprintf("%dd", seconds/(3600*24))
}
if seconds/(3600*24*7) < 256 {
return fmt.Sprintf("%dw", seconds/(3600*24*7))
}
if seconds/(3600*24*30) < 256 {
return fmt.Sprintf("%dM", seconds/(3600*24*30))
}
if seconds/(3600*24*365) < 256 {
return fmt.Sprintf("%dy", seconds/(3600*24*365))
}
return ""
}
|