Spaces:
Running
Running
File size: 6,630 Bytes
b110593 |
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 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package inverted
import (
"bytes"
"context"
"fmt"
"github.com/pkg/errors"
"github.com/weaviate/sroar"
"github.com/weaviate/weaviate/adapters/repos/db/lsmkv"
"github.com/weaviate/weaviate/entities/filters"
)
// RowReaderRoaringSet reads one or many row(s) depending on the specified
// operator
type RowReaderRoaringSet struct {
value []byte
operator filters.Operator
newCursor func() lsmkv.CursorRoaringSet
getter func(key []byte) (*sroar.Bitmap, error)
}
// If keyOnly is set, the RowReaderRoaringSet will request key-only cursors
// wherever cursors are used, the specified value arguments in the
// RoaringSetReadFn will always be empty
func NewRowReaderRoaringSet(bucket *lsmkv.Bucket, value []byte,
operator filters.Operator, keyOnly bool,
) *RowReaderRoaringSet {
getter := bucket.RoaringSetGet
newCursor := bucket.CursorRoaringSet
if keyOnly {
newCursor = bucket.CursorRoaringSetKeyOnly
}
return &RowReaderRoaringSet{
value: value,
operator: operator,
newCursor: newCursor,
getter: getter,
}
}
// RoaringSetReadFn will be called 1..n times per match. This means it will also
// be called on a non-match, in this case v == empty bitmap.
// It is up to the caller to decide if that is an error case or not.
//
// Note that because what we are parsing is an inverted index row, it can
// sometimes become confusing what a key and value actually resembles. The
// variables k and v are the literal row key and value. So this means, the
// data-value as in "less than 17" where 17 would be the "value" is in the key
// variable "k". The value will contain bitmap with docIDs having value "k"
//
// The boolean return argument is a way to stop iteration (e.g. when a limit is
// reached) without producing an error. In normal operation always return true,
// if false is returned once, the loop is broken.
type RoaringSetReadFn func(k []byte, v *sroar.Bitmap) (bool, error)
// Read a row using the specified ReadFn. If RowReader was created with
// keysOnly==true, the values argument in the readFn will always be nil on all
// requests involving cursors
func (rr *RowReaderRoaringSet) Read(ctx context.Context, readFn RoaringSetReadFn) error {
switch rr.operator {
case filters.OperatorEqual, filters.OperatorIsNull:
return rr.equal(ctx, readFn)
case filters.OperatorNotEqual:
return rr.notEqual(ctx, readFn)
case filters.OperatorGreaterThan:
return rr.greaterThan(ctx, readFn, false)
case filters.OperatorGreaterThanEqual:
return rr.greaterThan(ctx, readFn, true)
case filters.OperatorLessThan:
return rr.lessThan(ctx, readFn, false)
case filters.OperatorLessThanEqual:
return rr.lessThan(ctx, readFn, true)
case filters.OperatorLike:
return rr.like(ctx, readFn)
default:
return fmt.Errorf("operator %v not supported", rr.operator)
}
}
// equal is a special case, as we don't need to iterate, but just read a single
// row
func (rr *RowReaderRoaringSet) equal(ctx context.Context,
readFn RoaringSetReadFn,
) error {
if err := ctx.Err(); err != nil {
return err
}
v, err := rr.getter(rr.value)
if err != nil {
return err
}
_, err = readFn(rr.value, v)
return err
}
// greaterThan reads from the specified value to the end. The first row is only
// included if allowEqual==true, otherwise it starts with the next one
func (rr *RowReaderRoaringSet) greaterThan(ctx context.Context,
readFn RoaringSetReadFn, allowEqual bool,
) error {
c := rr.newCursor()
defer c.Close()
for k, v := c.Seek(rr.value); k != nil; k, v = c.Next() {
if err := ctx.Err(); err != nil {
return err
}
if bytes.Equal(k, rr.value) && !allowEqual {
continue
}
if continueReading, err := readFn(k, v); err != nil {
return err
} else if !continueReading {
break
}
}
return nil
}
// lessThan reads from the very begging to the specified value. The last
// matching row is only included if allowEqual==true, otherwise it ends one
// prior to that.
func (rr *RowReaderRoaringSet) lessThan(ctx context.Context,
readFn RoaringSetReadFn, allowEqual bool,
) error {
c := rr.newCursor()
defer c.Close()
for k, v := c.First(); k != nil && bytes.Compare(k, rr.value) < 1; k, v = c.Next() {
if err := ctx.Err(); err != nil {
return err
}
if bytes.Equal(k, rr.value) && !allowEqual {
continue
}
if continueReading, err := readFn(k, v); err != nil {
return err
} else if !continueReading {
break
}
}
return nil
}
// notEqual is another special case, as it's the opposite of equal. So instead
// of reading just one row, we read all but one row.
func (rr *RowReaderRoaringSet) notEqual(ctx context.Context,
readFn RoaringSetReadFn,
) error {
c := rr.newCursor()
defer c.Close()
for k, v := c.First(); k != nil; k, v = c.Next() {
if err := ctx.Err(); err != nil {
return err
}
if bytes.Equal(k, rr.value) {
continue
}
if continueReading, err := readFn(k, v); err != nil {
return err
} else if !continueReading {
break
}
}
return nil
}
func (rr *RowReaderRoaringSet) like(ctx context.Context,
readFn RoaringSetReadFn,
) error {
like, err := parseLikeRegexp(rr.value)
if err != nil {
return errors.Wrapf(err, "parse like value")
}
c := rr.newCursor()
defer c.Close()
var (
initialK []byte
initialV *sroar.Bitmap
likeMinLen int
)
if like.optimizable {
initialK, initialV = c.Seek(like.min)
likeMinLen = len(like.min)
} else {
initialK, initialV = c.First()
}
for k, v := initialK, initialV; k != nil; k, v = c.Next() {
if err := ctx.Err(); err != nil {
return err
}
if like.optimizable {
// if the query is optimizable, i.e. it doesn't start with a wildcard, we
// can abort once we've moved past the point where the fixed characters
// no longer match
if len(k) < likeMinLen {
break
}
if bytes.Compare(like.min, k[:likeMinLen]) == -1 {
break
}
}
if !like.regexp.Match(k) {
continue
}
if continueReading, err := readFn(k, v); err != nil {
return err
} else if !continueReading {
break
}
}
return nil
}
|