2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
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"
|
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-17 08:15:01 +00:00
|
|
|
m CompactMap
|
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
|
|
|
|
2011-12-24 08:40:56 +00:00
|
|
|
func NewNeedleMap(file *os.File) *NeedleMap {
|
2013-01-17 08:15:01 +00:00
|
|
|
nm := &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-17 08:15:01 +00:00
|
|
|
return nm
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2011-12-22 04:04:47 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
RowsToRead = 1024
|
|
|
|
)
|
|
|
|
|
2013-01-17 08:15:01 +00:00
|
|
|
func LoadNeedleMap(file *os.File) *NeedleMap {
|
2011-12-24 08:40:56 +00:00
|
|
|
nm := NewNeedleMap(file)
|
2013-01-17 08:15:01 +00:00
|
|
|
bytes := make([]byte, 16*RowsToRead)
|
|
|
|
count, e := nm.indexFile.Read(bytes)
|
|
|
|
if count > 0 {
|
|
|
|
fstat, _ := file.Stat()
|
|
|
|
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-17 08:15:01 +00:00
|
|
|
key := util.BytesToUint64(bytes[i : i+8])
|
|
|
|
offset := util.BytesToUint32(bytes[i+8 : i+12])
|
|
|
|
size := util.BytesToUint32(bytes[i+12 : i+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)
|
2012-09-29 23:07:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 08:15:01 +00:00
|
|
|
count, e = nm.indexFile.Read(bytes)
|
2012-09-28 04:46:32 +00:00
|
|
|
}
|
2013-01-17 08:15:01 +00:00
|
|
|
return nm
|
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) {
|
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-17 08:14:45 +00:00
|
|
|
element, ok = nm.m.Get(Key(key))
|
2011-12-19 05:59:37 +00:00
|
|
|
return
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2013-01-17 08:14:58 +00:00
|
|
|
func (nm *NeedleMap) Delete(key uint64) {
|
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++
|
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-20 19:27:32 +00:00
|
|
|
func (nm *NeedleMap) Visit(visit func(NeedleValue) error) (err error) {
|
|
|
|
return nm.m.Visit(visit)
|
|
|
|
}
|