quorum/trie/cache.go

65 lines
1.4 KiB
Go
Raw Normal View History

2015-01-08 02:47:04 -08:00
package trie
2014-11-19 07:35:57 -08:00
import (
"github.com/ethereum/go-ethereum/compression/rle"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/syndtr/goleveldb/leveldb"
)
2014-11-19 07:35:57 -08:00
type Backend interface {
2014-11-19 07:56:01 -08:00
Get([]byte) ([]byte, error)
Put([]byte, []byte) error
2014-11-19 07:35:57 -08:00
}
type Cache struct {
batch *leveldb.Batch
2014-11-19 07:35:57 -08:00
store map[string][]byte
backend Backend
}
func NewCache(backend Backend) *Cache {
return &Cache{new(leveldb.Batch), make(map[string][]byte), backend}
2014-11-19 07:35:57 -08:00
}
func (self *Cache) Get(key []byte) []byte {
data := self.store[string(key)]
if data == nil {
2014-11-19 07:56:01 -08:00
data, _ = self.backend.Get(key)
2014-11-19 07:35:57 -08:00
}
return data
}
2014-11-19 07:56:01 -08:00
func (self *Cache) Put(key []byte, data []byte) {
// write the data to the ldb batch
self.batch.Put(key, rle.Compress(data))
2014-11-19 07:35:57 -08:00
self.store[string(key)] = data
}
// Flush flushes the trie to the backing layer. If this is a leveldb instance
// we'll use a batched write, otherwise we'll use regular put.
2014-11-19 07:35:57 -08:00
func (self *Cache) Flush() {
if db, ok := self.backend.(*ethdb.LDBDatabase); ok {
if err := db.LDB().Write(self.batch, nil); err != nil {
glog.Fatal("db write err:", err)
}
} else {
for k, v := range self.store {
self.backend.Put([]byte(k), v)
}
2014-11-19 07:35:57 -08:00
}
}
func (self *Cache) Copy() *Cache {
cache := NewCache(self.backend)
for k, v := range self.store {
cache.store[k] = v
}
return cache
}
2014-11-19 07:35:57 -08:00
func (self *Cache) Reset() {
//self.store = make(map[string][]byte)
2014-11-19 07:35:57 -08:00
}