forked from uber-go/dosa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
range.go
171 lines (153 loc) · 5.45 KB
/
range.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
// Copyright (c) 2019 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package dosa
import (
"bytes"
"fmt"
"sort"
"github.com/pkg/errors"
)
const (
// AdaptiveRangeLimit is a sentinel value that is used to indicate an intent
// to range over data in a partition as fast as possible. The server will
// determine an appropriate limit to use to range over the partition as fast
// as possible while ensuring the server remains healthy.
AdaptiveRangeLimit = -1
)
// RangeOp is used to specify constraints to Range calls
type RangeOp struct {
pager
conditioner
}
// NewRangeOp returns a new RangeOp instance
func NewRangeOp(object DomainObject) *RangeOp {
rop := &RangeOp{
conditioner: conditioner{
object: object,
conditions: map[string][]*Condition{},
},
}
return rop
}
// Limit sets the number of rows returned per call. Default is 100
func (r *RangeOp) Limit(n int) *RangeOp {
r.limit = n
return r
}
// Offset sets the pagination token. If not set, an empty token would be used.
func (r *RangeOp) Offset(token string) *RangeOp {
r.token = token
return r
}
// Fields list the non-key fields users want to fetch.
// PrimaryKey fields are always fetched.
func (r *RangeOp) Fields(fields []string) *RangeOp {
r.fieldsToRead = fields
return r
}
// String satisfies the Stringer interface
func (r *RangeOp) String() string {
result := &bytes.Buffer{}
if r.conditions == nil || len(r.conditions) == 0 {
result.WriteString("<empty>")
} else {
// sort the fields by name for deterministic results
keys := make([]string, 0, len(r.conditions))
for key := range r.conditions {
keys = append(keys, key)
}
sort.Strings(keys)
for _, field := range keys {
conds := r.conditions[field]
if result.Len() > 0 {
result.WriteString(", ")
}
result.WriteString(field)
result.WriteString(" ")
for i, cond := range conds {
if i > 0 {
_, _ = fmt.Fprintf(result, ", %s ", field)
}
_, _ = fmt.Fprintf(result, "%s %v", cond.Op.String(), cond.Value)
}
}
}
addLimitTokenString(result, r.limit, r.token)
return result.String()
}
// Eq is used to express an equality constraint for a range query
func (r *RangeOp) Eq(fieldName string, value interface{}) *RangeOp {
r.appendOp(Eq, fieldName, value)
return r
}
// Gt is used to express an "greater than" constraint for a range query
func (r *RangeOp) Gt(fieldName string, value interface{}) *RangeOp {
r.appendOp(Gt, fieldName, value)
return r
}
// GtOrEq is used to express an "greater than or equal" constraint for a
// range query
func (r *RangeOp) GtOrEq(fieldName string, value interface{}) *RangeOp {
r.appendOp(GtOrEq, fieldName, value)
return r
}
// Lt is used to express a "less than" constraint for a range query
func (r *RangeOp) Lt(fieldName string, value interface{}) *RangeOp {
r.appendOp(Lt, fieldName, value)
return r
}
// LtOrEq is used to express a "less than or equal" constraint for a
// range query
func (r *RangeOp) LtOrEq(fieldName string, value interface{}) *RangeOp {
r.appendOp(LtOrEq, fieldName, value)
return r
}
// Conditions returns all conditions embedded in the range operator
func (r *RangeOp) Conditions() map[string][]*Condition {
return r.conditions
}
// LimitRows returns number of rows to return per call
func (r *RangeOp) LimitRows() int {
return r.limit
}
// IndexFromConditions returns the name of the index or the base table to use, along with the key info
// for that index. If no suitable index could be found, an error is returned
func (ei *EntityInfo) IndexFromConditions(conditions map[string][]*Condition, searchIndexes bool) (name string, key *PrimaryKey, err error) {
identityFunc := func(s string) string { return s }
// see if we match the primary key for this table
var baseTableError error
if baseTableError = EnsureValidRangeConditions(ei.Def, ei.Def.Key, conditions, identityFunc); baseTableError == nil {
return ei.Def.Name, ei.Def.Key, nil
}
if searchIndexes == false || len(ei.Def.Indexes) == 0 {
return "", nil, baseTableError
}
// see if we match an index on this table
var indexDef *IndexDefinition
for name, indexDef = range ei.Def.Indexes {
key = indexDef.Key
// we check the range conditions before adding the uniqueness columns
if err := EnsureValidRangeConditions(ei.Def, key, conditions, identityFunc); err == nil {
return name, ei.Def.UniqueKey(key), nil
}
}
// none of the indexes work, so fail
return "", nil, errors.Wrapf(baseTableError, "No index matches specified conditions")
}