mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
423 lines
9.8 KiB
Go
423 lines
9.8 KiB
Go
// Copyright 2017 Pilosa Corp.
|
|
//
|
|
// 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 boltdb
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"encoding/binary"
|
|
"fmt"
|
|
"sort"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/cespare/xxhash"
|
|
|
|
"github.com/boltdb/bolt"
|
|
"github.com/pilosa/pilosa/v2"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// attrBlockSize is the size of attribute blocks for anti-entropy.
|
|
const attrBlockSize = 100
|
|
|
|
// attrCache represents a cache for attributes.
|
|
type attrCache struct {
|
|
mu sync.RWMutex
|
|
attrs map[uint64]map[string]interface{}
|
|
}
|
|
|
|
// Get returns the cached attributes for a given id.
|
|
func (c *attrCache) Get(id uint64) map[string]interface{} {
|
|
c.mu.RLock()
|
|
defer c.mu.RUnlock()
|
|
attrs := c.attrs[id]
|
|
if attrs == nil {
|
|
return nil
|
|
}
|
|
|
|
// Make a copy for safety
|
|
ret := make(map[string]interface{})
|
|
for k, v := range attrs {
|
|
ret[k] = v
|
|
}
|
|
return ret
|
|
}
|
|
|
|
// Set updates the cached attributes for a given id.
|
|
func (c *attrCache) Set(id uint64, attrs map[string]interface{}) {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
c.attrs[id] = attrs
|
|
}
|
|
|
|
// attrStore represents a storage layer for attributes.
|
|
type attrStore struct {
|
|
mu sync.RWMutex
|
|
path string
|
|
db *bolt.DB
|
|
attrCache *attrCache
|
|
}
|
|
|
|
// newAttrCache returns a new instance of AttrCache.
|
|
func newAttrCache() *attrCache {
|
|
return &attrCache{
|
|
attrs: make(map[uint64]map[string]interface{}),
|
|
}
|
|
}
|
|
|
|
// NewAttrStore returns a new instance of AttrStore.
|
|
func NewAttrStore(path string) pilosa.AttrStore {
|
|
return &attrStore{
|
|
path: path,
|
|
attrCache: newAttrCache(),
|
|
}
|
|
}
|
|
|
|
// Path returns path to the store's data file.
|
|
func (s *attrStore) Path() string { return s.path }
|
|
|
|
// Open opens and initializes the store.
|
|
func (s *attrStore) Open() error {
|
|
// Open storage.
|
|
db, err := bolt.Open(s.path, 0666, &bolt.Options{Timeout: 1 * time.Second})
|
|
if err != nil {
|
|
return errors.Wrap(err, "opening storage")
|
|
}
|
|
s.db = db
|
|
|
|
// Initialize database.
|
|
if err := s.db.Update(func(tx *bolt.Tx) error {
|
|
_, err := tx.CreateBucketIfNotExists([]byte("attrs"))
|
|
return err
|
|
}); err != nil {
|
|
return errors.Wrap(err, "initializing")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Close closes the store.
|
|
func (s *attrStore) Close() error {
|
|
if s.db != nil {
|
|
s.db.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Attrs returns a set of attributes by ID.
|
|
func (s *attrStore) Attrs(id uint64) (m map[string]interface{}, err error) {
|
|
s.mu.RLock()
|
|
defer s.mu.RUnlock()
|
|
|
|
// Check cache for map.
|
|
if m = s.attrCache.Get(id); m != nil {
|
|
return m, nil
|
|
}
|
|
|
|
// Find attributes from storage.
|
|
if err = s.db.View(func(tx *bolt.Tx) error {
|
|
m, err = txAttrs(tx, id)
|
|
return err
|
|
}); err != nil {
|
|
return nil, errors.Wrap(err, "finding attributes")
|
|
}
|
|
|
|
// Add to cache.
|
|
s.attrCache.Set(id, m)
|
|
|
|
return m, nil
|
|
}
|
|
|
|
// SetAttrs sets attribute values for a given ID.
|
|
func (s *attrStore) SetAttrs(id uint64, m map[string]interface{}) error {
|
|
// Ignore empty maps.
|
|
if len(m) == 0 {
|
|
return nil
|
|
}
|
|
|
|
// Check if the attributes already exist under a read-only lock.
|
|
if attr, err := s.Attrs(id); err != nil {
|
|
return errors.Wrap(err, "checking attrs")
|
|
} else if attr != nil && mapContains(attr, m) {
|
|
return nil
|
|
}
|
|
|
|
// Obtain write lock.
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
|
|
var attr map[string]interface{}
|
|
if err := s.db.Update(func(tx *bolt.Tx) error {
|
|
tmp, err := txUpdateAttrs(tx, id, m)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
attr = tmp
|
|
|
|
return nil
|
|
}); err != nil {
|
|
return errors.Wrap(err, "updating store")
|
|
}
|
|
|
|
// Swap attributes map in cache.
|
|
s.attrCache.Set(id, attr)
|
|
|
|
return nil
|
|
}
|
|
|
|
// SetBulkAttrs sets attribute values for a set of ids.
|
|
func (s *attrStore) SetBulkAttrs(m map[uint64]map[string]interface{}) error {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
|
|
attrs := make(map[uint64]map[string]interface{})
|
|
if err := s.db.Update(func(tx *bolt.Tx) error {
|
|
// Collect and sort keys.
|
|
ids := make([]uint64, 0, len(m))
|
|
for id := range m {
|
|
ids = append(ids, id)
|
|
}
|
|
sort.Slice(ids, func(i, j int) bool { return ids[i] < ids[j] })
|
|
|
|
// Update attributes for each id.
|
|
for _, id := range ids {
|
|
attr, err := txUpdateAttrs(tx, id, m[id])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
attrs[id] = attr
|
|
}
|
|
|
|
return nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Swap attributes map in cache.
|
|
for id, attr := range attrs {
|
|
s.attrCache.Set(id, attr)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Blocks returns a list of all blocks in the store.
|
|
func (s *attrStore) Blocks() (blocks []pilosa.AttrBlock, err error) {
|
|
err = s.db.View(func(tx *bolt.Tx) error {
|
|
// Wrap cursor to segment by block.
|
|
cur := newBlockCursor(tx.Bucket([]byte("attrs")).Cursor(), attrBlockSize)
|
|
|
|
// Iterate over each block.
|
|
for cur.nextBlock() {
|
|
block := pilosa.AttrBlock{ID: cur.blockID()}
|
|
|
|
// Compute checksum of every key/value in block.
|
|
h := xxhash.New()
|
|
for k, v := cur.next(); k != nil; k, v = cur.next() {
|
|
// hash function writes don't usually need to be checked
|
|
_, _ = h.Write(k)
|
|
_, _ = h.Write(v)
|
|
}
|
|
block.Checksum = h.Sum(nil)
|
|
|
|
// Append block.
|
|
blocks = append(blocks, block)
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "getting blocks")
|
|
}
|
|
return blocks, nil
|
|
}
|
|
|
|
// BlockData returns all data for a single block.
|
|
func (s *attrStore) BlockData(i uint64) (m map[uint64]map[string]interface{}, err error) {
|
|
m = make(map[uint64]map[string]interface{})
|
|
|
|
// Start read-only transaction.
|
|
err = s.db.View(func(tx *bolt.Tx) error {
|
|
// Move to the start of the block.
|
|
min := u64tob(i * attrBlockSize)
|
|
max := u64tob((i + 1) * attrBlockSize)
|
|
cur := tx.Bucket([]byte("attrs")).Cursor()
|
|
for k, v := cur.Seek(min); k != nil; k, v = cur.Next() {
|
|
// Exit if we're past the end of the block.
|
|
if bytes.Compare(k, max) != -1 {
|
|
break
|
|
}
|
|
|
|
// Decode attribute map and associate with id.
|
|
attrs, err := pilosa.DecodeAttrs(v)
|
|
if err != nil {
|
|
return errors.Wrap(err, "decoding attrs")
|
|
}
|
|
m[btou64(k)] = attrs
|
|
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "getting block data")
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
// txAttrs returns a map of attributes for an id.
|
|
func txAttrs(tx *bolt.Tx, id uint64) (map[string]interface{}, error) {
|
|
v := tx.Bucket([]byte("attrs")).Get(u64tob(id))
|
|
if v == nil {
|
|
return emptyMap, nil
|
|
}
|
|
return pilosa.DecodeAttrs(v)
|
|
}
|
|
|
|
// txUpdateAttrs updates the attributes for an id.
|
|
// Returns the new combined set of attributes for the id.
|
|
func txUpdateAttrs(tx *bolt.Tx, id uint64, m map[string]interface{}) (map[string]interface{}, error) {
|
|
attr, err := txAttrs(tx, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Create a new map if it is empty so we don't update emptyMap.
|
|
if len(attr) == 0 {
|
|
attr = make(map[string]interface{}, len(m))
|
|
}
|
|
|
|
// Merge attributes with original values.
|
|
// Nil values should delete keys.
|
|
for k, v := range m {
|
|
if v == nil {
|
|
delete(attr, k)
|
|
continue
|
|
}
|
|
|
|
switch v := v.(type) {
|
|
case int:
|
|
attr[k] = int64(v)
|
|
case uint:
|
|
attr[k] = int64(v)
|
|
case uint64:
|
|
attr[k] = int64(v)
|
|
case string, int64, bool, float64:
|
|
attr[k] = v
|
|
default:
|
|
return nil, fmt.Errorf("invalid attr type: %T", v)
|
|
}
|
|
}
|
|
|
|
// Marshal and save new values.
|
|
buf, err := pilosa.EncodeAttrs(attr)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "encoding attrs")
|
|
}
|
|
if err := tx.Bucket([]byte("attrs")).Put(u64tob(id), buf); err != nil {
|
|
return nil, errors.Wrap(err, "saving attrs")
|
|
}
|
|
return attr, nil
|
|
}
|
|
|
|
// u64tob encodes v to big endian encoding.
|
|
func u64tob(v uint64) []byte {
|
|
b := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(b, v)
|
|
return b
|
|
}
|
|
|
|
// btou64 decodes b from big endian encoding.
|
|
func btou64(b []byte) uint64 { return binary.BigEndian.Uint64(b) }
|
|
|
|
// emptyMap is a reusable map that contains no keys.
|
|
var emptyMap = make(map[string]interface{})
|
|
|
|
// mapContains returns true if all keys & values of subset are in m.
|
|
func mapContains(m, subset map[string]interface{}) bool {
|
|
for k, v := range subset {
|
|
value, ok := m[k]
|
|
if !ok || value != v {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// blockCursor represents a cursor for iterating over blocks of a bolt bucket.
|
|
type blockCursor struct {
|
|
cur *bolt.Cursor
|
|
base uint64
|
|
n uint64
|
|
|
|
buf struct {
|
|
key []byte
|
|
value []byte
|
|
filled bool
|
|
}
|
|
}
|
|
|
|
// newBlockCursor returns a new block cursor that wraps cur using n sized blocks.
|
|
func newBlockCursor(c *bolt.Cursor, n int) blockCursor { // nolint: unparam
|
|
cur := blockCursor{
|
|
cur: c,
|
|
n: uint64(n),
|
|
}
|
|
cur.buf.key, cur.buf.value = c.First()
|
|
cur.buf.filled = true
|
|
return cur
|
|
}
|
|
|
|
// blockID returns the current block ID. Only valid after call to nextBlock().
|
|
func (cur *blockCursor) blockID() uint64 { return cur.base }
|
|
|
|
// nextBlock moves the cursor to the next block.
|
|
// Returns true if another block exists, otherwise returns false.
|
|
func (cur *blockCursor) nextBlock() bool {
|
|
if cur.buf.key == nil {
|
|
return false
|
|
}
|
|
|
|
cur.base = binary.BigEndian.Uint64(cur.buf.key) / cur.n
|
|
return true
|
|
}
|
|
|
|
// next returns the next key/value within the block.
|
|
// Returns nils at the end of the block.
|
|
func (cur *blockCursor) next() (key, value []byte) {
|
|
// Use buffered value, if set.
|
|
if cur.buf.filled {
|
|
key, value = cur.buf.key, cur.buf.value
|
|
cur.buf.filled = false
|
|
return key, value
|
|
}
|
|
|
|
// Read next key.
|
|
key, value = cur.cur.Next()
|
|
|
|
// Fill buffer for EOF.
|
|
if key == nil {
|
|
cur.buf.key, cur.buf.value, cur.buf.filled = key, value, false
|
|
return nil, nil
|
|
}
|
|
|
|
// Parse key and buffer if outside of block.
|
|
id := binary.BigEndian.Uint64(key)
|
|
if id/cur.n > cur.base {
|
|
cur.buf.key, cur.buf.value, cur.buf.filled = key, value, true
|
|
return nil, nil
|
|
}
|
|
|
|
return key, value
|
|
}
|