0
0
bleve/index/store/boltdb/store.go

129 lines
2.7 KiB
Go
Raw Normal View History

2014-08-24 09:06:44 +02:00
// Copyright (c) 2014 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.
2014-08-24 09:06:44 +02:00
package boltdb
import (
"fmt"
"sync"
2014-08-24 09:06:44 +02:00
"github.com/blevesearch/bleve/index/store"
"github.com/blevesearch/bleve/registry"
2014-08-24 09:06:44 +02:00
"github.com/boltdb/bolt"
)
const Name = "boltdb"
2014-09-04 01:16:46 +02:00
type Store struct {
2014-08-24 09:06:44 +02:00
path string
bucket string
db *bolt.DB
writer sync.Mutex
2014-08-24 09:06:44 +02:00
}
2014-09-04 01:16:46 +02:00
func Open(path string, bucket string) (*Store, error) {
rv := Store{
2014-08-24 09:06:44 +02:00
path: path,
bucket: bucket,
}
var err error
rv.db, err = bolt.Open(path, 0600, nil)
if err != nil {
return nil, err
}
err = rv.db.Update(func(tx *bolt.Tx) error {
_, err := tx.CreateBucketIfNotExists([]byte(rv.bucket))
return err
})
if err != nil {
return nil, err
}
return &rv, nil
}
func (bs *Store) get(key []byte) ([]byte, error) {
2014-09-04 00:47:02 +02:00
var rv []byte
2014-08-24 09:06:44 +02:00
err := bs.db.View(func(tx *bolt.Tx) error {
rv = tx.Bucket([]byte(bs.bucket)).Get(key)
return nil
})
return rv, err
}
func (bs *Store) set(key, val []byte) error {
bs.writer.Lock()
defer bs.writer.Unlock()
return bs.setlocked(key, val)
}
func (bs *Store) setlocked(key, val []byte) error {
2014-08-24 09:06:44 +02:00
return bs.db.Update(func(tx *bolt.Tx) error {
return tx.Bucket([]byte(bs.bucket)).Put(key, val)
})
}
func (bs *Store) delete(key []byte) error {
bs.writer.Lock()
defer bs.writer.Unlock()
return bs.deletelocked(key)
}
func (bs *Store) deletelocked(key []byte) error {
2014-08-24 09:06:44 +02:00
return bs.db.Update(func(tx *bolt.Tx) error {
return tx.Bucket([]byte(bs.bucket)).Delete(key)
})
}
2014-09-04 01:16:46 +02:00
func (bs *Store) Close() error {
2014-08-24 09:06:44 +02:00
return bs.db.Close()
}
func (bs *Store) iterator(key []byte) store.KVIterator {
2014-09-04 01:16:46 +02:00
rv := newIterator(bs)
2014-08-24 09:06:44 +02:00
rv.Seek(key)
return rv
}
func (bs *Store) Reader() (store.KVReader, error) {
return newReader(bs)
}
func (bs *Store) Writer() (store.KVWriter, error) {
return newWriter(bs)
}
func (bs *Store) newBatch() store.KVBatch {
2014-09-04 01:16:46 +02:00
return newBatch(bs)
2014-08-24 09:06:44 +02:00
}
func StoreConstructor(config map[string]interface{}) (store.KVStore, error) {
path, ok := config["path"].(string)
if !ok {
return nil, fmt.Errorf("must specify path")
}
bucket, ok := config["bucket"].(string)
if !ok {
2014-08-25 21:11:04 +02:00
bucket = "bleve"
2014-08-24 09:06:44 +02:00
}
return Open(path, bucket)
}
func init() {
registry.RegisterKVStore(Name, StoreConstructor)
}