This repository was archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathlength.go
91 lines (73 loc) · 2.12 KB
/
length.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
package function
import (
"fmt"
"unicode/utf8"
"github.com/src-d/go-mysql-server/sql"
"github.com/src-d/go-mysql-server/sql/expression"
)
// Length returns the length of a string or binary content, either in bytes
// or characters.
type Length struct {
expression.UnaryExpression
CountType CountType
}
// CountType is the kind of length count.
type CountType bool
const (
// NumBytes counts the number of bytes in a string or binary content.
NumBytes = CountType(false)
// NumChars counts the number of characters in a string or binary content.
NumChars = CountType(true)
)
// NewLength returns a new LENGTH function.
func NewLength(e sql.Expression) sql.Expression {
return &Length{expression.UnaryExpression{Child: e}, NumBytes}
}
// NewCharLength returns a new CHAR_LENGTH function.
func NewCharLength(e sql.Expression) sql.Expression {
return &Length{expression.UnaryExpression{Child: e}, NumChars}
}
// WithChildren implements the Expression interface.
func (l *Length) WithChildren(children ...sql.Expression) (sql.Expression, error) {
if len(children) != 1 {
return nil, sql.ErrInvalidChildrenNumber.New(l, len(children), 1)
}
return &Length{expression.UnaryExpression{Child: children[0]}, l.CountType}, nil
}
// Type implements the sql.Expression interface.
func (l *Length) Type() sql.Type { return sql.Int32 }
func (l *Length) String() string {
if l.CountType == NumBytes {
return fmt.Sprintf("LENGTH(%s)", l.Child)
}
return fmt.Sprintf("CHAR_LENGTH(%s)", l.Child)
}
// Eval implements the sql.Expression interface.
func (l *Length) Eval(ctx *sql.Context, row sql.Row) (interface{}, error) {
val, err := l.Child.Eval(ctx, row)
if err != nil {
return nil, err
}
if val == nil {
return nil, nil
}
var content string
switch l.Child.Type() {
case sql.Blob:
val, err = sql.Blob.Convert(val)
if err != nil {
return nil, err
}
content = string(val.([]byte))
default:
val, err = sql.Text.Convert(val)
if err != nil {
return nil, err
}
content = string(val.(string))
}
if l.CountType == NumBytes {
return int32(len(content)), nil
}
return int32(utf8.RuneCountInString(content)), nil
}