2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2013-02-10 22:00:06 +00:00
|
|
|
"fmt"
|
2013-02-12 07:54:21 +00:00
|
|
|
"io"
|
2013-02-10 22:00:06 +00:00
|
|
|
"os"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/weed-fs/go/glog"
|
|
|
|
"github.com/chrislusf/weed-fs/go/util"
|
2011-12-16 14:51:26 +00:00
|
|
|
)
|
|
|
|
|
2013-04-18 07:23:14 +00:00
|
|
|
type NeedleMapper interface {
|
|
|
|
Put(key uint64, offset uint32, size uint32) (int, error)
|
|
|
|
Get(key uint64) (element *NeedleValue, ok bool)
|
|
|
|
Delete(key uint64) error
|
|
|
|
Close()
|
2014-03-10 18:43:54 +00:00
|
|
|
Destroy() error
|
2013-04-18 07:23:14 +00:00
|
|
|
ContentSize() uint64
|
|
|
|
DeletedSize() uint64
|
|
|
|
FileCount() int
|
|
|
|
DeletedCount() int
|
|
|
|
Visit(visit func(NeedleValue) error) (err error)
|
2014-04-17 06:43:27 +00:00
|
|
|
MaxFileKey() uint64
|
2013-04-18 07:23:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type mapMetric struct {
|
|
|
|
DeletionCounter int `json:"DeletionCounter"`
|
|
|
|
FileCounter int `json:"FileCounter"`
|
|
|
|
DeletionByteCounter uint64 `json:"DeletionByteCounter"`
|
|
|
|
FileByteCounter uint64 `json:"FileByteCounter"`
|
2013-09-02 06:58:21 +00:00
|
|
|
MaximumFileKey uint64 `json:"MaxFileKey"`
|
2013-04-18 07:23:14 +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
|
|
|
|
2013-04-18 07:23:14 +00:00
|
|
|
mapMetric
|
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
|
|
|
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-02-10 22:00:06 +00:00
|
|
|
func LoadNeedleMap(file *os.File) (*NeedleMap, error) {
|
2011-12-24 08:40:56 +00:00
|
|
|
nm := NewNeedleMap(file)
|
2014-05-30 02:19:03 +00:00
|
|
|
e := WalkIndexFile(file, func(key uint64, offset, size uint32) error {
|
2013-09-02 06:58:21 +00:00
|
|
|
if key > nm.MaximumFileKey {
|
|
|
|
nm.MaximumFileKey = key
|
|
|
|
}
|
2013-06-20 01:10:38 +00:00
|
|
|
nm.FileCounter++
|
|
|
|
nm.FileByteCounter = nm.FileByteCounter + uint64(size)
|
|
|
|
if offset > 0 {
|
|
|
|
oldSize := nm.m.Set(Key(key), offset, size)
|
2014-03-19 11:38:10 +00:00
|
|
|
glog.V(3).Infoln("reading key", key, "offset", offset, "size", size, "oldSize", oldSize)
|
2013-06-20 01:10:38 +00:00
|
|
|
if oldSize > 0 {
|
2013-04-18 07:23:14 +00:00
|
|
|
nm.DeletionCounter++
|
|
|
|
nm.DeletionByteCounter = nm.DeletionByteCounter + uint64(oldSize)
|
2012-09-29 23:07:24 +00:00
|
|
|
}
|
2013-06-20 01:10:38 +00:00
|
|
|
} else {
|
|
|
|
oldSize := nm.m.Delete(Key(key))
|
2014-03-19 11:38:10 +00:00
|
|
|
glog.V(3).Infoln("removing key", key, "offset", offset, "size", size, "oldSize", oldSize)
|
2013-06-20 01:10:38 +00:00
|
|
|
nm.DeletionCounter++
|
|
|
|
nm.DeletionByteCounter = nm.DeletionByteCounter + uint64(oldSize)
|
2012-09-29 23:07:24 +00:00
|
|
|
}
|
2013-06-20 01:10:38 +00:00
|
|
|
return nil
|
|
|
|
})
|
2013-09-02 06:58:21 +00:00
|
|
|
glog.V(1).Infoln("max file key:", nm.MaximumFileKey)
|
2013-06-20 01:10:38 +00:00
|
|
|
return nm, e
|
|
|
|
}
|
|
|
|
|
|
|
|
// walks through the index file, calls fn function with each key, offset, size
|
|
|
|
// stops with the error returned by the fn function
|
2014-05-30 02:19:03 +00:00
|
|
|
func WalkIndexFile(r *os.File, fn func(key uint64, offset, size uint32) error) error {
|
2014-03-19 11:38:10 +00:00
|
|
|
var readerOffset int64
|
2013-06-20 01:10:38 +00:00
|
|
|
bytes := make([]byte, 16*RowsToRead)
|
2014-03-19 11:38:10 +00:00
|
|
|
count, e := r.ReadAt(bytes, readerOffset)
|
|
|
|
glog.V(3).Infoln("file", r.Name(), "readerOffset", readerOffset, "count", count, "e", e)
|
|
|
|
readerOffset += int64(count)
|
2013-06-20 01:10:38 +00:00
|
|
|
var (
|
|
|
|
key uint64
|
|
|
|
offset, size uint32
|
|
|
|
i int
|
|
|
|
)
|
2012-09-29 23:07:24 +00:00
|
|
|
|
2014-03-19 11:38:10 +00:00
|
|
|
for count > 0 && e == nil || e == io.EOF {
|
2013-06-20 01:10:38 +00:00
|
|
|
for i = 0; i+16 <= count; i += 16 {
|
|
|
|
key = util.BytesToUint64(bytes[i : i+8])
|
|
|
|
offset = util.BytesToUint32(bytes[i+8 : i+12])
|
|
|
|
size = util.BytesToUint32(bytes[i+12 : i+16])
|
|
|
|
if e = fn(key, offset, size); e != nil {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
}
|
2014-03-19 11:38:10 +00:00
|
|
|
if e == io.EOF {
|
|
|
|
return nil
|
2013-06-20 01:10:38 +00:00
|
|
|
}
|
2014-03-19 11:38:10 +00:00
|
|
|
count, e = r.ReadAt(bytes, readerOffset)
|
|
|
|
glog.V(3).Infoln("file", r.Name(), "readerOffset", readerOffset, "count", count, "e", e)
|
|
|
|
readerOffset += int64(count)
|
2013-02-12 07:54:21 +00:00
|
|
|
}
|
2013-06-20 01:10:38 +00:00
|
|
|
return e
|
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) {
|
2014-04-17 06:43:27 +00:00
|
|
|
if key > nm.MaximumFileKey {
|
|
|
|
nm.MaximumFileKey = key
|
|
|
|
}
|
2012-11-24 01:03:27 +00:00
|
|
|
oldSize := nm.m.Set(Key(key), offset, size)
|
2014-03-19 11:38:10 +00:00
|
|
|
bytes := make([]byte, 16)
|
|
|
|
util.Uint64toBytes(bytes[0:8], key)
|
|
|
|
util.Uint32toBytes(bytes[8:12], offset)
|
|
|
|
util.Uint32toBytes(bytes[12:16], size)
|
2013-04-18 07:23:14 +00:00
|
|
|
nm.FileCounter++
|
|
|
|
nm.FileByteCounter = nm.FileByteCounter + uint64(size)
|
2012-11-24 01:03:27 +00:00
|
|
|
if oldSize > 0 {
|
2013-04-18 07:23:14 +00:00
|
|
|
nm.DeletionCounter++
|
|
|
|
nm.DeletionByteCounter = nm.DeletionByteCounter + uint64(oldSize)
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
2014-05-30 02:19:03 +00:00
|
|
|
if _, err := nm.indexFile.Seek(0, 2); err != nil {
|
|
|
|
return 0, fmt.Errorf("cannot go to the end of indexfile %s: %s", nm.indexFile.Name(), err.Error())
|
|
|
|
}
|
2014-03-19 11:38:10 +00:00
|
|
|
return nm.indexFile.Write(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-02-10 22:00:06 +00:00
|
|
|
func (nm *NeedleMap) Delete(key uint64) error {
|
2013-04-18 07:23:14 +00:00
|
|
|
nm.DeletionByteCounter = nm.DeletionByteCounter + uint64(nm.m.Delete(Key(key)))
|
2014-03-19 11:38:10 +00:00
|
|
|
bytes := make([]byte, 16)
|
|
|
|
util.Uint64toBytes(bytes[0:8], key)
|
|
|
|
util.Uint32toBytes(bytes[8:12], 0)
|
|
|
|
util.Uint32toBytes(bytes[12:16], 0)
|
2014-05-30 02:19:03 +00:00
|
|
|
if _, err := nm.indexFile.Seek(0, 2); err != nil {
|
|
|
|
return fmt.Errorf("cannot go to the end of indexfile %s: %s", nm.indexFile.Name(), err.Error())
|
|
|
|
}
|
|
|
|
if _, err := nm.indexFile.Write(bytes); err != nil {
|
|
|
|
return fmt.Errorf("error writing to indexfile %s: %s", nm.indexFile.Name(), err.Error())
|
2013-02-10 22:00:06 +00:00
|
|
|
}
|
2013-04-18 07:23:14 +00:00
|
|
|
nm.DeletionCounter++
|
2013-02-10 22:00:06 +00:00
|
|
|
return nil
|
2011-12-24 08:40:56 +00:00
|
|
|
}
|
2011-12-22 04:04:47 +00:00
|
|
|
func (nm *NeedleMap) Close() {
|
2013-02-27 06:54:22 +00:00
|
|
|
_ = nm.indexFile.Close()
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
2014-03-10 18:43:54 +00:00
|
|
|
func (nm *NeedleMap) Destroy() error {
|
|
|
|
nm.Close()
|
|
|
|
return os.Remove(nm.indexFile.Name())
|
|
|
|
}
|
2013-04-18 07:23:14 +00:00
|
|
|
func (nm NeedleMap) ContentSize() uint64 {
|
|
|
|
return nm.FileByteCounter
|
|
|
|
}
|
|
|
|
func (nm NeedleMap) DeletedSize() uint64 {
|
|
|
|
return nm.DeletionByteCounter
|
|
|
|
}
|
|
|
|
func (nm NeedleMap) FileCount() int {
|
|
|
|
return nm.FileCounter
|
|
|
|
}
|
|
|
|
func (nm NeedleMap) DeletedCount() int {
|
|
|
|
return nm.DeletionCounter
|
2012-12-04 06:54:08 +00:00
|
|
|
}
|
2013-01-20 19:27:32 +00:00
|
|
|
func (nm *NeedleMap) Visit(visit func(NeedleValue) error) (err error) {
|
|
|
|
return nm.m.Visit(visit)
|
|
|
|
}
|
2013-09-02 06:58:21 +00:00
|
|
|
func (nm NeedleMap) MaxFileKey() uint64 {
|
|
|
|
return nm.MaximumFileKey
|
|
|
|
}
|