-
Notifications
You must be signed in to change notification settings - Fork 16
/
delete_compare_exchange_value_operation.go
77 lines (61 loc) · 2.08 KB
/
delete_compare_exchange_value_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
package ravendb
import (
"net/http"
"reflect"
)
var (
_ IOperation = &DeleteCompareExchangeValueOperation{}
)
type DeleteCompareExchangeValueOperation struct {
Command *RemoveCompareExchangeValueCommand
_clazz reflect.Type
_key string
_index int64
}
func NewDeleteCompareExchangeValueOperation(clazz reflect.Type, key string, index int64) (*DeleteCompareExchangeValueOperation, error) {
if stringIsEmpty(key) {
return nil, newIllegalArgumentError("The kye argument must have value")
}
return &DeleteCompareExchangeValueOperation{
_clazz: clazz,
_key: key,
_index: index,
}, nil
}
func (o *DeleteCompareExchangeValueOperation) GetCommand(store *DocumentStore, conventions *DocumentConventions, cache *httpCache) (RavenCommand, error) {
var err error
o.Command, err = NewRemoveCompareExchangeValueCommand(o._clazz, o._key, o._index, conventions)
return o.Command, err
}
var _ RavenCommand = &RemoveCompareExchangeValueCommand{}
type RemoveCompareExchangeValueCommand struct {
RavenCommandBase
_clazz reflect.Type
_key string
_index int64
_conventions *DocumentConventions
Result *CompareExchangeResult
}
func NewRemoveCompareExchangeValueCommand(clazz reflect.Type, key string, index int64, conventions *DocumentConventions) (*RemoveCompareExchangeValueCommand, error) {
if stringIsEmpty(key) {
return nil, newIllegalArgumentError("The kye argument must have value")
}
cmd := &RemoveCompareExchangeValueCommand{
RavenCommandBase: NewRavenCommandBase(),
_clazz: clazz,
_key: key,
_index: index,
_conventions: conventions,
}
cmd.IsReadRequest = true
return cmd, nil
}
func (c *RemoveCompareExchangeValueCommand) CreateRequest(node *ServerNode) (*http.Request, error) {
url := node.URL + "/databases/" + node.Database + "/cmpxchg?key=" + c._key + "&index=" + i64toa(c._index)
return newHttpDelete(url, nil)
}
func (c *RemoveCompareExchangeValueCommand) SetResponse(response []byte, fromCache bool) error {
var err error
c.Result, err = parseCompareExchangeResultFromString(c._clazz, response, c._conventions)
return err
}