database/bitcask.go

97 lines
2.0 KiB
Go

package database
import (
"errors"
"strings"
"sync"
"git.tcp.direct/Mirrors/bitcask-mirror"
)
// DB is an implementation of Filer using bitcask.
type DB struct {
store map[string]*bitcask.Bitcask
mu *sync.RWMutex
}
// Initialize opens a bitcask store at the given path to be referenced by bucketName.
func (db *DB) Initialize(bucketName, path string) error {
db.mu.Lock()
defer db.mu.Unlock()
if _, ok := db.store["bucketName"]; ok {
return errors.New("bucket already exists")
}
if !strings.HasSuffix("/", path) {
path = path + "/"
}
c, e := bitcask.Open(path+bucketName)
if e != nil {
return e
}
db.store[bucketName] = c
return nil
}
// With calls the given underlying bitcask instance.
func (db *DB) With(bucketName string) Filer {
db.mu.RLock()
defer db.mu.RUnlock()
return db.store[bucketName]
}
// Close is a simple shim for bitcask's Close function.
func (db *DB) Close(bucketName string) error {
db.mu.RLock()
defer db.mu.RUnlock()
return db.store[bucketName].Close()
}
// Sync is a simple shim for bitcask's Sync function.
func (db *DB) Sync(bucketName string) error {
db.mu.RLock()
defer db.mu.RUnlock()
return db.store[bucketName].Sync()
}
type withAllAction uint8
const (
Close withAllAction = iota
Sync
)
// WithAll performs an action on all bitcask stores that we have open.
// In the case of an error, WithAll will continue and return a compound form of any errors that occurred.
// For now this is just for Close and Sync, thusly it does a hard lock on the Keeper.
func (db *DB) WithAll(action withAllAction) error {
db.mu.Lock()
defer db.mu.Unlock()
var errs []error
for name, store := range db.store {
var err error
switch action {
case Close:
err = namedErr(name, store.Close())
case Sync:
err = namedErr(name, store.Sync())
default:
return unknownAction
}
if err == nil {
continue
}
errs = append(errs, err)
}
return compoundErrors(errs)
}
func (db *DB) CloseAll() error {
return db.WithAll(Close)
}
func (db *DB) SyncAll() error {
return db.WithAll(Sync)
}