forked from ravendb/ravendb-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete_compare_exchange_value_operation.go
71 lines (56 loc) · 1.86 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
package ravendb
import (
"net/http"
"reflect"
"strconv"
)
var (
_ IOperation = &DeleteCompareExchangeValueOperation{}
)
type DeleteCompareExchangeValueOperation struct {
Command *RemoveCompareExchangeValueCommand
_clazz reflect.Type
_key string
_index int
}
func NewDeleteCompareExchangeValueOperation(clazz reflect.Type, key string, index int) *DeleteCompareExchangeValueOperation {
return &DeleteCompareExchangeValueOperation{
_clazz: clazz,
_key: key,
_index: index,
}
}
func (o *DeleteCompareExchangeValueOperation) GetCommand(store *IDocumentStore, conventions *DocumentConventions, cache *HttpCache) RavenCommand {
o.Command = NewRemoveCompareExchangeValueCommand(o._clazz, o._key, o._index, conventions)
return o.Command
}
var _ RavenCommand = &RemoveCompareExchangeValueCommand{}
type RemoveCompareExchangeValueCommand struct {
RavenCommandBase
_clazz reflect.Type
_key string
_index int
_conventions *DocumentConventions
Result *CompareExchangeResult
}
func NewRemoveCompareExchangeValueCommand(clazz reflect.Type, key string, index int, conventions *DocumentConventions) *RemoveCompareExchangeValueCommand {
// TODO: validation
cmd := &RemoveCompareExchangeValueCommand{
RavenCommandBase: NewRavenCommandBase(),
_clazz: clazz,
_key: key,
_index: index,
_conventions: conventions,
}
cmd.IsReadRequest = true
return cmd
}
func (c *RemoveCompareExchangeValueCommand) CreateRequest(node *ServerNode) (*http.Request, error) {
url := node.GetUrl() + "/databases/" + node.GetDatabase() + "/cmpxchg?key=" + c._key + "&index=" + strconv.Itoa(c._index)
return NewHttpDelete(url, nil)
}
func (c *RemoveCompareExchangeValueCommand) SetResponse(response []byte, fromCache bool) error {
var err error
c.Result, err = CompareExchangeResult_parseFromString(c._clazz, response, c._conventions)
return err
}