-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse_array.go
223 lines (202 loc) · 5.41 KB
/
parse_array.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
// Copyright 2016 The Cockroach Authors.
//
// 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 parser
import (
"bytes"
"strings"
"unicode"
"unicode/utf8"
"github.com/cockroachdb/cockroach/pkg/sql/pgwire/pgerror"
)
var enclosingError = pgerror.NewErrorf(pgerror.CodeInvalidTextRepresentationError, "array must be enclosed in { and }")
var extraTextError = pgerror.NewErrorf(pgerror.CodeInvalidTextRepresentationError, "extra text after closing right brace")
var nestedArraysNotSupportedError = pgerror.NewErrorf(pgerror.CodeFeatureNotSupportedError, "nested arrays not supported")
var malformedError = pgerror.NewErrorf(pgerror.CodeInvalidTextRepresentationError, "malformed array")
var isQuoteChar = func(ch byte) bool {
return ch == '"'
}
var isControlChar = func(ch byte) bool {
return ch == '{' || ch == '}' || ch == ',' || ch == '"'
}
var isElementChar = func(r rune) bool {
return r != '{' && r != '}' && r != ','
}
// gobbleString advances the parser for the remainder of the current string
// until it sees a non-escaped termination character, as specified by
// isTerminatingChar, returning the resulting string, not including the
// termination character.
func (p *parseState) gobbleString(isTerminatingChar func(ch byte) bool) (out string, err error) {
var result bytes.Buffer
start := 0
i := 0
for i < len(p.s) && !isTerminatingChar(p.s[i]) {
// In these strings, we just encode directly the character following a
// '\', even if it would normally be an escape sequence.
if i < len(p.s) && p.s[i] == '\\' {
result.WriteString(p.s[start:i])
i++
if i < len(p.s) {
result.WriteByte(p.s[i])
i++
}
start = i
} else {
i++
}
}
if i >= len(p.s) {
return "", malformedError
}
result.WriteString(p.s[start:i])
p.s = p.s[i:]
return result.String(), nil
}
type parseState struct {
s string
evalCtx *EvalContext
result *DArray
t ColumnType
}
func (p *parseState) advance() {
_, l := utf8.DecodeRuneInString(p.s)
p.s = p.s[l:]
}
func (p *parseState) eatWhitespace() {
for unicode.IsSpace(p.peek()) {
p.advance()
}
}
func (p *parseState) peek() rune {
r, _ := utf8.DecodeRuneInString(p.s)
return r
}
func (p *parseState) eof() bool {
return len(p.s) == 0
}
func (p *parseState) parseQuotedString() (string, error) {
return p.gobbleString(isQuoteChar)
}
func (p *parseState) parseUnquotedString() (string, error) {
out, err := p.gobbleString(isControlChar)
if err != nil {
return "", err
}
return strings.TrimSpace(out), nil
}
func (p *parseState) parseElement() error {
var next string
var err error
r := p.peek()
switch r {
case '{':
return nestedArraysNotSupportedError
case '"':
p.advance()
next, err = p.parseQuotedString()
if err != nil {
return err
}
p.advance()
default:
if !isElementChar(r) {
return malformedError
}
next, err = p.parseUnquotedString()
if err != nil {
return err
}
if strings.EqualFold(next, "null") {
return p.result.Append(DNull)
}
}
d, err := performCast(p.evalCtx, NewDString(next), p.t)
if err != nil {
return err
}
return p.result.Append(d)
}
// StringToColType returns a column type given a string representation of the
// type. Used by dump.
func StringToColType(s string) (ColumnType, error) {
switch s {
case "BOOL":
return boolColTypeBool, nil
case "INT":
return intColTypeInt, nil
case "FLOAT":
return floatColTypeFloat, nil
case "DECIMAL":
return decimalColTypeDecimal, nil
case "TIMESTAMP":
return timestampColTypeTimestamp, nil
case "TIMESTAMPTZ", "TIMESTAMP WITH TIME ZONE":
return timestampTzColTypeTimestampWithTZ, nil
case "INTERVAL":
return intervalColTypeInterval, nil
case "UUID":
return uuidColTypeUUID, nil
case "DATE":
return dateColTypeDate, nil
case "STRING":
return stringColTypeString, nil
case "NAME":
return nameColTypeName, nil
case "BYTES":
return bytesColTypeBytes, nil
default:
return nil, pgerror.NewErrorf(pgerror.CodeInternalError, "unexpected column type %s", s)
}
}
// ParseDArrayFromString parses the string-form of constructing arrays, handling
// cases such as `'{1,2,3}'::INT[]`.
func ParseDArrayFromString(evalCtx *EvalContext, s string, t ColumnType) (*DArray, error) {
parser := parseState{
s: s,
evalCtx: evalCtx,
result: NewDArray(CastTargetToDatumType(t)),
t: t,
}
parser.eatWhitespace()
if parser.peek() != '{' {
return nil, enclosingError
}
parser.advance()
parser.eatWhitespace()
if parser.peek() != '}' {
if err := parser.parseElement(); err != nil {
return nil, err
}
parser.eatWhitespace()
for parser.peek() == ',' {
parser.advance()
parser.eatWhitespace()
if err := parser.parseElement(); err != nil {
return nil, err
}
}
}
parser.eatWhitespace()
if parser.eof() {
return nil, enclosingError
}
if parser.peek() != '}' {
return nil, malformedError
}
parser.advance()
parser.eatWhitespace()
if !parser.eof() {
return nil, extraTextError
}
return parser.result, nil
}