-
Notifications
You must be signed in to change notification settings - Fork 3
/
parser.go
224 lines (193 loc) · 4.73 KB
/
parser.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
package dsnparser
// DSN container for data after dsn parsing.
type DSN struct {
raw string
scheme string
user string
password string
host string
port string
path string
params map[string]string
transport string
}
// GetHost returns a host as the string.
func (d *DSN) GetHost() string {
return d.host
}
// GetParam returns an additional parameter by key as the string.
func (d *DSN) GetParam(key string) string {
if !d.HasParam(key) {
return ""
}
return d.params[key]
}
// GetParams returns additional parameters as key-value map.
func (d *DSN) GetParams() map[string]string {
return d.params
}
// HasParam checks for the existence of an additional parameter.
func (d *DSN) HasParam(key string) bool {
if _, ok := d.params[key]; ok {
return true
}
return false
}
// GetPassword returns a credential password as the string.
func (d *DSN) GetPassword() string {
return d.password
}
// GetPath returns a path as the string.
func (d *DSN) GetPath() string {
return d.path
}
// GetPort returns a port as the string.
func (d *DSN) GetPort() string {
return d.port
}
// GetRaw returns the dsn in its raw form, as it was passed to the Parse function.
func (d *DSN) GetRaw() string {
return d.raw
}
// GetScheme returns a scheme as the string.
func (d *DSN) GetScheme() string {
return d.scheme
}
// GetTransport returns a transport as the string.
func (d *DSN) GetTransport() string {
return d.transport
}
// GetUser returns a credential user as the string.
func (d *DSN) GetUser() string {
return d.user
}
// Parse receives a raw dsn as argument, parses it and returns it in the DSN structure.
func Parse(raw string) *DSN {
d := DSN{
raw: raw,
params: map[string]string{},
}
dsn := []rune(d.raw)
// Parsing the scheme
for pos, symbol := range dsn {
// Found end of the scheme name
if symbol == '/' && pos > 2 && string(dsn[pos-2:pos+1]) == "://" {
d.scheme = string(dsn[0 : pos-2])
dsn = dsn[pos+1:]
break
}
}
// Parsing the credentials
for dsnPos, dsnSymbol := range dsn {
// Found end of the credentials
if dsnSymbol == '@' && !isEscaped(dsnPos, dsn) {
credentials := dsn[0:dsnPos]
// Separating username and password
hasSeparator := false
for credPos, credChar := range credentials {
if credChar == ':' && !isEscaped(credPos, credentials) {
hasSeparator = true
d.user = string(unEscape([]rune{':', '@'}, credentials[0:credPos]))
d.password = string(unEscape([]rune{':', '@'}, credentials[credPos+1:]))
break
}
}
if !hasSeparator {
d.user = string(unEscape([]rune{':', '@'}, credentials))
}
dsn = dsn[dsnPos+1:]
break
}
}
// Transport parsing
for dsnPos, dsnSymbol := range dsn {
if dsnSymbol != '(' {
continue
}
hpExtractBeginPos := dsnPos + 1
hpExtractEndPos := -1
for hpPos, hpSymbol := range dsn[hpExtractBeginPos:] {
if hpSymbol == ')' {
hpExtractEndPos = dsnPos + hpPos
}
}
if hpExtractEndPos == -1 {
continue
}
d.transport = string(dsn[:hpExtractBeginPos-1])
dsn = append(dsn[hpExtractBeginPos:hpExtractEndPos+1], dsn[hpExtractEndPos+2:]...)
break
}
// Host and port parsing
for dsnPos, dsnSymbol := range dsn {
endPos := -1
if dsnSymbol == '/' {
endPos = dsnPos
} else if dsnPos == len(dsn)-1 {
endPos = len(dsn)
}
if endPos > -1 {
hostPort := dsn[0:endPos]
hasSeparator := false
for hpPos, hpSymbol := range hostPort {
if hpSymbol == ':' {
hasSeparator = true
d.host = string(hostPort[0:hpPos])
d.port = string(hostPort[hpPos+1:])
break
}
}
if !hasSeparator {
d.host = string(hostPort)
}
dsn = dsn[dsnPos+1:]
break
}
}
// Path parsing
for pos, symbol := range dsn {
endPos := -1
if symbol == '?' {
endPos = pos
} else if pos == len(dsn)-1 {
endPos = len(dsn)
}
if endPos > -1 {
d.path = string(dsn[0:endPos])
dsn = dsn[pos+1:]
break
}
}
// Params parsing
beginPosParam := 0
for symbolPos, symbol := range dsn {
param := []rune{}
if symbol == '&' && !isEscaped(symbolPos, dsn) {
param = dsn[beginPosParam:symbolPos]
beginPosParam = symbolPos + 1
} else if symbolPos == len(dsn)-1 {
param = dsn[beginPosParam:]
}
// Separating key and value
if len(param) > 0 {
paramKey := []rune{}
paramVal := []rune{}
hasSeparator := false
for paramSymbolPos, paramSymbol := range param {
if paramSymbol == '=' && !isEscaped(paramSymbolPos, param) {
hasSeparator = true
paramKey = param[0:paramSymbolPos]
paramVal = param[paramSymbolPos+1:]
break
}
}
if !hasSeparator {
paramKey = param
}
if len(paramKey) > 0 {
d.params[string(unEscape([]rune{'=', '&'}, paramKey))] = string(unEscape([]rune{'=', '&'}, paramVal))
}
}
}
return &d
}