perkeep/pkg/sorted/mem.go

177 lines
3.8 KiB
Go

/*
Copyright 2011 Google 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 sorted
import (
"bytes"
"errors"
"sync"
"camlistore.org/third_party/code.google.com/p/leveldb-go/leveldb/db"
"camlistore.org/third_party/code.google.com/p/leveldb-go/leveldb/memdb"
"go4.org/jsonconfig"
)
// NewMemoryKeyValue returns a KeyValue implementation that's backed only
// by memory. It's mostly useful for tests and development.
func NewMemoryKeyValue() KeyValue {
db := memdb.New(nil)
return &memKeys{db: db}
}
// memKeys is a naive in-memory implementation of KeyValue for test & development
// purposes only.
type memKeys struct {
mu sync.Mutex // guards db
db db.DB
}
// memIter converts from leveldb's db.Iterator interface, which
// operates on []byte, to Camlistore's index.Iterator, which operates
// on string.
type memIter struct {
lit db.Iterator // underlying leveldb iterator
k, v *string // if nil, not stringified yet
end []byte // if len(end) > 0, the upper bound
}
func (t *memIter) Next() bool {
t.k, t.v = nil, nil
if !t.lit.Next() {
return false
}
if len(t.end) > 0 && bytes.Compare(t.KeyBytes(), t.end) >= 0 {
return false
}
return true
}
func (s *memIter) Close() error {
if s.lit == nil {
// Already closed.
return nil
}
err := s.lit.Close()
*s = memIter{} // to cause crashes on future access
return err
}
func (s *memIter) KeyBytes() []byte {
return s.lit.Key()
}
func (s *memIter) ValueBytes() []byte {
return s.lit.Value()
}
func (s *memIter) Key() string {
if s.k != nil {
return *s.k
}
str := string(s.KeyBytes())
s.k = &str
return str
}
func (s *memIter) Value() string {
if s.v != nil {
return *s.v
}
str := string(s.ValueBytes())
s.v = &str
return str
}
func (mk *memKeys) Get(key string) (string, error) {
mk.mu.Lock()
defer mk.mu.Unlock()
k, err := mk.db.Get([]byte(key), nil)
if err == db.ErrNotFound {
return "", ErrNotFound
}
return string(k), err
}
func (mk *memKeys) Find(start, end string) Iterator {
mk.mu.Lock()
defer mk.mu.Unlock()
lit := mk.db.Find([]byte(start), nil)
it := &memIter{lit: lit}
if end != "" {
it.end = []byte(end)
}
return it
}
func (mk *memKeys) Set(key, value string) error {
if err := CheckSizes(key, value); err != nil {
return err
}
mk.mu.Lock()
defer mk.mu.Unlock()
return mk.db.Set([]byte(key), []byte(value), nil)
}
func (mk *memKeys) Delete(key string) error {
mk.mu.Lock()
defer mk.mu.Unlock()
err := mk.db.Delete([]byte(key), nil)
if err == db.ErrNotFound {
return nil
}
return err
}
func (mk *memKeys) BeginBatch() BatchMutation {
return &batch{}
}
func (mk *memKeys) CommitBatch(bm BatchMutation) error {
b, ok := bm.(*batch)
if !ok {
return errors.New("invalid batch type; not an instance returned by BeginBatch")
}
mk.mu.Lock()
defer mk.mu.Unlock()
for _, m := range b.Mutations() {
if m.IsDelete() {
if err := mk.db.Delete([]byte(m.Key()), nil); err != nil {
return err
}
} else {
if err := CheckSizes(m.Key(), m.Value()); err != nil {
return err
}
if err := mk.db.Set([]byte(m.Key()), []byte(m.Value()), nil); err != nil {
return err
}
}
}
return nil
}
func (mk *memKeys) Close() error { return nil }
func init() {
RegisterKeyValue("memory", func(cfg jsonconfig.Obj) (KeyValue, error) {
if err := cfg.Validate(); err != nil {
return nil, err
}
return NewMemoryKeyValue(), nil
})
}