forked from dolthub/go-mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
system_double.go
194 lines (168 loc) · 4.88 KB
/
system_double.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
// 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 (
"reflect"
"strconv"
"github.com/dolthub/vitess/go/sqltypes"
"github.com/dolthub/vitess/go/vt/proto/query"
"github.com/shopspring/decimal"
"github.com/gabereiser/go-mysql-server/sql"
)
var systemDoubleValueType = reflect.TypeOf(float64(0))
// systemDoubleType is an internal double type ONLY for system variables.
type systemDoubleType struct {
varName string
lowerbound float64
upperbound float64
}
var _ sql.SystemVariableType = systemDoubleType{}
// NewSystemDoubleType returns a new systemDoubleType.
func NewSystemDoubleType(varName string, lowerbound, upperbound float64) sql.SystemVariableType {
return systemDoubleType{varName, lowerbound, upperbound}
}
// Compare implements Type interface.
func (t systemDoubleType) Compare(a interface{}, b interface{}) (int, error) {
as, err := t.Convert(a)
if err != nil {
return 0, err
}
bs, err := t.Convert(b)
if err != nil {
return 0, err
}
ai := as.(float64)
bi := bs.(float64)
if ai == bi {
return 0, nil
}
if ai < bi {
return -1, nil
}
return 1, nil
}
// Convert implements Type interface.
func (t systemDoubleType) Convert(v interface{}) (interface{}, error) {
// String nor nil values are accepted
switch value := v.(type) {
case int:
return t.Convert(float64(value))
case uint:
return t.Convert(float64(value))
case int8:
return t.Convert(float64(value))
case uint8:
return t.Convert(float64(value))
case int16:
return t.Convert(float64(value))
case uint16:
return t.Convert(float64(value))
case int32:
return t.Convert(float64(value))
case uint32:
return t.Convert(float64(value))
case int64:
return t.Convert(float64(value))
case uint64:
return t.Convert(float64(value))
case float32:
return t.Convert(float64(value))
case float64:
if value >= t.lowerbound && value <= t.upperbound {
return value, nil
}
case decimal.Decimal:
f, _ := value.Float64()
return t.Convert(f)
case decimal.NullDecimal:
if value.Valid {
f, _ := value.Decimal.Float64()
return t.Convert(f)
}
}
return nil, sql.ErrInvalidSystemVariableValue.New(t.varName, v)
}
// MustConvert implements the Type interface.
func (t systemDoubleType) MustConvert(v interface{}) interface{} {
value, err := t.Convert(v)
if err != nil {
panic(err)
}
return value
}
// Equals implements the Type interface.
func (t systemDoubleType) Equals(otherType sql.Type) bool {
if ot, ok := otherType.(systemDoubleType); ok {
return t.varName == ot.varName && t.lowerbound == ot.lowerbound && t.upperbound == ot.upperbound
}
return false
}
// MaxTextResponseByteLength implements the Type interface
func (t systemDoubleType) MaxTextResponseByteLength() uint32 {
// system types are not sent directly across the wire
return 0
}
// Promote implements the Type interface.
func (t systemDoubleType) Promote() sql.Type {
return t
}
// SQL implements Type interface.
func (t systemDoubleType) SQL(ctx *sql.Context, dest []byte, v interface{}) (sqltypes.Value, error) {
if v == nil {
return sqltypes.NULL, nil
}
v, err := t.Convert(v)
if err != nil {
return sqltypes.Value{}, err
}
stop := len(dest)
dest = strconv.AppendFloat(dest, v.(float64), 'f', -1, 64)
val := dest[stop:]
return sqltypes.MakeTrusted(t.Type(), val), nil
}
// String implements Type interface.
func (t systemDoubleType) String() string {
return "system_double"
}
// Type implements Type interface.
func (t systemDoubleType) Type() query.Type {
return sqltypes.Float64
}
// ValueType implements Type interface.
func (t systemDoubleType) ValueType() reflect.Type {
return systemDoubleValueType
}
// Zero implements Type interface.
func (t systemDoubleType) Zero() interface{} {
return float64(0)
}
// EncodeValue implements SystemVariableType interface.
func (t systemDoubleType) EncodeValue(val interface{}) (string, error) {
expectedVal, ok := val.(float64)
if !ok {
return "", sql.ErrSystemVariableCodeFail.New(val, t.String())
}
return strconv.FormatFloat(expectedVal, 'f', -1, 64), nil
}
// DecodeValue implements SystemVariableType interface.
func (t systemDoubleType) DecodeValue(val string) (interface{}, error) {
parsedVal, err := strconv.ParseFloat(val, 64)
if err != nil {
return nil, err
}
if parsedVal >= t.lowerbound && parsedVal <= t.upperbound {
return parsedVal, nil
}
return nil, sql.ErrSystemVariableCodeFail.New(val, t.String())
}