seaweedfs/weed-fs/src/pkg/storage/needle_map.go

176 lines
4.1 KiB
Go
Raw Normal View History

package storage
import (
2013-01-13 16:07:38 +00:00
"errors"
2013-01-12 18:56:47 +00:00
"io"
"log"
"os"
"pkg/util"
)
type NeedleMap struct {
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
deletionByteCounter uint64
fileByteCounter uint64
}
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
func NewNeedleMap(file *os.File) *NeedleMap {
2013-01-12 18:56:47 +00:00
return &NeedleMap{
m: NewCompactMap(),
bytes: make([]byte, 16),
indexFile: file,
}
2013-01-12 18:56:47 +00:00
}
// Nes frozen (on-disk, not modifiable(!)) needle map
func NewFrozenNeedleMap(file *os.File) (*NeedleMap, error) {
fm, err := NewCdbMapFromIndex(file)
if err != nil {
return nil, err
2013-01-12 18:56:47 +00:00
}
return &NeedleMap{
fm: fm,
bytes: make([]byte, 16),
}, nil
}
2013-01-13 16:07:38 +00:00
func (nm NeedleMap) IsFrozen() bool {
return nm.m == nil && nm.fm != nil
}
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) {
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())
}
}
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
}
}
2013-01-12 18:56:47 +00:00
count, e = io.ReadAtLeast(indexFile, buf, 16)
}
2013-01-12 18:56:47 +00:00
return nil
}
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)
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++
nm.fileByteCounter = nm.fileByteCounter + uint64(size)
2012-11-24 01:03:27 +00:00
if oldSize > 0 {
nm.deletionCounter++
nm.deletionByteCounter = nm.deletionByteCounter + uint64(oldSize)
2012-11-24 01:03:27 +00:00
}
return nm.indexFile.Write(nm.bytes)
}
func (nm *NeedleMap) Get(key uint64) (element *NeedleValue, ok bool) {
element, ok = nm.m.Get(Key(key))
return
}
2013-01-13 16:07:38 +00:00
func (nm *NeedleMap) Delete(key uint64) error {
if nm.IsFrozen() {
return MapIsFrozen
}
nm.deletionByteCounter = nm.deletionByteCounter + uint64(nm.m.Delete(Key(key)))
util.Uint64toBytes(nm.bytes[0:8], key)
util.Uint32toBytes(nm.bytes[8:12], 0)
util.Uint32toBytes(nm.bytes[12:16], 0)
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
}
func (nm *NeedleMap) Close() {
nm.indexFile.Close()
}
func (nm *NeedleMap) ContentSize() uint64 {
return nm.fileByteCounter
}
// iterate through all needles using the iterator function
func (nm *NeedleMap) Walk(pedestrian func(*NeedleValue) error) (err error) {
return nm.m.Walk(pedestrian)
}