2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2013-01-13 16:07:38 +00:00
|
|
|
"errors"
|
2013-01-12 18:56:47 +00:00
|
|
|
"io"
|
2011-12-22 04:04:47 +00:00
|
|
|
"log"
|
2011-12-19 05:59:37 +00:00
|
|
|
"os"
|
2012-06-29 07:53:47 +00:00
|
|
|
"pkg/util"
|
2013-01-14 20:42:35 +00:00
|
|
|
"strings"
|
2011-12-16 14:51:26 +00:00
|
|
|
)
|
|
|
|
|
2011-12-19 05:59:37 +00:00
|
|
|
type NeedleMap struct {
|
2011-12-22 04:04:47 +00:00
|
|
|
indexFile *os.File
|
2013-01-12 18:56:47 +00:00
|
|
|
m MapGetSetter // modifiable map
|
|
|
|
fm MapGetter // frozen map
|
2012-10-10 03:53:31 +00:00
|
|
|
|
|
|
|
//transient
|
2012-11-24 01:03:27 +00:00
|
|
|
bytes []byte
|
|
|
|
|
|
|
|
deletionCounter int
|
|
|
|
fileCounter int
|
2012-12-04 06:54:08 +00:00
|
|
|
deletionByteCounter uint64
|
|
|
|
fileByteCounter uint64
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2011-12-19 05:59:37 +00:00
|
|
|
|
2013-01-12 18:56:47 +00:00
|
|
|
// Map interface for frozen maps
|
|
|
|
type MapGetter interface {
|
|
|
|
Get(key Key) (element *NeedleValue, ok bool)
|
|
|
|
Walk(pedestrian func(*NeedleValue) error) error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Modifiable map interface
|
|
|
|
type MapSetter interface {
|
|
|
|
Set(key Key, offset, size uint32) (oldsize uint32)
|
|
|
|
Delete(key Key) uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
// Settable and gettable map
|
|
|
|
type MapGetSetter interface {
|
|
|
|
MapGetter
|
|
|
|
MapSetter
|
|
|
|
}
|
|
|
|
|
|
|
|
// New in-memory needle map, backed by "file" index file
|
2011-12-24 08:40:56 +00:00
|
|
|
func NewNeedleMap(file *os.File) *NeedleMap {
|
2013-01-12 18:56:47 +00:00
|
|
|
return &NeedleMap{
|
2012-09-29 23:07:24 +00:00
|
|
|
m: NewCompactMap(),
|
2011-12-24 08:40:56 +00:00
|
|
|
bytes: make([]byte, 16),
|
|
|
|
indexFile: file,
|
|
|
|
}
|
2013-01-12 18:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Nes frozen (on-disk, not modifiable(!)) needle map
|
2013-01-14 20:42:35 +00:00
|
|
|
func NewFrozenNeedleMap(fileName string) (*NeedleMap, error) {
|
|
|
|
if strings.HasSuffix(fileName, ".dat") {
|
|
|
|
fileName = fileName[:4]
|
|
|
|
}
|
|
|
|
var (
|
|
|
|
fm *CdbMap
|
|
|
|
indexExists bool
|
|
|
|
)
|
|
|
|
file, err := os.Open(fileName + ".idx")
|
|
|
|
if err != nil && os.IsNotExist(err) {
|
|
|
|
if fm, err = NewCdbMap(fileName + ".cdb"); err != nil {
|
|
|
|
log.Printf("error opening %s.cdb: %s", fileName, err)
|
|
|
|
fm = nil
|
|
|
|
} else {
|
|
|
|
if dstat, e := os.Stat(fileName + ".dat"); e == nil {
|
|
|
|
if cstat, e := os.Stat(fileName + ".cdb"); e == nil {
|
|
|
|
if cstat.ModTime().Before(dstat.ModTime()) {
|
|
|
|
return nil, errors.New("CDB file " + fileName +
|
|
|
|
".cdb is older than data file " + fileName + ".dat!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
indexExists = true
|
|
|
|
}
|
|
|
|
if fm == nil {
|
|
|
|
fm, err = NewCdbMapFromIndex(file)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if indexExists {
|
|
|
|
os.Remove(fileName + ".idx")
|
|
|
|
}
|
2013-01-12 18:56:47 +00:00
|
|
|
}
|
|
|
|
return &NeedleMap{
|
|
|
|
fm: fm,
|
|
|
|
bytes: make([]byte, 16),
|
|
|
|
}, nil
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2011-12-22 04:04:47 +00:00
|
|
|
|
2013-01-13 16:07:38 +00:00
|
|
|
func (nm NeedleMap) IsFrozen() bool {
|
|
|
|
return nm.m == nil && nm.fm != nil
|
|
|
|
}
|
|
|
|
|
2011-12-22 04:04:47 +00:00
|
|
|
const (
|
|
|
|
RowsToRead = 1024
|
|
|
|
)
|
|
|
|
|
2013-01-13 16:07:38 +00:00
|
|
|
var MapIsFrozen = errors.New("Map is frozen!")
|
|
|
|
|
2013-01-12 18:56:47 +00:00
|
|
|
func LoadNeedleMap(file *os.File) (*NeedleMap, error) {
|
2011-12-24 08:40:56 +00:00
|
|
|
nm := NewNeedleMap(file)
|
2013-01-12 18:56:47 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
key uint64
|
|
|
|
offset, size, oldSize uint32
|
|
|
|
)
|
|
|
|
iterFun := func(buf []byte) error {
|
|
|
|
key = util.BytesToUint64(buf[:8])
|
|
|
|
offset = util.BytesToUint32(buf[8:12])
|
|
|
|
size = util.BytesToUint32(buf[12:16])
|
|
|
|
nm.fileCounter++
|
|
|
|
nm.fileByteCounter = nm.fileByteCounter + uint64(size)
|
|
|
|
if offset > 0 {
|
|
|
|
oldSize = nm.m.Set(Key(key), offset, size)
|
|
|
|
//log.Println("reading key", key, "offset", offset, "size", size, "oldSize", oldSize)
|
|
|
|
if oldSize > 0 {
|
|
|
|
nm.deletionCounter++
|
|
|
|
nm.deletionByteCounter = nm.deletionByteCounter + uint64(oldSize)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
nm.m.Delete(Key(key))
|
|
|
|
//log.Println("removing key", key)
|
|
|
|
nm.deletionCounter++
|
|
|
|
nm.deletionByteCounter = nm.deletionByteCounter + uint64(size)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err := readIndexFile(file, iterFun); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return nm, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// calls iterFun with each row (raw 16 bytes)
|
|
|
|
func readIndexFile(indexFile *os.File, iterFun func([]byte) error) error {
|
|
|
|
buf := make([]byte, 16*RowsToRead)
|
|
|
|
count, e := io.ReadAtLeast(indexFile, buf, 16)
|
|
|
|
if e != nil && count > 0 {
|
|
|
|
fstat, err := indexFile.Stat()
|
|
|
|
if err != nil {
|
|
|
|
log.Println("ERROR stating %s: %s", indexFile, err)
|
|
|
|
} else {
|
|
|
|
log.Println("Loading index file", fstat.Name(), "size", fstat.Size())
|
|
|
|
}
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
|
|
|
for count > 0 && e == nil {
|
|
|
|
for i := 0; i < count; i += 16 {
|
2013-01-12 18:56:47 +00:00
|
|
|
if e = iterFun(buf[i : i+16]); e != nil {
|
|
|
|
return e
|
2012-09-29 23:07:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-12 18:56:47 +00:00
|
|
|
count, e = io.ReadAtLeast(indexFile, buf, 16)
|
2012-09-28 04:46:32 +00:00
|
|
|
}
|
2013-01-12 18:56:47 +00:00
|
|
|
return nil
|
2012-09-29 23:07:24 +00:00
|
|
|
}
|
2012-06-29 07:53:47 +00:00
|
|
|
|
|
|
|
func (nm *NeedleMap) Put(key uint64, offset uint32, size uint32) (int, error) {
|
2013-01-13 16:07:38 +00:00
|
|
|
if nm.IsFrozen() {
|
|
|
|
return 0, MapIsFrozen
|
|
|
|
}
|
2012-11-24 01:03:27 +00:00
|
|
|
oldSize := nm.m.Set(Key(key), offset, size)
|
2012-06-29 07:53:47 +00:00
|
|
|
util.Uint64toBytes(nm.bytes[0:8], key)
|
|
|
|
util.Uint32toBytes(nm.bytes[8:12], offset)
|
|
|
|
util.Uint32toBytes(nm.bytes[12:16], size)
|
2012-10-10 03:53:31 +00:00
|
|
|
nm.fileCounter++
|
2012-12-04 06:54:08 +00:00
|
|
|
nm.fileByteCounter = nm.fileByteCounter + uint64(size)
|
2012-11-24 01:03:27 +00:00
|
|
|
if oldSize > 0 {
|
|
|
|
nm.deletionCounter++
|
2012-12-04 06:54:08 +00:00
|
|
|
nm.deletionByteCounter = nm.deletionByteCounter + uint64(oldSize)
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
2011-12-24 08:40:56 +00:00
|
|
|
return nm.indexFile.Write(nm.bytes)
|
2011-12-19 05:59:37 +00:00
|
|
|
}
|
2012-09-29 23:07:24 +00:00
|
|
|
func (nm *NeedleMap) Get(key uint64) (element *NeedleValue, ok bool) {
|
2013-01-14 21:18:00 +00:00
|
|
|
if nm.m != nil {
|
|
|
|
element, ok = nm.m.Get(Key(key))
|
|
|
|
} else {
|
|
|
|
element, ok = nm.fm.Get(Key(key))
|
|
|
|
}
|
2011-12-19 05:59:37 +00:00
|
|
|
return
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2013-01-13 16:07:38 +00:00
|
|
|
func (nm *NeedleMap) Delete(key uint64) error {
|
|
|
|
if nm.IsFrozen() {
|
|
|
|
return MapIsFrozen
|
|
|
|
}
|
2012-12-04 06:54:08 +00:00
|
|
|
nm.deletionByteCounter = nm.deletionByteCounter + uint64(nm.m.Delete(Key(key)))
|
2012-06-29 07:53:47 +00:00
|
|
|
util.Uint64toBytes(nm.bytes[0:8], key)
|
|
|
|
util.Uint32toBytes(nm.bytes[8:12], 0)
|
|
|
|
util.Uint32toBytes(nm.bytes[12:16], 0)
|
2011-12-24 08:40:56 +00:00
|
|
|
nm.indexFile.Write(nm.bytes)
|
2012-10-10 03:53:31 +00:00
|
|
|
nm.deletionCounter++
|
2013-01-13 16:07:38 +00:00
|
|
|
return nil
|
2011-12-24 08:40:56 +00:00
|
|
|
}
|
2011-12-22 04:04:47 +00:00
|
|
|
func (nm *NeedleMap) Close() {
|
|
|
|
nm.indexFile.Close()
|
|
|
|
}
|
2012-12-04 06:54:08 +00:00
|
|
|
func (nm *NeedleMap) ContentSize() uint64 {
|
|
|
|
return nm.fileByteCounter
|
|
|
|
}
|
2013-01-05 22:06:44 +00:00
|
|
|
|
|
|
|
// iterate through all needles using the iterator function
|
|
|
|
func (nm *NeedleMap) Walk(pedestrian func(*NeedleValue) error) (err error) {
|
2013-01-14 21:18:00 +00:00
|
|
|
if nm.m != nil {
|
|
|
|
return nm.m.Walk(pedestrian)
|
|
|
|
}
|
|
|
|
return nm.fm.Walk(pedestrian)
|
2013-01-05 22:06:44 +00:00
|
|
|
}
|