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

104 lines
2.0 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
}
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) Reader() (store.KVReader, error) {
tx, err := bs.db.Begin(false)
if err != nil {
return nil, err
}
return &Reader{
store: bs,
tx: tx,
}, nil
}
func (bs *Store) Writer() (store.KVWriter, error) {
bs.writer.Lock()
tx, err := bs.db.Begin(true)
if err != nil {
bs.writer.Unlock()
return nil, err
}
reader := &Reader{
store: bs,
tx: tx,
}
return &Writer{
store: bs,
tx: tx,
reader: reader,
}, nil
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)
}