-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathutils.go
More file actions
169 lines (148 loc) · 2.51 KB
/
utils.go
File metadata and controls
169 lines (148 loc) · 2.51 KB
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
package exapi
import (
"bytes"
"compress/flate"
"compress/gzip"
"fmt"
"io/ioutil"
"net/url"
"strconv"
"strings"
)
func ToString(v interface{}) string {
if v == nil {
return ""
}
switch v.(type) {
case string:
vStr := v.(string)
return vStr
default:
return fmt.Sprintf("%v", v)
}
}
func ToFloat64(v interface{}) float64 {
if v == nil {
return 0.0
}
switch v.(type) {
case float64:
return v.(float64)
case string:
vStr := v.(string)
vF, _ := strconv.ParseFloat(vStr, 64)
return vF
default:
panic("to float64 error.")
}
}
func ToInt(v interface{}) int {
if v == nil {
return 0
}
switch v.(type) {
case string:
vStr := v.(string)
vInt, _ := strconv.Atoi(vStr)
return vInt
case int:
return v.(int)
case float64:
vF := v.(float64)
return int(vF)
default:
panic("to int error.")
}
}
func ToUint64(v interface{}) uint64 {
if v == nil {
return 0
}
switch v.(type) {
case int:
return uint64(v.(int))
case float64:
return uint64((v.(float64)))
case string:
uV, _ := strconv.ParseUint(v.(string), 10, 64)
return uV
default:
panic("to uint64 error.")
}
}
func ToInt64(v interface{}) int64 {
if v == nil {
return 0
}
switch v.(type) {
case float64:
return int64(v.(float64))
default:
vv := fmt.Sprint(v)
if vv == "" {
return 0
}
vvv, err := strconv.ParseInt(vv, 0, 64)
if err != nil {
return 0
}
return vvv
}
}
func ToBool(v interface{}) bool {
if v == nil {
return false
}
switch v.(type) {
case bool:
return v.(bool)
case string:
s := v.(string)
if s == "1" {
return true
}
return false
default:
panic("to bool error.")
}
}
//n :保留的小数点位数
func FloatToString(v float64, n int) string {
return fmt.Sprintf(fmt.Sprintf("%%.%df", n), v)
}
func ValuesToJson(v url.Values) ([]byte, error) {
parammap := make(map[string]interface{})
for k, vv := range v {
if len(vv) == 1 {
parammap[k] = vv[0]
} else {
parammap[k] = vv
}
}
return json.Marshal(parammap)
}
func GzipUnCompress(data []byte) ([]byte, error) {
r, err := gzip.NewReader(bytes.NewReader(data))
if err != nil {
return nil, err
}
return ioutil.ReadAll(r)
}
func FlateUnCompress(data []byte) ([]byte, error) {
return ioutil.ReadAll(flate.NewReader(bytes.NewReader(data)))
}
func AdaptTradeSide(side string) TradeSide {
side2 := strings.ToUpper(side)
switch side2 {
case "SELL":
return SELL
case "BUY":
return BUY
case "BUY_MARKET":
return BUY_MARKET
case "SELL_MARKET":
return SELL_MARKET
default:
return -1
}
}