-
Notifications
You must be signed in to change notification settings - Fork 28
/
pindex_bleve_doc.go
402 lines (351 loc) · 10.6 KB
/
pindex_bleve_doc.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
// Copyright 2016-Present Couchbase, Inc.
//
// Use of this software is governed by the Business Source License included
// in the file licenses/BSL-Couchbase.txt. As of the Change Date specified
// in that file, in accordance with the Business Source License, use of this
// software will be governed by the Apache License, Version 2.0, included in
// the file licenses/APL2.txt.
package cbft
import (
"bytes"
"encoding/binary"
"encoding/json"
"fmt"
"reflect"
"regexp"
"strings"
"github.com/couchbase/cbgt"
log "github.com/couchbase/clog"
)
var ConfigModeCollPrefix = "scope.collection"
var ConfigModeCollPrefixLen = len(ConfigModeCollPrefix)
var CollMetaFieldName = "_$scope_$collection"
var reservedXattrsKeys = map[string]struct{}{
"txn": struct{}{},
}
type BleveInterface interface{}
type BleveDocument struct {
typ string
BleveInterface `json:""`
}
func (c *BleveDocument) Type() string {
return c.typ
}
func (c *BleveDocument) SetType(nTyp string) {
c.typ = nTyp
}
type collMetaField struct {
scopeDotColl string
typeMappings []string // for multiple mappings for a collection
value string // _$<scope_id>_$<collection_id>
}
type BleveDocumentConfig struct {
Mode string `json:"mode"`
TypeField string `json:"type_field"`
DocIDPrefixDelim string `json:"docid_prefix_delim"`
DocIDRegexp *regexp.Regexp `json:"docid_regexp"`
CollPrefixLookup map[uint32]*collMetaField
legacyMode bool
}
func (b *BleveDocumentConfig) UnmarshalJSON(data []byte) error {
docIDRegexp := ""
if b.DocIDRegexp != nil {
docIDRegexp = b.DocIDRegexp.String()
}
if b.CollPrefixLookup == nil {
b.CollPrefixLookup = make(map[uint32]*collMetaField, 1)
}
tmp := struct {
Mode string `json:"mode"`
TypeField string `json:"type_field"`
DocIDPrefixDelim string `json:"docid_prefix_delim"`
DocIDRegexp string `json:"docid_regexp"`
CollPrefixLookup map[uint32]*collMetaField
}{
Mode: b.Mode,
TypeField: b.TypeField,
DocIDPrefixDelim: b.DocIDPrefixDelim,
DocIDRegexp: docIDRegexp,
CollPrefixLookup: b.CollPrefixLookup,
}
err := json.Unmarshal(data, &tmp)
if err != nil {
return err
}
b.Mode = tmp.Mode
switch tmp.Mode {
case "scope.collection":
return nil
case "scope.collection.type_field":
fallthrough
case "type_field":
b.TypeField = tmp.TypeField
if b.TypeField == "" {
return fmt.Errorf("with mode type_field, type_field cannot be empty")
}
case "scope.collection.docid_prefix":
fallthrough
case "docid_prefix":
b.DocIDPrefixDelim = tmp.DocIDPrefixDelim
if b.DocIDPrefixDelim == "" {
return fmt.Errorf("with mode docid_prefix, docid_prefix_delim cannot be empty")
}
case "scope.collection.docid_regexp":
fallthrough
case "docid_regexp":
if tmp.DocIDRegexp != "" {
b.DocIDRegexp, err = regexp.Compile(tmp.DocIDRegexp)
if err != nil {
return err
}
} else {
return fmt.Errorf("with mode docid_regexp, docid_regexp cannot be empty")
}
default:
return fmt.Errorf("unknown mode: %s", tmp.Mode)
}
return nil
}
func (b *BleveDocumentConfig) MarshalJSON() ([]byte, error) {
docIDRegexp := ""
if b.DocIDRegexp != nil {
docIDRegexp = b.DocIDRegexp.String()
}
tmp := struct {
Mode string `json:"mode"`
TypeField string `json:"type_field"`
DocIDPrefixDelim string `json:"docid_prefix_delim"`
DocIDRegexp string `json:"docid_regexp"`
}{
Mode: b.Mode,
TypeField: b.TypeField,
DocIDPrefixDelim: b.DocIDPrefixDelim,
DocIDRegexp: docIDRegexp,
}
return json.Marshal(&tmp)
}
func (b *BleveDocumentConfig) multiCollection() bool {
return len(b.CollPrefixLookup) > 1
}
func (b *BleveDocumentConfig) BuildDocumentEx(key, val []byte,
defaultType string, extrasType cbgt.DestExtrasType,
req interface{}, extras []byte) (*BleveDocument, []byte, error) {
var cmf *collMetaField
var xattrs map[string]interface{}
var collectionId []byte
var err error
// extract the metadata associated with the DCP mutation operation only if
// the ingestion is via gocbcore for eg the extras might have xAttrs or other
// metadata info useful while building the document to be indexed.
//
// in case of non-gocbcore ingestion, the extras are to be extracted according
// whatever interface is dictated which is inline with the extrasType.
// for eg in case of feed type gocouchbase, extra type is DEST_EXTRAS_TYPE_MCREQUEST and
// the req interface{} is of type *gomemcached.MCRequest
if extrasType == cbgt.DEST_EXTRAS_TYPE_GOCBCORE_DCP {
gocbcoreExtras, ok := req.(cbgt.GocbcoreDCPExtras)
if !ok {
return nil, nil, fmt.Errorf("bleve: DataUpdateEx unable to typecast GocbcoreDCPExtras")
}
if gocbcoreExtras.Datatype&4 > 0 {
cmf = b.CollPrefixLookup[gocbcoreExtras.CollectionId]
xattrs, val, err = b.buildXAttrs(val)
if err != nil {
log.Errorf("BuildDocumentEx: error parsing xattrs: %v", err)
}
collectionId = make([]byte, 4)
binary.LittleEndian.PutUint32(collectionId[0:], gocbcoreExtras.CollectionId)
} else {
cmf = b.CollPrefixLookup[gocbcoreExtras.CollectionId]
collectionId = make([]byte, 4)
binary.LittleEndian.PutUint32(collectionId, gocbcoreExtras.CollectionId)
}
}
if len(extras) >= 8 {
cmf = b.CollPrefixLookup[binary.LittleEndian.Uint32(extras[4:])]
collectionId = extras[4:8]
}
var v map[string]interface{}
err = json.Unmarshal(val, &v)
if err != nil || v == nil {
v = map[string]interface{}{}
}
// Add the xattr fields back into the document mapping
// under the xattrs field mapping
if _, ok := v[xattrsMappingName]; !ok && xattrs != nil {
v[xattrsMappingName] = xattrs
}
if cmf != nil && len(b.CollPrefixLookup) > 1 {
// more than 1 collection indexed
key = append(collectionId, key...)
v[CollMetaFieldName] = cmf.value
}
bdoc := b.BuildDocumentFromObj(key, v, defaultType)
if !b.legacyMode && cmf != nil {
typ := cmf.scopeDotColl
// there could be multiple type mappings under a single collection.
for _, t := range cmf.typeMappings {
if len(t) > 0 && bdoc.Type() == t {
// append type information only if the type mapping specifies a
// 'type' and the document's matches it.
typ += "." + t
break
}
}
bdoc.SetType(typ)
}
return bdoc, key, err
}
// BuildDocument returns a BleveDocument for the k/v pair
// NOTE: err may be non-nil AND a document is returned
// this allows the error to be logged, but a stub document to be indexed
func (b *BleveDocumentConfig) BuildDocument(key, val []byte,
defaultType string) (*BleveDocument, error) {
var v interface{}
err := json.Unmarshal(val, &v)
if err != nil {
v = map[string]interface{}{}
}
return b.BuildDocumentFromObj(key, v, defaultType), err
}
func (b *BleveDocumentConfig) BuildDocumentFromObj(key []byte, v interface{},
defaultType string) *BleveDocument {
return &BleveDocument{
typ: b.DetermineType(key, v, defaultType),
BleveInterface: v,
}
}
func (b *BleveDocumentConfig) buildXAttrs(val []byte) (
map[string]interface{}, []byte, error) {
xattrs := make(map[string]interface{})
if len(val) < 4 {
return nil, val, fmt.Errorf("buildXAttrs: length of mutation less than" +
"the required amount")
}
pos := uint32(0)
// First 4 bytes determines the size of the xattr content
xattrLen := binary.BigEndian.Uint32(val[pos : pos+4])
pos = pos + 4
if xattrLen == 0 {
val = val[pos+4:]
} else {
var valInterface interface{}
// Each xattr key and value pair is separated by \x00
separator := []byte("\x00")
for pos < xattrLen {
// The next 4 bytes determines the size of
// the key value pair
pairLen := binary.BigEndian.Uint32(val[pos : pos+4])
if pairLen == 0 || int(pos+pairLen+4) > len(val) {
return nil, val, fmt.Errorf("buildXAttrs: length of mutation less than" +
"the required amount")
}
pos += 4
pairBytes := val[pos : pos+pairLen]
// The key value looks like [key]\x00[value]\x00
components := bytes.Split(pairBytes, separator)
if len(components) != 3 {
return nil, val, fmt.Errorf("buildXAttrs: wrong number of separators in xattrs")
}
xattrKey := string(components[0])
// Exclude system xattrs and any reserved xattr keys from being
// added into the document
if _, ok := reservedXattrsKeys[xattrKey]; !ok && xattrKey[0] != '_' {
// Check and parse the value into a string or a json
if err := json.Unmarshal(components[1], &valInterface); err == nil {
xattrs[xattrKey] = valInterface
} else {
xattrs[xattrKey] = string(components[1])
}
}
pos += pairLen
}
val = val[pos:]
}
return xattrs, val, nil
}
func (b *BleveDocumentConfig) DetermineType(key []byte, v interface{}, defaultType string) string {
i := strings.LastIndex(b.Mode, ConfigModeCollPrefix)
if i == -1 {
i = 0
b.legacyMode = true
} else {
i += ConfigModeCollPrefixLen
if len(b.Mode) > ConfigModeCollPrefixLen {
// consider the "." that follows scope.collection
i++
}
}
return b.findTypeUtil(key, v, defaultType, b.Mode[i:])
}
func (b *BleveDocumentConfig) findTypeUtil(key []byte, v interface{},
defaultType, mode string) string {
switch mode {
case "type_field":
typ, ok := mustString(lookupPropertyPath(v, b.TypeField))
if ok {
return typ
}
case "docid_prefix":
index := bytes.Index(key, []byte(b.DocIDPrefixDelim))
if index > 0 {
return string(key[0:index])
}
case "docid_regexp":
typ := b.DocIDRegexp.Find(key)
if typ != nil {
return string(typ)
}
}
return defaultType
}
// utility functions copied from bleve/reflect.go
func lookupPropertyPath(data interface{}, path string) interface{} {
pathParts := decodePath(path)
current := data
for _, part := range pathParts {
current = lookupPropertyPathPart(current, part)
if current == nil {
break
}
}
return current
}
func lookupPropertyPathPart(data interface{}, part string) interface{} {
val := reflect.ValueOf(data)
if !val.IsValid() {
return nil
}
typ := val.Type()
switch typ.Kind() {
case reflect.Map:
// TODO can add support for other map keys in the future
if typ.Key().Kind() == reflect.String {
if key := reflect.ValueOf(part); key.IsValid() {
entry := val.MapIndex(key)
if entry.IsValid() {
return entry.Interface()
}
}
}
case reflect.Struct:
field := val.FieldByName(part)
if field.IsValid() && field.CanInterface() {
return field.Interface()
}
}
return nil
}
const pathSeparator = "."
func decodePath(path string) []string {
return strings.Split(path, pathSeparator)
}
func mustString(data interface{}) (string, bool) {
if data != nil {
str, ok := data.(string)
if ok {
return str, true
}
}
return "", false
}