This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
forked from aerospike/aerospike-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
large_object.go
126 lines (110 loc) · 3.71 KB
/
large_object.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
// Copyright 2013-2014 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
// LargeObject interface defines methods to work with LDTs.
type LargeObject interface {
packageName() string
// Destroy the bin containing LDT.
Destroy() error
// Size returns the size of the LDT.
Size() (int, error)
// GetConfig returns a map containing LDT config values.
GetConfig() (map[interface{}]interface{}, error)
// SetCapacity sets LDT's capacity.
SetCapacity(capacity int) error
// GetCapacity returns the capacity of the LDT.
GetCapacity() (int, error)
}
// Create and manage a large object within a single bin. A large object is last in/first out (LIFO).
type baseLargeObject struct {
client *Client
policy *WritePolicy
key *Key
binName Value
userModule Value
}
// Initialize large large object operator.
//
// client client
// policy generic configuration parameters, pass in nil for defaults
// key unique record identifier
// binName bin name
// userModule Lua function name that initializes list configuration parameters, pass nil for default large object
func newLargeObject(client *Client, policy *WritePolicy, key *Key, binName string, userModule string) *baseLargeObject {
r := &baseLargeObject{
client: client,
policy: policy,
key: key,
binName: NewStringValue(binName),
}
if userModule == "" {
r.userModule = NewNullValue()
} else {
r.userModule = NewStringValue(userModule)
}
return r
}
// Delete bin containing the object.
func (lo *baseLargeObject) destroy(ifc LargeObject) error {
_, err := lo.client.Execute(lo.policy, lo.key, ifc.packageName(), "destroy", lo.binName)
return err
}
// Return size of object.
func (lo *baseLargeObject) size(ifc LargeObject) (int, error) {
ret, err := lo.client.Execute(lo.policy, lo.key, ifc.packageName(), "size", lo.binName)
if err != nil {
return -1, err
}
if ret != nil {
return ret.(int), nil
}
return 0, nil
}
// Return map of object configuration parameters.
func (lo *baseLargeObject) getConfig(ifc LargeObject) (map[interface{}]interface{}, error) {
res, err := lo.client.Execute(lo.policy, lo.key, ifc.packageName(), "get_config", lo.binName)
if err != nil {
return nil, err
}
if res == nil {
return nil, nil
}
return res.(map[interface{}]interface{}), err
}
// Set maximum number of entries in the object.
//
// capacity max entries in large object
func (lo *baseLargeObject) setCapacity(ifc LargeObject, capacity int) error {
_, err := lo.client.Execute(lo.policy, lo.key, ifc.packageName(), "set_capacity", lo.binName, NewIntegerValue(capacity))
return err
}
// Return maximum number of entries in the object.
func (lo *baseLargeObject) getCapacity(ifc LargeObject) (int, error) {
ret, err := lo.client.Execute(lo.policy, lo.key, ifc.packageName(), "get_capacity", lo.binName)
if err != nil {
return -1, err
}
return ret.(int), nil
}
// Return list of all objects on the large object.
func (lo *baseLargeObject) scan(ifc LargeObject) ([]interface{}, error) {
ret, err := lo.client.Execute(lo.policy, lo.key, ifc.packageName(), "scan", lo.binName)
if err != nil {
return nil, err
}
if ret == nil {
return []interface{}{}, nil
}
return ret.([]interface{}), nil
}