mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-06-18 21:08:58 -04:00
Bumps [github.com/blevesearch/bleve/v2](https://github.com/blevesearch/bleve) from 2.5.7 to 2.6.0. - [Release notes](https://github.com/blevesearch/bleve/releases) - [Commits](https://github.com/blevesearch/bleve/compare/v2.5.7...v2.6.0) --- updated-dependencies: - dependency-name: github.com/blevesearch/bleve/v2 dependency-version: 2.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
193 lines
4.8 KiB
Go
193 lines
4.8 KiB
Go
// Copyright (c) 2017 Couchbase, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package zap
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"io"
|
|
|
|
"github.com/RoaringBitmap/roaring/v2"
|
|
index "github.com/blevesearch/bleve_index_api"
|
|
)
|
|
|
|
// writes out the length of the roaring bitmap in bytes as varint
|
|
// then writes out the roaring bitmap itself
|
|
func writeRoaringWithLen(r *roaring.Bitmap, w io.Writer,
|
|
reuseBufVarint []byte) (int, error) {
|
|
buf, err := r.ToBytes()
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
var tw int
|
|
|
|
if fw, ok := w.(*FileWriter); ok && fw != nil {
|
|
buf = fw.process(buf)
|
|
}
|
|
|
|
// write out the length
|
|
n := binary.PutUvarint(reuseBufVarint, uint64(len(buf)))
|
|
nw, err := w.Write(reuseBufVarint[:n])
|
|
tw += nw
|
|
if err != nil {
|
|
return tw, err
|
|
}
|
|
|
|
// write out the roaring bytes
|
|
nw, err = w.Write(buf)
|
|
tw += nw
|
|
if err != nil {
|
|
return tw, err
|
|
}
|
|
|
|
return tw, nil
|
|
}
|
|
|
|
func persistFieldsSection(fieldsInv []string,
|
|
fieldsOptions map[string]index.FieldIndexingOptions, w *FileWriter,
|
|
opaque map[int]resetable) (uint64, error) {
|
|
var rv uint64
|
|
fieldsOffsets := make([]uint64, 0, len(fieldsInv))
|
|
|
|
for fieldID, fieldName := range fieldsInv {
|
|
// record start of this field
|
|
fieldsOffsets = append(fieldsOffsets, uint64(w.Count()))
|
|
fieldOpts := fieldsOptions[fieldName]
|
|
fieldName := w.process([]byte(fieldName))
|
|
|
|
// write field name length
|
|
_, err := writeUvarints(w, uint64(len(fieldName)))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
// write out the field name
|
|
_, err = w.Write(fieldName)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
// write out the field options
|
|
_, err = writeUvarints(w, uint64(fieldOpts))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
// write out the number of field-specific indexes
|
|
_, err = writeUvarints(w, uint64(len(segmentSections)))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
// now write pairs of index section ids, and start addresses for each field
|
|
// which has a specific section's data. this serves as the starting point
|
|
// using which a field's section data can be read and parsed.
|
|
for segmentSectionType, segmentSectionImpl := range segmentSections {
|
|
binary.Write(w, binary.BigEndian, segmentSectionType)
|
|
binary.Write(w, binary.BigEndian, uint64(segmentSectionImpl.AddrForField(opaque, fieldID)))
|
|
}
|
|
}
|
|
|
|
rv = uint64(w.Count())
|
|
// write out number of fields
|
|
_, err := writeUvarints(w, uint64(len(fieldsInv)))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
// now write out the fields index
|
|
for fieldID := range fieldsInv {
|
|
err := binary.Write(w, binary.BigEndian, fieldsOffsets[fieldID])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
|
|
return rv, nil
|
|
}
|
|
|
|
// FooterSize is the size of the footer record in bytes
|
|
// crc + id length + ver + chunk + sectionsIndexOffset + stored offset + num docs
|
|
// Does not include the length of the id because it is variable length
|
|
const FooterSize = 4 + 4 + 4 + 4 + 8 + 8 + 8
|
|
|
|
func persistFooter(numDocs, storedIndexOffset, sectionsIndexOffset uint64,
|
|
chunkMode, crcBeforeFooter uint32, writerIn io.Writer, fileWriterID string) error {
|
|
w := NewCountHashWriter(writerIn)
|
|
w.crc = crcBeforeFooter
|
|
|
|
// Write the writer id
|
|
_, err := w.Write([]byte(fileWriterID))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Write the length of the writer id
|
|
err = binary.Write(w, binary.BigEndian, uint32(len(fileWriterID)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// write out the number of docs
|
|
err = binary.Write(w, binary.BigEndian, numDocs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// write out the stored field index location:
|
|
err = binary.Write(w, binary.BigEndian, storedIndexOffset)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// write out the sections index location
|
|
err = binary.Write(w, binary.BigEndian, sectionsIndexOffset)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// write out 32-bit chunk factor
|
|
err = binary.Write(w, binary.BigEndian, chunkMode)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// write out 32-bit version
|
|
err = binary.Write(w, binary.BigEndian, Version)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// write out CRC-32 of everything upto but not including this CRC
|
|
err = binary.Write(w, binary.BigEndian, w.crc)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func writeUvarints(w io.Writer, vals ...uint64) (tw int, err error) {
|
|
buf := make([]byte, binary.MaxVarintLen64)
|
|
for _, val := range vals {
|
|
n := binary.PutUvarint(buf, val)
|
|
var nw int
|
|
nw, err = w.Write(buf[:n])
|
|
tw += nw
|
|
if err != nil {
|
|
return tw, err
|
|
}
|
|
}
|
|
return tw, err
|
|
}
|