This repository was archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutility.go
285 lines (256 loc) · 6.77 KB
/
utility.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
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
Copyright 2019 IBM Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"bytes"
"fmt"
"path/filepath"
"runtime"
"strconv"
"strings"
"time"
"github.com/pkg/errors"
)
const (
maxLabelLength = 63 // max length of a label in Kubernetes
maxNameLength = 253 // max length of a name in Kubernetes
// minimum interval between logs for sample logging
samplingLogInterval = time.Minute * 5
)
/* @Return true if character is valid for a domain name */
func isValidDomainNameChar(ch byte) bool {
return (ch == '.' || ch == '-' ||
(ch >= 'a' && ch <= 'z') ||
(ch >= '0' && ch <= '9'))
}
/* Convert a name to domain name format.
The name must
- Start with [a-z0-9]. If not, "0" is prepended.
- lower case. If not, lower case is used.
- contain only '.', '-', and [a-z0-9]. If not, "." is used insteaad.
- end with alpha numeric characters. Otherwise, '0' is appended
- can't have consecutive '.'. Consecutivie ".." is substituted with ".".
Return emtpy string if the name is empty after conversion
*/
func toDomainName(name string) string {
maxLength := maxNameLength
name = strings.ToLower(name)
ret := bytes.Buffer{}
chars := []byte(name)
for i, ch := range chars {
if i == 0 {
// first character must be [a-z0-9]
if (ch >= 'a' && ch <= 'z') ||
(ch >= '0' && ch <= '9') {
ret.WriteByte(ch)
} else {
ret.WriteByte('0')
if isValidDomainNameChar(ch) {
ret.WriteByte(ch)
} else {
ret.WriteByte('.')
}
}
} else {
if isValidDomainNameChar(ch) {
ret.WriteByte(ch)
} else {
ret.WriteByte('.')
}
}
}
// change all ".." to ".
retStr := ret.String()
for strings.Index(retStr, "..") > 0 {
retStr = strings.ReplaceAll(retStr, "..", ".")
}
strLen := len(retStr)
if strLen == 0 {
return retStr
}
if strLen > maxLength {
strLen = maxLength
retStr = retStr[0:strLen]
}
ch := retStr[strLen-1]
if (ch >= 'a' && ch <= 'z') ||
(ch >= '0' && ch <= '9') {
// last char is alphanumeric
return retStr
}
if strLen < maxLength-1 {
// append alphanumeric
return retStr + "0"
}
// replace last char to be alphanumeric
return retStr[0:strLen-2] + "0"
}
func isValidLabelChar(ch byte) bool {
return (ch == '.' || ch == '-' || (ch == '_') ||
(ch >= 'a' && ch <= 'z') ||
(ch >= 'A' && ch <= 'Z') ||
(ch >= '0' && ch <= '9'))
}
/* Convert the name part of a label
The name must
- Start with [a-z0-9A-Z]. If not, "0" is prepended.
- End with [a-z0-9A-Z]. If not, "0" is appended
- Intermediate characters can only be: [a-z0-9A-Z] or '_', '-', and '.' If not, '.' is used.
- be maximum maxLabelLength characters long
*/
func toLabelName(name string) string {
chars := []byte(name)
ret := bytes.Buffer{}
for i, ch := range chars {
if i == 0 {
// first character must be [a-z0-9]
if (ch >= 'a' && ch <= 'z') ||
(ch >= 'A' && ch <= 'Z') ||
(ch >= '0' && ch <= '9') {
ret.WriteByte(ch)
} else {
ret.WriteByte('0')
if isValidLabelChar(ch) {
ret.WriteByte(ch)
} else {
ret.WriteByte('.')
}
}
} else {
if isValidLabelChar(ch) {
ret.WriteByte(ch)
} else {
ret.WriteByte('.')
}
}
}
retStr := ret.String()
strLen := len(retStr)
if strLen == 0 {
return retStr
}
if strLen > maxLabelLength {
strLen = maxLabelLength
retStr = retStr[0:strLen]
}
ch := retStr[strLen-1]
if (ch >= 'a' && ch <= 'z') ||
(ch >= 'A' && ch <= 'Z') ||
(ch >= '0' && ch <= '9') {
// last char is alphanumeric
return retStr
} else if strLen < maxLabelLength-1 {
// append alphanumeric
return retStr + "0"
} else {
// replace last char to be alphanumeric
return retStr[0:strLen-2] + "0"
}
}
func toLabel(input string) string {
slashIndex := strings.Index(input, "/")
var prefix, label string
if slashIndex < 0 {
prefix = ""
label = input
} else if slashIndex == len(input)-1 {
prefix = input[0:slashIndex]
label = ""
} else {
prefix = input[0:slashIndex]
label = input[slashIndex+1:]
}
newPrefix := toDomainName(prefix)
newLabel := toLabelName(label)
ret := ""
if newPrefix == "" {
if newLabel == "" {
// shouldn't happen
newLabel = "nolabel"
} else {
ret = newLabel
}
} else if newLabel == "" {
ret = newPrefix
} else {
ret = newPrefix + "/" + newLabel
}
return ret
}
// sampling looger will output logs no more fequent than a defined
// time interval. This is used to reduce amount of logs when processing
// errors and retries that may occur frequently
type samplingLogger struct {
interval time.Duration // interval between log output
lastOutput time.Time // time of last output
}
// Return a new sample logger
func newSamplingLogger() *samplingLogger {
return &samplingLogger{
interval: samplingLogInterval,
lastOutput: time.Now().Add(-1 * samplingLogInterval),
}
}
func (sl *samplingLogger) logError(err error) {
now := time.Now()
if now.Sub(sl.lastOutput) >= sl.interval {
// enough time elapsed since last output
sl.lastOutput = now
if logger.IsEnabled(LogTypeError) {
str := fmt.Sprintf("%s", err)
logger.Log(CallerName(), LogTypeError, str)
}
}
}
func logString(str string) string {
return "\"" + str + "\""
}
// CallerName get the caller program file name, line number and function name in "fileName:line# funcName"
func CallerName() string {
var callerName string
pc, fileName, line, _ := runtime.Caller(1)
// get function name
funcNameFull := runtime.FuncForPC(pc).Name()
funcNameEnd := filepath.Ext(funcNameFull)
funcName := strings.TrimPrefix(funcNameEnd, ".")
// get file name
suffix := ".go"
_, nf := filepath.Split(fileName)
if strings.HasSuffix(nf, ".go") {
fileName = strings.TrimSuffix(nf, suffix)
callerName = fileName + suffix + ":" + strconv.Itoa(line) + " " + funcName
}
return callerName
}
//ErrorWithStack print stack trace for error message
func ErrorWithStack(msg string) string {
cause := errors.New(msg)
err := errors.WithStack(cause)
s := fmt.Sprintf("%+v", err)
return s
}
//Find check if an element in the slice
func Find(slice []string, val string) (int, bool) {
for i, item := range slice {
if item == val {
return i, true
}
}
return -1, false
}
//FormatTimestamp with unix seconds in float format i.e. 1584628925.9396136
func FormatTimestamp(t time.Time) float64 {
s := fmt.Sprintf("%10.7f", float64(t.UnixNano())/1e9)
ts, _ := strconv.ParseFloat(s, 64)
return ts
}