-
Notifications
You must be signed in to change notification settings - Fork 48
/
utils.go
96 lines (86 loc) · 1.99 KB
/
utils.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
package utils
import (
"crypto/md5"
"fmt"
"strings"
"time"
)
//TimeFormat a
const TimeFormat = "2006-01-02 15:04:05"
//Md5 string
func Md5(buf []byte) string {
hash := md5.New()
hash.Write(buf)
return fmt.Sprintf("%x", hash.Sum(nil))
}
//ParseTime func
func ParseTime(strtime string) (end time.Time, err error) {
timeLayout := "2006-01-02 15:04:05"
loc, _ := time.LoadLocation("Asia/Shanghai")
theTime, err := time.Parse(timeLayout, strtime)
if err != nil {
return time.Now(), err
}
etime := theTime.In(loc)
return etime, nil
}
//TimeFormater a
func TimeFormater(timer string) string {
t, _ := time.Parse(TimeFormat, timer)
return t.String()
}
//ParTime time
func ParTime(dataStr string) (timer time.Time, err error) {
loc, _ := time.LoadLocation("Asia/Shanghai")
layout := "2006-01-02 15:04:05"
if dataStr == "" {
b := time.Now()
return b, nil
}
btime := strings.TrimSpace(strings.Replace(dataStr, ".", "-", -1))
ot, err := time.ParseInLocation(layout, string(btime), loc)
if err != nil {
b := time.Now()
return b, nil
}
return ot, nil
}
// RemoveRepByLoop a
func RemoveRepByLoop(slc []string) []string {
result := []string{} // 存放结果
for i := range slc {
flag := true
for j := range result {
if slc[i] == result[j] {
flag = false // 存在重复元素,标识为false
break
}
}
if flag { // 标识为false,不添加进结果
result = append(result, slc[i])
}
}
return result
}
// RemoveRepByMap a
func RemoveRepByMap(slc []string) []string {
result := []string{}
tempMap := map[string]byte{} // 存放不重复主键
for _, e := range slc {
l := len(tempMap)
tempMap[e] = 0
if len(tempMap) != l { // 加入map后,map长度变化,则元素不重复
result = append(result, e)
}
}
return result
}
//RemoveRep a
func RemoveRep(slc []string) []string {
if len(slc) < 1024 {
// 切片长度小于1024的时候,循环来过滤
return RemoveRepByLoop(slc)
}
// 大于的时候,通过map来过滤
return RemoveRepByMap(slc)
}