-
Notifications
You must be signed in to change notification settings - Fork 199
/
batch_udf.go
127 lines (106 loc) · 3.42 KB
/
batch_udf.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
// Copyright 2014-2022 Aerospike, 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 aerospike
var _ BatchRecordIfc = &BatchUDF{}
// BatchUDF encapsulates a batch user defined function operation.
type BatchUDF struct {
BatchRecord
// Policy is the optional UDF Policy.
Policy *BatchUDFPolicy
// PackageName specify the lua module name.
PackageName string
// FunctionName specify Lua function name.
FunctionName string
// FunctionArgs specify optional arguments to lua function.
FunctionArgs []Value
// Wire protocol bytes for function args. For internal use only.
argBytes []byte
}
// NewBatchUDF creates a batch UDF operation.
func NewBatchUDF(policy *BatchUDFPolicy, key *Key, packageName, functionName string, functionArgs ...Value) *BatchUDF {
return &BatchUDF{
BatchRecord: *newSimpleBatchRecord(key, true),
Policy: policy,
PackageName: packageName,
FunctionName: functionName,
FunctionArgs: functionArgs,
}
}
// newBatchUDF creates a batch UDF operation.
func newBatchUDF(policy *BatchUDFPolicy, key *Key, packageName, functionName string, functionArgs ...Value) (*BatchUDF, *BatchRecord) {
res := &BatchUDF{
BatchRecord: *newSimpleBatchRecord(key, true),
Policy: policy,
PackageName: packageName,
FunctionName: functionName,
FunctionArgs: functionArgs,
}
return res, &res.BatchRecord
}
func (bu *BatchUDF) isWrite() bool {
return bu.hasWrite
}
func (bu *BatchUDF) key() *Key {
return bu.Key
}
// Return batch command type.
func (bu *BatchUDF) getType() batchRecordType {
return _BRT_BATCH_UDF
}
// Optimized reference equality check to determine batch wire protocol repeat flag.
// For internal use only.
func (bu *BatchUDF) equals(obj BatchRecordIfc) bool {
if other, ok := obj.(*BatchUDF); !ok {
return false
} else {
return bu.FunctionName == other.FunctionName && &bu.FunctionArgs == &other.FunctionArgs &&
bu.PackageName == other.PackageName && bu.Policy == other.Policy
}
}
// Return wire protocol size. For internal use only.
func (bu *BatchUDF) size(parentPolicy *BasePolicy) (int, Error) {
size := 2 // gen(2) = 2
if bu.Policy != nil {
if bu.Policy.FilterExpression != nil {
sz, err := bu.Policy.FilterExpression.size()
if err != nil {
return -1, err
}
size += sz + int(_FIELD_HEADER_SIZE)
}
if bu.Policy.SendKey || parentPolicy.SendKey {
if sz, err := bu.Key.userKey.EstimateSize(); err != nil {
return -1, err
} else {
size += sz + int(_FIELD_HEADER_SIZE) + 1
}
}
} else if parentPolicy.SendKey {
sz, err := bu.Key.userKey.EstimateSize()
if err != nil {
return -1, err
}
size += sz + int(_FIELD_HEADER_SIZE) + 1
}
size += len(bu.PackageName) + int(_FIELD_HEADER_SIZE)
size += len(bu.FunctionName) + int(_FIELD_HEADER_SIZE)
packer := newPacker()
sz, err := packValueArray(packer, bu.FunctionArgs)
if err != nil {
return -1, err
}
bu.argBytes = packer.Bytes()
size += sz + int(_FIELD_HEADER_SIZE)
return size, nil
}