forked from ravendb/ravendb-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathput_compare_exchange_value_operation.go
96 lines (77 loc) · 2.36 KB
/
put_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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package ravendb
import (
"net/http"
"reflect"
)
var (
_ IOperation = &PutCompareExchangeValueOperation{}
)
type PutCompareExchangeValueOperation struct {
Command *PutCompareExchangeValueCommand
_key string
_value interface{}
_index int64
}
func NewPutCompareExchangeValueOperation(key string, value interface{}, index int64) (*PutCompareExchangeValueOperation, error) {
if stringIsEmpty(key) {
return nil, newIllegalArgumentError("The key argument must have value")
}
if index < 0 {
return nil, newIllegalStateError("Index must be a non-negative number")
}
return &PutCompareExchangeValueOperation{
_key: key,
_value: value,
_index: index,
}, nil
}
func (o *PutCompareExchangeValueOperation) GetCommand(store *DocumentStore, conventions *DocumentConventions, cache *httpCache) (RavenCommand, error) {
var err error
o.Command, err = NewPutCompareExchangeValueCommand(o._key, o._value, o._index, conventions)
return o.Command, err
}
var _ RavenCommand = &PutCompareExchangeValueCommand{}
type PutCompareExchangeValueCommand struct {
RavenCommandBase
_key string
_value interface{}
_index int64
_conventions *DocumentConventions
Result *CompareExchangeResult
}
func NewPutCompareExchangeValueCommand(key string, value interface{}, index int64, conventions *DocumentConventions) (*PutCompareExchangeValueCommand, error) {
if stringIsEmpty(key) {
return nil, newIllegalArgumentError("The key argument must have value")
}
if index < 0 {
return nil, newIllegalStateError("Index must be a non-negative number")
}
cmd := &PutCompareExchangeValueCommand{
RavenCommandBase: NewRavenCommandBase(),
_key: key,
_value: value,
_index: index,
_conventions: conventions,
}
return cmd, nil
}
func (c *PutCompareExchangeValueCommand) CreateRequest(node *ServerNode) (*http.Request, error) {
url := node.URL + "/databases/" + node.Database + "/cmpxchg?key=" + c._key + "&index=" + i64toa(c._index)
m := map[string]interface{}{
"Object": c._value,
}
d, err := jsonMarshal(m)
if err != nil {
return nil, err
}
return newHttpPut(url, d)
}
func (c *PutCompareExchangeValueCommand) SetResponse(response []byte, fromCache bool) error {
tp := reflect.TypeOf(c._value)
res, err := parseCompareExchangeResultFromString(tp, response, c._conventions)
if err != nil {
return err
}
c.Result = res
return nil
}