forked from aerospike/aerospike-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
operation.go
92 lines (75 loc) · 3 KB
/
operation.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
// Copyright 2013-2016 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
// OperationType determines operation type
type OperationType *struct{ op byte }
// Valid OperationType values that can be used to create custom Operations.
// The names are self-explanatory.
var (
READ OperationType = &struct{ op byte }{1}
// READ_HEADER *OperationType = &struct{op: 1 }
WRITE OperationType = &struct{ op byte }{2}
CDT_READ OperationType = &struct{ op byte }{3}
CDT_MODIFY OperationType = &struct{ op byte }{4}
MAP_READ OperationType = &struct{ op byte }{3}
MAP_MODIFY OperationType = &struct{ op byte }{4}
ADD OperationType = &struct{ op byte }{5}
APPEND OperationType = &struct{ op byte }{9}
PREPEND OperationType = &struct{ op byte }{10}
TOUCH OperationType = &struct{ op byte }{11}
)
// Operation contains operation definition.
// This struct is used in client's operate() method.
type Operation struct {
// OpType determines type of operation.
OpType OperationType
// BinName (Optional) determines the name of bin used in operation.
BinName string
// BinValue (Optional) determines bin value used in operation.
BinValue Value
// will be true ONLY for GetHeader() operation
headerOnly bool
}
// GetOpForBin creates read bin database operation.
func GetOpForBin(binName string) *Operation {
return &Operation{OpType: READ, BinName: binName, BinValue: NewNullValue()}
}
// GetOp creates read all record bins database operation.
func GetOp() *Operation {
return &Operation{OpType: READ, BinValue: NewNullValue()}
}
// GetHeaderOp creates read record header database operation.
func GetHeaderOp() *Operation {
return &Operation{OpType: READ, headerOnly: true, BinValue: NewNullValue()}
}
// PutOp creates set database operation.
func PutOp(bin *Bin) *Operation {
return &Operation{OpType: WRITE, BinName: bin.Name, BinValue: bin.Value}
}
// AppendOp creates string append database operation.
func AppendOp(bin *Bin) *Operation {
return &Operation{OpType: APPEND, BinName: bin.Name, BinValue: bin.Value}
}
// PrependOp creates string prepend database operation.
func PrependOp(bin *Bin) *Operation {
return &Operation{OpType: PREPEND, BinName: bin.Name, BinValue: bin.Value}
}
// AddOp creates integer add database operation.
func AddOp(bin *Bin) *Operation {
return &Operation{OpType: ADD, BinName: bin.Name, BinValue: bin.Value}
}
// TouchOp creates touch database operation.
func TouchOp() *Operation {
return &Operation{OpType: TOUCH, BinValue: NewNullValue()}
}