forked from meilisearch/meilisearch-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_documents.go
568 lines (501 loc) · 17.7 KB
/
index_documents.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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
package meilisearch
import (
"bufio"
"bytes"
"encoding/csv"
"encoding/json"
"fmt"
"io"
"math"
"net/http"
"net/url"
"reflect"
"strconv"
"strings"
)
func transformStringVariadicToMap(primaryKey ...string) (options map[string]string) {
if primaryKey != nil {
return map[string]string{
"primaryKey": primaryKey[0],
}
}
return nil
}
func transformCsvDocumentsQueryToMap(options *CsvDocumentsQuery) map[string]string {
var optionsMap map[string]string
data, _ := json.Marshal(options)
_ = json.Unmarshal(data, &optionsMap)
return optionsMap
}
func generateQueryForOptions(options map[string]string) (urlQuery string) {
q := url.Values{}
for key, val := range options {
q.Add(key, val)
}
return q.Encode()
}
func sendCsvRecords(documentsCsvFunc func(recs []byte, op *CsvDocumentsQuery) (resp *TaskInfo, err error), records [][]string, options *CsvDocumentsQuery) (*TaskInfo, error) {
b := new(bytes.Buffer)
w := csv.NewWriter(b)
w.UseCRLF = true
err := w.WriteAll(records)
if err != nil {
return nil, fmt.Errorf("could not write CSV records: %w", err)
}
resp, err := documentsCsvFunc(b.Bytes(), options)
if err != nil {
return nil, err
}
return resp, nil
}
func (i Index) saveDocumentsFromReaderInBatches(documents io.Reader, batchSize int, documentsCsvFunc func(recs []byte, op *CsvDocumentsQuery) (resp *TaskInfo, err error), options *CsvDocumentsQuery) (resp []TaskInfo, err error) {
// Because of the possibility of multiline fields it's not safe to split
// into batches by lines, we'll have to parse the file and reassemble it
// into smaller parts. RFC 4180 compliant input with a header row is
// expected.
// Records are read and sent continuously to avoid reading all content
// into memory. However, this means that only part of the documents might
// be added successfully.
var (
responses []TaskInfo
header []string
records [][]string
)
r := csv.NewReader(documents)
for {
// Read CSV record (empty lines and comments are already skipped by csv.Reader)
record, err := r.Read()
if err == io.EOF {
break
}
if err != nil {
return nil, fmt.Errorf("could not read CSV record: %w", err)
}
// Store first record as header
if header == nil {
header = record
continue
}
// Add header record to every batch
if len(records) == 0 {
records = append(records, header)
}
records = append(records, record)
// After reaching batchSize (not counting the header record) assemble a CSV file and send records
if len(records) == batchSize+1 {
resp, err := sendCsvRecords(documentsCsvFunc, records, options)
if err != nil {
return nil, err
}
responses = append(responses, *resp)
records = nil
}
}
// Send remaining records as the last batch if there is any
if len(records) > 0 {
resp, err := sendCsvRecords(documentsCsvFunc, records, options)
if err != nil {
return nil, err
}
responses = append(responses, *resp)
}
return responses, nil
}
func (i Index) saveDocumentsInBatches(documentsPtr interface{}, batchSize int, documentFunc func(documentsPtr interface{}, primaryKey ...string) (resp *TaskInfo, err error), primaryKey ...string) (resp []TaskInfo, err error) {
arr := reflect.ValueOf(documentsPtr)
lenDocs := arr.Len()
numBatches := int(math.Ceil(float64(lenDocs) / float64(batchSize)))
resp = make([]TaskInfo, numBatches)
for j := 0; j < numBatches; j++ {
end := (j + 1) * batchSize
if end > lenDocs {
end = lenDocs
}
batch := arr.Slice(j*batchSize, end).Interface()
if len(primaryKey) != 0 {
respID, err := documentFunc(batch, primaryKey[0])
if err != nil {
return nil, err
}
resp[j] = *respID
} else {
respID, err := documentFunc(batch)
if err != nil {
return nil, err
}
resp[j] = *respID
}
}
return resp, nil
}
func (i Index) GetDocument(identifier string, request *DocumentQuery, documentPtr interface{}) error {
req := internalRequest{
endpoint: "/indexes/" + i.UID + "/documents/" + identifier,
method: http.MethodGet,
withRequest: nil,
withResponse: documentPtr,
withQueryParams: map[string]string{},
acceptedStatusCodes: []int{http.StatusOK},
functionName: "GetDocument",
}
if request != nil {
if len(request.Fields) != 0 {
req.withQueryParams["fields"] = strings.Join(request.Fields, ",")
}
}
if err := i.client.executeRequest(req); err != nil {
return err
}
return nil
}
func (i Index) GetDocuments(request *DocumentsQuery, resp *DocumentsResult) error {
req := internalRequest{
endpoint: "/indexes/" + i.UID + "/documents",
method: http.MethodGet,
contentType: contentTypeJSON,
withRequest: nil,
withResponse: resp,
withQueryParams: nil,
acceptedStatusCodes: []int{http.StatusOK},
functionName: "GetDocuments",
}
if request != nil && request.Filter == nil {
req.withQueryParams = map[string]string{}
if request.Limit != 0 {
req.withQueryParams["limit"] = strconv.FormatInt(request.Limit, 10)
}
if request.Offset != 0 {
req.withQueryParams["offset"] = strconv.FormatInt(request.Offset, 10)
}
if len(request.Fields) != 0 {
req.withQueryParams["fields"] = strings.Join(request.Fields, ",")
}
} else if request != nil && request.Filter != nil {
req.withRequest = request
req.method = http.MethodPost
req.endpoint = req.endpoint + "/fetch"
}
if err := i.client.executeRequest(req); err != nil {
return VersionErrorHintMessage(err, &req)
}
return nil
}
func (i *Index) addDocuments(documentsPtr interface{}, contentType string, options map[string]string) (resp *TaskInfo, err error) {
resp = &TaskInfo{}
endpoint := ""
if options == nil {
endpoint = "/indexes/" + i.UID + "/documents"
} else {
for key, val := range options {
if key == "primaryKey" {
i.PrimaryKey = val
}
}
endpoint = "/indexes/" + i.UID + "/documents?" + generateQueryForOptions(options)
}
req := internalRequest{
endpoint: endpoint,
method: http.MethodPost,
contentType: contentType,
withRequest: documentsPtr,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusAccepted},
functionName: "AddDocuments",
}
if err = i.client.executeRequest(req); err != nil {
return nil, err
}
return resp, nil
}
func (i Index) AddDocuments(documentsPtr interface{}, primaryKey ...string) (resp *TaskInfo, err error) {
return i.addDocuments(documentsPtr, contentTypeJSON, transformStringVariadicToMap(primaryKey...))
}
func (i Index) AddDocumentsInBatches(documentsPtr interface{}, batchSize int, primaryKey ...string) (resp []TaskInfo, err error) {
return i.saveDocumentsInBatches(documentsPtr, batchSize, i.AddDocuments, primaryKey...)
}
func (i Index) AddDocumentsCsv(documents []byte, options *CsvDocumentsQuery) (resp *TaskInfo, err error) {
// []byte avoids JSON conversion in Client.sendRequest()
return i.addDocuments(documents, contentTypeCSV, transformCsvDocumentsQueryToMap(options))
}
func (i Index) AddDocumentsCsvFromReader(documents io.Reader, options *CsvDocumentsQuery) (resp *TaskInfo, err error) {
// Using io.Reader would avoid JSON conversion in Client.sendRequest(), but
// read content to memory anyway because of problems with streamed bodies
data, err := io.ReadAll(documents)
if err != nil {
return nil, fmt.Errorf("could not read documents: %w", err)
}
return i.addDocuments(data, contentTypeCSV, transformCsvDocumentsQueryToMap(options))
}
func (i Index) AddDocumentsCsvInBatches(documents []byte, batchSize int, options *CsvDocumentsQuery) (resp []TaskInfo, err error) {
// Reuse io.Reader implementation
return i.AddDocumentsCsvFromReaderInBatches(bytes.NewReader(documents), batchSize, options)
}
func (i Index) AddDocumentsCsvFromReaderInBatches(documents io.Reader, batchSize int, options *CsvDocumentsQuery) (resp []TaskInfo, err error) {
return i.saveDocumentsFromReaderInBatches(documents, batchSize, i.AddDocumentsCsv, options)
}
func (i Index) AddDocumentsNdjson(documents []byte, primaryKey ...string) (resp *TaskInfo, err error) {
// []byte avoids JSON conversion in Client.sendRequest()
return i.addDocuments([]byte(documents), contentTypeNDJSON, transformStringVariadicToMap(primaryKey...))
}
func (i Index) AddDocumentsNdjsonFromReader(documents io.Reader, primaryKey ...string) (resp *TaskInfo, err error) {
// Using io.Reader would avoid JSON conversion in Client.sendRequest(), but
// read content to memory anyway because of problems with streamed bodies
data, err := io.ReadAll(documents)
if err != nil {
return nil, fmt.Errorf("could not read documents: %w", err)
}
return i.addDocuments(data, contentTypeNDJSON, transformStringVariadicToMap(primaryKey...))
}
func (i Index) AddDocumentsNdjsonInBatches(documents []byte, batchSize int, primaryKey ...string) (resp []TaskInfo, err error) {
// Reuse io.Reader implementation
return i.AddDocumentsNdjsonFromReaderInBatches(bytes.NewReader(documents), batchSize, primaryKey...)
}
func (i Index) AddDocumentsNdjsonFromReaderInBatches(documents io.Reader, batchSize int, primaryKey ...string) (resp []TaskInfo, err error) {
// NDJSON files supposed to contain a valid JSON document in each line, so
// it's safe to split by lines.
// Lines are read and sent continuously to avoid reading all content into
// memory. However, this means that only part of the documents might be
// added successfully.
sendNdjsonLines := func(lines []string) (*TaskInfo, error) {
b := new(bytes.Buffer)
for _, line := range lines {
_, err := b.WriteString(line)
if err != nil {
return nil, fmt.Errorf("could not write NDJSON line: %w", err)
}
err = b.WriteByte('\n')
if err != nil {
return nil, fmt.Errorf("could not write NDJSON line: %w", err)
}
}
resp, err := i.AddDocumentsNdjson(b.Bytes(), primaryKey...)
if err != nil {
return nil, err
}
return resp, nil
}
var (
responses []TaskInfo
lines []string
)
scanner := bufio.NewScanner(documents)
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
// Skip empty lines (NDJSON might not allow this, but just to be sure)
if line == "" {
continue
}
lines = append(lines, line)
// After reaching batchSize send NDJSON lines
if len(lines) == batchSize {
resp, err := sendNdjsonLines(lines)
if err != nil {
return nil, err
}
responses = append(responses, *resp)
lines = nil
}
}
if err := scanner.Err(); err != nil {
return nil, fmt.Errorf("could not read NDJSON: %w", err)
}
// Send remaining records as the last batch if there is any
if len(lines) > 0 {
resp, err := sendNdjsonLines(lines)
if err != nil {
return nil, err
}
responses = append(responses, *resp)
}
return responses, nil
}
func (i *Index) updateDocuments(documentsPtr interface{}, contentType string, options map[string]string) (resp *TaskInfo, err error) {
resp = &TaskInfo{}
endpoint := ""
if options == nil {
endpoint = "/indexes/" + i.UID + "/documents"
} else {
for key, val := range options {
if key == "primaryKey" {
i.PrimaryKey = val
}
}
endpoint = "/indexes/" + i.UID + "/documents?" + generateQueryForOptions(options)
}
req := internalRequest{
endpoint: endpoint,
method: http.MethodPut,
contentType: contentType,
withRequest: documentsPtr,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusAccepted},
functionName: "UpdateDocuments",
}
if err = i.client.executeRequest(req); err != nil {
return nil, err
}
return resp, nil
}
func (i Index) UpdateDocuments(documentsPtr interface{}, primaryKey ...string) (resp *TaskInfo, err error) {
return i.updateDocuments(documentsPtr, contentTypeJSON, transformStringVariadicToMap(primaryKey...))
}
func (i Index) UpdateDocumentsInBatches(documentsPtr interface{}, batchSize int, primaryKey ...string) (resp []TaskInfo, err error) {
return i.saveDocumentsInBatches(documentsPtr, batchSize, i.UpdateDocuments, primaryKey...)
}
func (i Index) UpdateDocumentsCsv(documents []byte, options *CsvDocumentsQuery) (resp *TaskInfo, err error) {
return i.updateDocuments(documents, contentTypeCSV, transformCsvDocumentsQueryToMap(options))
}
func (i Index) UpdateDocumentsCsvFromReader(documents io.Reader, options *CsvDocumentsQuery) (resp *TaskInfo, err error) {
// Using io.Reader would avoid JSON conversion in Client.sendRequest(), but
// read content to memory anyway because of problems with streamed bodies
data, err := io.ReadAll(documents)
if err != nil {
return nil, fmt.Errorf("could not read documents: %w", err)
}
return i.updateDocuments(data, contentTypeCSV, transformCsvDocumentsQueryToMap(options))
}
func (i Index) UpdateDocumentsCsvInBatches(documents []byte, batchSize int, options *CsvDocumentsQuery) (resp []TaskInfo, err error) {
// Reuse io.Reader implementation
return i.UpdateDocumentsCsvFromReaderInBatches(bytes.NewReader(documents), batchSize, options)
}
func (i Index) UpdateDocumentsCsvFromReaderInBatches(documents io.Reader, batchSize int, options *CsvDocumentsQuery) (resp []TaskInfo, err error) {
return i.saveDocumentsFromReaderInBatches(documents, batchSize, i.UpdateDocumentsCsv, options)
}
func (i Index) UpdateDocumentsNdjson(documents []byte, primaryKey ...string) (resp *TaskInfo, err error) {
return i.updateDocuments(documents, contentTypeNDJSON, transformStringVariadicToMap(primaryKey...))
}
func (i Index) UpdateDocumentsNdjsonFromReader(documents io.Reader, primaryKey ...string) (resp *TaskInfo, err error) {
// Using io.Reader would avoid JSON conversion in Client.sendRequest(), but
// read content to memory anyway because of problems with streamed bodies
data, err := io.ReadAll(documents)
if err != nil {
return nil, fmt.Errorf("could not read documents: %w", err)
}
return i.updateDocuments(data, contentTypeNDJSON, transformStringVariadicToMap(primaryKey...))
}
func (i Index) UpdateDocumentsNdjsonInBatches(documents []byte, batchsize int, primaryKey ...string) (resp []TaskInfo, err error) {
return i.updateDocumentsNdjsonFromReaderInBatches(bytes.NewReader(documents), batchsize, primaryKey...)
}
func (i Index) updateDocumentsNdjsonFromReaderInBatches(documents io.Reader, batchSize int, primaryKey ...string) (resp []TaskInfo, err error) {
// NDJSON files supposed to contain a valid JSON document in each line, so
// it's safe to split by lines.
// Lines are read and sent continuously to avoid reading all content into
// memory. However, this means that only part of the documents might be
// added successfully.
sendNdjsonLines := func(lines []string) (*TaskInfo, error) {
b := new(bytes.Buffer)
for _, line := range lines {
_, err := b.WriteString(line)
if err != nil {
return nil, fmt.Errorf("Could not write NDJSON line: %w", err)
}
err = b.WriteByte('\n')
if err != nil {
return nil, fmt.Errorf("Could not write NDJSON line: %w", err)
}
}
resp, err := i.UpdateDocumentsNdjson(b.Bytes(), primaryKey...)
if err != nil {
return nil, err
}
return resp, nil
}
var (
responses []TaskInfo
lines []string
)
scanner := bufio.NewScanner(documents)
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
// Skip empty lines (NDJSON might not allow this, but just to be sure)
if line == "" {
continue
}
lines = append(lines, line)
// After reaching batchSize send NDJSON lines
if len(lines) == batchSize {
resp, err := sendNdjsonLines(lines)
if err != nil {
return nil, err
}
responses = append(responses, *resp)
lines = nil
}
}
if err := scanner.Err(); err != nil {
return nil, fmt.Errorf("Could not read NDJSON: %w", err)
}
// Send remaining records as the last batch if there is any
if len(lines) > 0 {
resp, err := sendNdjsonLines(lines)
if err != nil {
return nil, err
}
responses = append(responses, *resp)
}
return responses, nil
}
func (i Index) DeleteDocument(identifier string) (resp *TaskInfo, err error) {
resp = &TaskInfo{}
req := internalRequest{
endpoint: "/indexes/" + i.UID + "/documents/" + identifier,
method: http.MethodDelete,
withRequest: nil,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusAccepted},
functionName: "DeleteDocument",
}
if err := i.client.executeRequest(req); err != nil {
return nil, err
}
return resp, nil
}
func (i Index) DeleteDocuments(identifier []string) (resp *TaskInfo, err error) {
resp = &TaskInfo{}
req := internalRequest{
endpoint: "/indexes/" + i.UID + "/documents/delete-batch",
method: http.MethodPost,
contentType: contentTypeJSON,
withRequest: identifier,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusAccepted},
functionName: "DeleteDocuments",
}
if err := i.client.executeRequest(req); err != nil {
return nil, err
}
return resp, nil
}
func (i Index) DeleteDocumentsByFilter(filter interface{}) (resp *TaskInfo, err error) {
resp = &TaskInfo{}
req := internalRequest{
endpoint: "/indexes/" + i.UID + "/documents/delete",
method: http.MethodPost,
contentType: contentTypeJSON,
withRequest: map[string]interface{}{
"filter": filter,
},
withResponse: resp,
acceptedStatusCodes: []int{http.StatusAccepted},
functionName: "DeleteDocumentsByFilter",
}
if err := i.client.executeRequest(req); err != nil {
return nil, VersionErrorHintMessage(err, &req)
}
return resp, nil
}
func (i Index) DeleteAllDocuments() (resp *TaskInfo, err error) {
resp = &TaskInfo{}
req := internalRequest{
endpoint: "/indexes/" + i.UID + "/documents",
method: http.MethodDelete,
withRequest: nil,
withResponse: resp,
acceptedStatusCodes: []int{http.StatusAccepted},
functionName: "DeleteAllDocuments",
}
if err = i.client.executeRequest(req); err != nil {
return nil, err
}
return resp, nil
}