-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathglide_client.go
331 lines (306 loc) · 8.87 KB
/
glide_client.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
package api
// #include "../lib.h"
import "C"
import (
"github.com/valkey-io/valkey-glide/go/api/options"
"github.com/valkey-io/valkey-glide/go/utils"
)
// GlideClient interface compliance check.
var _ GlideClientCommands = (*GlideClient)(nil)
// GlideClientCommands is a client used for connection in Standalone mode.
type GlideClientCommands interface {
BaseClient
GenericCommands
ServerManagementCommands
BitmapCommands
ConnectionManagementCommands
}
// GlideClient implements standalone mode operations by extending baseClient functionality.
type GlideClient struct {
*baseClient
}
// NewGlideClient creates a [GlideClientCommands] in standalone mode using the given [GlideClientConfiguration].
func NewGlideClient(config *GlideClientConfiguration) (GlideClientCommands, error) {
client, err := createClient(config)
if err != nil {
return nil, err
}
return &GlideClient{client}, nil
}
// CustomCommand executes a single command, specified by args, without checking inputs. Every part of the command,
// including the command name and subcommands, should be added as a separate value in args. The returning value depends on
// the executed
// command.
//
// See [Valkey GLIDE Wiki] for details on the restrictions and limitations of the custom command API.
//
// This function should only be used for single-response commands. Commands that don't return complete response and awaits
// (such as SUBSCRIBE), or that return potentially more than a single response (such as XREAD), or that change the client's
// behavior (such as entering pub/sub mode on RESP2 connections) shouldn't be called using this function.
//
// Parameters:
//
// args - Arguments for the custom command including the command name.
//
// Return value:
//
// The returned value for the custom command.
//
// [Valkey GLIDE Wiki]: https://github.com/valkey-io/valkey-glide/wiki/General-Concepts#custom-command
func (client *GlideClient) CustomCommand(args []string) (interface{}, error) {
res, err := client.executeCommand(C.CustomCommand, args)
if err != nil {
return nil, err
}
return handleInterfaceResponse(res)
}
// Sets configuration parameters to the specified values.
//
// Note: Prior to Version 7.0.0, only one parameter can be send.
//
// See [valkey.io] for details.
//
// Parameters:
//
// parameters - A map consisting of configuration parameters and their respective values to set.
//
// Return value:
//
// `"OK"` if all configurations have been successfully set. Otherwise, raises an error.
//
// [valkey.io]: https://valkey.io/commands/config-set/
func (client *GlideClient) ConfigSet(parameters map[string]string) (string, error) {
result, err := client.executeCommand(C.ConfigSet, utils.MapToString(parameters))
if err != nil {
return DefaultStringResponse, err
}
return handleStringResponse(result)
}
// Gets the values of configuration parameters.
//
// Note: Prior to Version 7.0.0, only one parameter can be send.
//
// See [valkey.io] for details.
//
// Parameters:
//
// args - A slice of configuration parameter names to retrieve values for.
//
// Return value:
//
// A map of api.Result[string] corresponding to the configuration parameters.
//
// [valkey.io]: https://valkey.io/commands/config-get/
func (client *GlideClient) ConfigGet(args []string) (map[string]string, error) {
res, err := client.executeCommand(C.ConfigGet, args)
if err != nil {
return nil, err
}
return handleStringToStringMapResponse(res)
}
// Select changes the currently selected database.
//
// Parameters:
//
// index - The index of the database to select.
//
// Return value:
//
// A simple `"OK"` response.
//
// [valkey.io]: https://valkey.io/commands/select/
func (client *GlideClient) Select(index int64) (string, error) {
result, err := client.executeCommand(C.Select, []string{utils.IntToString(index)})
if err != nil {
return DefaultStringResponse, err
}
return handleStringResponse(result)
}
// Gets information and statistics about the server.
//
// See [valkey.io] for details.
//
// Return value:
//
// A string with the information for the default sections.
//
// [valkey.io]: https://valkey.io/commands/info/
func (client *GlideClient) Info() (string, error) {
return client.InfoWithOptions(options.InfoOptions{Sections: []options.Section{}})
}
// Gets information and statistics about the server.
//
// See [valkey.io] for details.
//
// Parameters:
//
// options - Additional command parameters, see [InfoOptions] for more details.
//
// Return value:
//
// A string containing the information for the sections requested.
//
// [valkey.io]: https://valkey.io/commands/info/
func (client *GlideClient) InfoWithOptions(options options.InfoOptions) (string, error) {
optionArgs, err := options.ToArgs()
if err != nil {
return DefaultStringResponse, err
}
result, err := client.executeCommand(C.Info, optionArgs)
if err != nil {
return DefaultStringResponse, err
}
return handleStringResponse(result)
}
// Returns the number of keys in the currently selected database.
//
// Return value:
//
// The number of keys in the currently selected database.
//
// [valkey.io]: https://valkey.io/commands/dbsize/
func (client *GlideClient) DBSize() (int64, error) {
result, err := client.executeCommand(C.DBSize, []string{})
if err != nil {
return defaultIntResponse, err
}
return handleIntResponse(result)
}
// Echo the provided message back.
// The command will be routed a random node.
//
// Parameters:
//
// message - The provided message.
//
// Return value:
//
// The provided message
//
// [valkey.io]: https://valkey.io/commands/echo/
func (client *GlideClient) Echo(message string) (Result[string], error) {
result, err := client.executeCommand(C.Echo, []string{message})
if err != nil {
return CreateNilStringResult(), err
}
return handleStringOrNilResponse(result)
}
// Pings the server.
//
// Return value:
//
// Returns "PONG".
//
// [valkey.io]: https://valkey.io/commands/ping/
func (client *GlideClient) Ping() (string, error) {
return client.PingWithOptions(options.PingOptions{})
}
// Pings the server.
//
// Parameters:
//
// pingOptions - The PingOptions type.
//
// Return value:
//
// Returns the copy of message.
//
// [valkey.io]: https://valkey.io/commands/ping/
func (client *GlideClient) PingWithOptions(pingOptions options.PingOptions) (string, error) {
optionArgs, err := pingOptions.ToArgs()
if err != nil {
return DefaultStringResponse, err
}
result, err := client.executeCommand(C.Ping, optionArgs)
if err != nil {
return DefaultStringResponse, err
}
return handleStringResponse(result)
}
// FlushAll deletes all the keys of all the existing databases.
//
// See [valkey.io] for details.
//
// Return value:
//
// `"OK"` response on success.
//
// [valkey.io]: https://valkey.io/commands/flushall/
func (client *GlideClient) FlushAll() (string, error) {
result, err := client.executeCommand(C.FlushAll, []string{})
if err != nil {
return DefaultStringResponse, err
}
return handleStringResponse(result)
}
// Deletes all the keys of all the existing databases.
//
// See [valkey.io] for details.
//
// Parameters:
//
// mode - The flushing mode, could be either [options.SYNC] or [options.ASYNC}.
//
// Return value:
//
// `"OK"` response on success.
//
// [valkey.io]: https://valkey.io/commands/flushall/
func (client *GlideClient) FlushAllWithOptions(mode options.FlushMode) (string, error) {
result, err := client.executeCommand(C.FlushAll, []string{string(mode)})
if err != nil {
return DefaultStringResponse, err
}
return handleStringResponse(result)
}
// Deletes all the keys of the currently selected database.
//
// See [valkey.io] for details.
//
// Return value:
//
// `"OK"` response on success.
//
// [valkey.io]: https://valkey.io/commands/flushdb/
func (client *GlideClient) FlushDB() (string, error) {
result, err := client.executeCommand(C.FlushDB, []string{})
if err != nil {
return DefaultStringResponse, err
}
return handleStringResponse(result)
}
// Deletes all the keys of the currently selected database.
//
// See [valkey.io] for details.
//
// Parameters:
//
// mode - The flushing mode, could be either [options.SYNC] or [options.ASYNC}.
//
// Return value:
//
// `"OK"` response on success.
//
// [valkey.io]: https://valkey.io/commands/flushdb/
func (client *GlideClient) FlushDBWithOptions(mode options.FlushMode) (string, error) {
result, err := client.executeCommand(C.FlushDB, []string{string(mode)})
if err != nil {
return DefaultStringResponse, err
}
return handleStringResponse(result)
}
// Returns UNIX TIME of the last DB save timestamp or startup timestamp if no save was made since then.
//
// Return value:
//
// UNIX TIME of the last DB save executed with success.
//
// [valkey.io]: https://valkey.io/commands/lastsave/
func (client *GlideClient) LastSave() (int64, error) {
response, err := client.executeCommand(C.LastSave, []string{})
if err != nil {
return defaultIntResponse, err
}
return handleIntResponse(response)
}