forked from couchbase/gocb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbucket_http.go
396 lines (326 loc) · 8.12 KB
/
bucket_http.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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
package gocb
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
)
type n1qlCache struct {
name string
encodedPlan string
}
type viewResponse struct {
TotalRows int `json:"total_rows,omitempty"`
Rows []json.RawMessage `json:"rows,omitempty"`
Error string `json:"error,omitempty"`
Reason string `json:"reason,omitempty"`
}
type viewError struct {
Message string `json:"message"`
Reason string `json:"reason"`
}
func (e *viewError) Error() string {
return e.Message + " - " + e.Reason
}
type ViewResults interface {
One(valuePtr interface{}) error
Next(valuePtr interface{}) bool
Close() error
}
type viewResults struct {
index int
rows []json.RawMessage
err error
}
func (r *viewResults) Next(valuePtr interface{}) bool {
if r.err != nil {
return false
}
if r.index+1 >= len(r.rows) {
return false
}
r.index++
row := r.rows[r.index]
r.err = json.Unmarshal(row, valuePtr)
if r.err != nil {
return false
}
return true
}
func (r *viewResults) Close() error {
return r.err
}
func (r *viewResults) One(valuePtr interface{}) error {
if !r.Next(valuePtr) {
err := r.Close()
if err != nil {
return err
}
return clientError{"No results returned"}
}
// Ignore any errors occuring after we already have our result
r.Close()
// Return no error as we got the one result already.
return nil
}
// Performs a view query and returns a list of rows or an error.
func (b *Bucket) ExecuteViewQuery(q *ViewQuery) (ViewResults, error) {
capiEp, err := b.getViewEp()
if err != nil {
return nil, err
}
reqUri := fmt.Sprintf("%s/_design/%s/_view/%s?%s", capiEp, q.ddoc, q.name, q.options.Encode())
req, err := http.NewRequest("GET", reqUri, nil)
if err != nil {
return nil, err
}
req.SetBasicAuth(b.name, b.password)
resp, err := b.client.HttpClient().Do(req)
if err != nil {
return nil, err
}
viewResp := viewResponse{}
jsonDec := json.NewDecoder(resp.Body)
jsonDec.Decode(&viewResp)
resp.Body.Close()
if resp.StatusCode != 200 {
if viewResp.Error != "" {
return nil, &viewError{
Message: viewResp.Error,
Reason: viewResp.Reason,
}
}
return nil, &viewError{
Message: "HTTP Error",
Reason: fmt.Sprintf("Status code was %d.", resp.StatusCode),
}
}
return &viewResults{
index: -1,
rows: viewResp.Rows,
}, nil
}
// Performs a spatial query and returns a list of rows or an error.
func (b *Bucket) ExecuteSpatialQuery(q *SpatialQuery) (ViewResults, error) {
capiEp, err := b.getViewEp()
if err != nil {
return nil, err
}
reqUri := fmt.Sprintf("%s/_design/%s/_spatial/%s?%s", capiEp, q.ddoc, q.name, q.options.Encode())
req, err := http.NewRequest("GET", reqUri, nil)
if err != nil {
return nil, err
}
req.SetBasicAuth(b.name, b.password)
resp, err := b.client.HttpClient().Do(req)
if err != nil {
return nil, err
}
viewResp := viewResponse{}
jsonDec := json.NewDecoder(resp.Body)
jsonDec.Decode(&viewResp)
resp.Body.Close()
if resp.StatusCode != 200 {
if viewResp.Error != "" {
return nil, &viewError{
Message: viewResp.Error,
Reason: viewResp.Reason,
}
}
return nil, &viewError{
Message: "HTTP Error",
Reason: fmt.Sprintf("Status code was %d.", resp.StatusCode),
}
}
return &viewResults{
index: -1,
rows: viewResp.Rows,
}, nil
}
type n1qlError struct {
Code uint32 `json:"code"`
Message string `json:"msg"`
}
func (e *n1qlError) Error() string {
return fmt.Sprintf("[%d] %s", e.Code, e.Message)
}
type n1qlResponse struct {
RequestId string `json:"requestID"`
Results []json.RawMessage `json:"results,omitempty"`
Errors []n1qlError `json:"errors,omitempty"`
Status string `json:"status"`
}
type n1qlMultiError []n1qlError
func (e *n1qlMultiError) Error() string {
return (*e)[0].Error()
}
func (e *n1qlMultiError) Code() uint32 {
return (*e)[0].Code;
}
type QueryResults interface {
One(valuePtr interface{}) error
Next(valuePtr interface{}) bool
Close() error
}
type n1qlResults struct {
index int
rows []json.RawMessage
err error
}
func (r *n1qlResults) Next(valuePtr interface{}) bool {
if r.err != nil {
return false
}
if r.index+1 >= len(r.rows) {
return false
}
r.index++
row := r.rows[r.index]
r.err = json.Unmarshal(row, valuePtr)
if r.err != nil {
return false
}
return true
}
func (r *n1qlResults) Close() error {
return r.err
}
func (r *n1qlResults) One(valuePtr interface{}) error {
if !r.Next(valuePtr) {
err := r.Close()
if err != nil {
return err
}
return clientError{"No results returned"}
}
// Ignore any errors occuring after we already have our result
r.Close()
// Return no error as we got the one result already.
return nil
}
func (b *Bucket) executeN1qlQuery(n1qlEp string, opts map[string]interface{}) (ViewResults, error) {
reqUri := fmt.Sprintf("%s/query/service", n1qlEp)
reqJson, err := json.Marshal(opts)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", reqUri, bytes.NewBuffer(reqJson))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
req.SetBasicAuth(b.name, b.password)
resp, err := b.client.HttpClient().Do(req)
if err != nil {
return nil, err
}
n1qlResp := n1qlResponse{}
jsonDec := json.NewDecoder(resp.Body)
jsonDec.Decode(&n1qlResp)
resp.Body.Close()
if resp.StatusCode != 200 {
if len(n1qlResp.Errors) > 0 {
return nil, (*n1qlMultiError)(&n1qlResp.Errors)
}
return nil, &viewError{
Message: "HTTP Error",
Reason: fmt.Sprintf("Status code was %d.", resp.StatusCode),
}
}
return &n1qlResults{
index: -1,
rows: n1qlResp.Results,
}, nil
}
func (b *Bucket) prepareN1qlQuery(n1qlEp string, opts map[string]interface{}) (*n1qlCache, error) {
prepOpts := make(map[string]interface{})
for k, v := range opts {
prepOpts[k] = v
}
prepOpts["statement"] = "PREPARE " + opts["statement"].(string);
prepRes, err := b.executeN1qlQuery(n1qlEp, prepOpts)
if err != nil {
return nil, err
}
var preped n1qlPrepData
err = prepRes.One(&preped)
if (err != nil) {
return nil, err
}
return &n1qlCache{
name: preped.Name,
encodedPlan: preped.EncodedPlan,
}, nil
}
type n1qlPrepData struct {
EncodedPlan string `json:"encoded_plan"`
Name string `json:"name"`
}
// Performs a spatial query and returns a list of rows or an error.
func (b *Bucket) ExecuteN1qlQuery(q *N1qlQuery, params interface{}) (ViewResults, error) {
n1qlEp, err := b.getN1qlEp()
if err != nil {
return nil, err
}
execOpts := make(map[string]interface{})
for k, v := range q.options {
execOpts[k] = v
}
if params != nil {
args, isArray := params.([]interface{})
if isArray {
execOpts["args"] = args
} else {
mapArgs, isMap := params.(map[string]interface{})
if isMap {
for key, value := range mapArgs {
execOpts["$"+key] = value
}
} else {
panic("Invalid params argument passed")
}
}
}
if q.adHoc {
return b.executeN1qlQuery(n1qlEp, execOpts)
}
// Do Prepared Statement Logic
var cachedStmt *n1qlCache
stmtStr := q.options["statement"].(string);
b.queryCacheLock.RLock()
cachedStmt = b.queryCache[stmtStr]
b.queryCacheLock.RUnlock()
if cachedStmt != nil {
// Attempt to execute our cached query plan
delete(execOpts, "statement")
execOpts["prepared"] = cachedStmt.name
execOpts["encoded_plan"] = cachedStmt.encodedPlan
results, err := b.executeN1qlQuery(n1qlEp, execOpts)
if err == nil {
return results, nil
}
// If we get error 4050, 4070 or 5000, we should attempt
// to reprepare the statement immediately before failing.
n1qlErr, isN1qlErr := err.(*n1qlMultiError)
if !isN1qlErr {
return nil, err
}
if n1qlErr.Code() != 4050 && n1qlErr.Code() != 4070 && n1qlErr.Code() != 5000 {
return nil, err
}
}
// Prepare the query
cachedStmt, err = b.prepareN1qlQuery(n1qlEp, q.options)
if err != nil {
return nil, err
}
// Save new cached statement
b.queryCacheLock.Lock()
b.queryCache[stmtStr] = cachedStmt
b.queryCacheLock.Unlock()
// Update with new prepared data
delete(execOpts, "statement")
execOpts["prepared"] = cachedStmt.name
execOpts["encoded_plan"] = cachedStmt.encodedPlan
return b.executeN1qlQuery(n1qlEp, execOpts)
}