-
-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathsystem_enum.go
210 lines (183 loc) · 5.61 KB
/
system_enum.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
// Copyright 2022 Dolthub, Inc.
//
// 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 types
import (
"context"
"reflect"
"strings"
"github.com/dolthub/vitess/go/sqltypes"
"github.com/dolthub/vitess/go/vt/proto/query"
"github.com/shopspring/decimal"
"github.com/dolthub/go-mysql-server/sql"
)
var systemEnumValueType = reflect.TypeOf(string(""))
// systemEnumType is an internal enum type ONLY for system variables.
type systemEnumType struct {
varName string
valToIndex map[string]int
indexToVal []string
}
var _ sql.SystemVariableType = systemEnumType{}
var _ sql.CollationCoercible = systemEnumType{}
// NewSystemEnumType returns a new systemEnumType.
func NewSystemEnumType(varName string, values ...string) sql.SystemVariableType {
if len(values) > 65535 { // system variables should NEVER hit this
panic(varName + " somehow has more than 65535 values")
}
valToIndex := make(map[string]int)
for i, value := range values {
valToIndex[strings.ToLower(value)] = i
}
return systemEnumType{varName, valToIndex, values}
}
// Compare implements Type interface.
func (t systemEnumType) Compare(ctx context.Context, a interface{}, b interface{}) (int, error) {
as, _, err := t.Convert(ctx, a)
if err != nil {
return 0, err
}
bs, _, err := t.Convert(ctx, b)
if err != nil {
return 0, err
}
ai := as.(string)
bi := bs.(string)
if ai == bi {
return 0, nil
}
if ai < bi {
return -1, nil
}
return 1, nil
}
// Convert implements Type interface.
func (t systemEnumType) Convert(ctx context.Context, v interface{}) (interface{}, sql.ConvertInRange, error) {
// Nil values are not accepted
switch value := v.(type) {
case int:
if value >= 0 && value < len(t.indexToVal) {
return t.indexToVal[value], sql.InRange, nil
}
case uint:
return t.Convert(ctx, int(value))
case int8:
return t.Convert(ctx, int(value))
case uint8:
return t.Convert(ctx, int(value))
case int16:
return t.Convert(ctx, int(value))
case uint16:
return t.Convert(ctx, int(value))
case int32:
return t.Convert(ctx, int(value))
case uint32:
return t.Convert(ctx, int(value))
case int64:
return t.Convert(ctx, int(value))
case uint64:
return t.Convert(ctx, int(value))
case float32:
return t.Convert(ctx, float64(value))
case float64:
// Float values aren't truly accepted, but the engine will give them when it should give ints.
// Therefore, if the float doesn't have a fractional portion, we treat it as an int.
if value == float64(int(value)) {
return t.Convert(ctx, int(value))
}
case decimal.Decimal:
f, _ := value.Float64()
return t.Convert(ctx, f)
case decimal.NullDecimal:
if value.Valid {
f, _ := value.Decimal.Float64()
return t.Convert(ctx, f)
}
case string:
if idx, ok := t.valToIndex[strings.ToLower(value)]; ok {
return t.indexToVal[idx], sql.InRange, nil
}
}
return nil, sql.OutOfRange, sql.ErrInvalidSystemVariableValue.New(t.varName, v)
}
// Equals implements the Type interface.
func (t systemEnumType) Equals(otherType sql.Type) bool {
if ot, ok := otherType.(systemEnumType); ok && t.varName == ot.varName && len(t.indexToVal) == len(ot.indexToVal) {
for i, val := range t.indexToVal {
if ot.indexToVal[i] != val {
return false
}
}
return true
}
return false
}
// MaxTextResponseByteLength implements the Type interface
func (t systemEnumType) MaxTextResponseByteLength(ctx *sql.Context) uint32 {
return t.UnderlyingType().MaxTextResponseByteLength(ctx)
}
// Promote implements the Type interface.
func (t systemEnumType) Promote() sql.Type {
return t
}
// SQL implements Type interface.
func (t systemEnumType) SQL(ctx *sql.Context, dest []byte, v interface{}) (sqltypes.Value, error) {
if v == nil {
return sqltypes.NULL, nil
}
v, _, err := t.Convert(ctx, v)
if err != nil {
return sqltypes.Value{}, err
}
val := AppendAndSliceString(dest, v.(string))
return sqltypes.MakeTrusted(t.Type(), val), nil
}
// String implements Type interface.
func (t systemEnumType) String() string {
return "system_enum"
}
// Type implements Type interface.
func (t systemEnumType) Type() query.Type {
return sqltypes.VarChar
}
// ValueType implements Type interface.
func (t systemEnumType) ValueType() reflect.Type {
return systemEnumValueType
}
// Zero implements Type interface.
func (t systemEnumType) Zero() interface{} {
return ""
}
// CollationCoercibility implements sql.CollationCoercible interface.
func (systemEnumType) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte) {
return sql.Collation_utf8mb3_general_ci, 3
}
// EncodeValue implements SystemVariableType interface.
func (t systemEnumType) EncodeValue(val interface{}) (string, error) {
expectedVal, ok := val.(string)
if !ok {
return "", sql.ErrSystemVariableCodeFail.New(val, t.String())
}
return expectedVal, nil
}
// DecodeValue implements SystemVariableType interface.
func (t systemEnumType) DecodeValue(val string) (interface{}, error) {
outVal, _, err := t.Convert(context.Background(), val)
if err != nil {
return nil, sql.ErrSystemVariableCodeFail.New(val, t.String())
}
return outVal, nil
}
func (t systemEnumType) UnderlyingType() sql.Type {
return EnumType{}
}