2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2013-07-13 20:51:47 +00:00
|
|
|
"bytes"
|
2012-11-07 09:51:43 +00:00
|
|
|
"errors"
|
2012-11-20 09:45:36 +00:00
|
|
|
"fmt"
|
2013-01-21 03:44:23 +00:00
|
|
|
"io"
|
2011-12-16 14:51:26 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
2011-12-24 08:40:56 +00:00
|
|
|
"sync"
|
2013-08-12 23:53:32 +00:00
|
|
|
"time"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/weed-fs/go/glog"
|
2011-12-16 14:51:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Volume struct {
|
2013-11-12 10:21:22 +00:00
|
|
|
Id VolumeId
|
|
|
|
dir string
|
|
|
|
Collection string
|
|
|
|
dataFile *os.File
|
|
|
|
nm NeedleMapper
|
|
|
|
readOnly bool
|
2011-12-16 14:51:26 +00:00
|
|
|
|
2013-01-21 03:44:23 +00:00
|
|
|
SuperBlock
|
2012-11-20 09:45:36 +00:00
|
|
|
|
2014-09-20 19:38:59 +00:00
|
|
|
accessLock sync.Mutex
|
|
|
|
lastModifiedTime uint64 //unix time in seconds
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
|
2014-09-20 19:38:59 +00:00
|
|
|
func NewVolume(dirname string, collection string, id VolumeId, replicaPlacement *ReplicaPlacement, ttl *TTL) (v *Volume, e error) {
|
2013-11-12 10:21:22 +00:00
|
|
|
v = &Volume{dir: dirname, Collection: collection, Id: id}
|
2014-09-20 19:38:59 +00:00
|
|
|
v.SuperBlock = SuperBlock{ReplicaPlacement: replicaPlacement, Ttl: ttl}
|
2014-02-07 01:32:06 +00:00
|
|
|
e = v.load(true, true)
|
2013-01-21 03:44:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-12-26 07:36:33 +00:00
|
|
|
func (v *Volume) String() string {
|
|
|
|
return fmt.Sprintf("Id:%v, dir:%s, Collection:%s, dataFile:%v, nm:%v, readOnly:%v", v.Id, v.dir, v.Collection, v.dataFile, v.nm, v.readOnly)
|
|
|
|
}
|
|
|
|
|
2013-11-12 10:21:22 +00:00
|
|
|
func loadVolumeWithoutIndex(dirname string, collection string, id VolumeId) (v *Volume, e error) {
|
|
|
|
v = &Volume{dir: dirname, Collection: collection, Id: id}
|
2014-03-03 06:16:54 +00:00
|
|
|
v.SuperBlock = SuperBlock{}
|
2014-02-07 01:32:06 +00:00
|
|
|
e = v.load(false, false)
|
2012-11-07 09:51:43 +00:00
|
|
|
return
|
|
|
|
}
|
2014-01-22 04:51:46 +00:00
|
|
|
func (v *Volume) FileName() (fileName string) {
|
2014-02-07 01:32:06 +00:00
|
|
|
if v.Collection == "" {
|
|
|
|
fileName = path.Join(v.dir, v.Id.String())
|
|
|
|
} else {
|
|
|
|
fileName = path.Join(v.dir, v.Collection+"_"+v.Id.String())
|
|
|
|
}
|
|
|
|
return
|
2014-01-22 04:51:46 +00:00
|
|
|
}
|
2014-02-07 01:32:06 +00:00
|
|
|
func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool) error {
|
2012-11-07 09:51:43 +00:00
|
|
|
var e error
|
2014-01-22 04:51:46 +00:00
|
|
|
fileName := v.FileName()
|
2014-02-07 01:32:06 +00:00
|
|
|
|
2014-09-20 19:38:59 +00:00
|
|
|
if exists, canRead, canWrite, modifiedTime := checkFile(fileName + ".dat"); exists {
|
2014-02-07 01:32:06 +00:00
|
|
|
if !canRead {
|
|
|
|
return fmt.Errorf("cannot read Volume Data file %s.dat", fileName)
|
|
|
|
}
|
|
|
|
if canWrite {
|
|
|
|
v.dataFile, e = os.OpenFile(fileName+".dat", os.O_RDWR|os.O_CREATE, 0644)
|
2014-09-20 19:38:59 +00:00
|
|
|
v.lastModifiedTime = uint64(modifiedTime.Unix())
|
2014-02-07 01:32:06 +00:00
|
|
|
} else {
|
|
|
|
glog.V(0).Infoln("opening " + fileName + ".dat in READONLY mode")
|
|
|
|
v.dataFile, e = os.Open(fileName + ".dat")
|
|
|
|
v.readOnly = true
|
|
|
|
}
|
2013-08-13 06:48:10 +00:00
|
|
|
} else {
|
2014-02-07 01:32:06 +00:00
|
|
|
if createDatIfMissing {
|
|
|
|
v.dataFile, e = os.OpenFile(fileName+".dat", os.O_RDWR|os.O_CREATE, 0644)
|
|
|
|
} else {
|
|
|
|
return fmt.Errorf("Volume Data file %s.dat does not exist.", fileName)
|
|
|
|
}
|
2013-08-12 23:53:32 +00:00
|
|
|
}
|
2014-02-07 01:32:06 +00:00
|
|
|
|
2011-12-16 14:51:26 +00:00
|
|
|
if e != nil {
|
2013-04-15 02:30:26 +00:00
|
|
|
if !os.IsPermission(e) {
|
2014-10-21 08:27:06 +00:00
|
|
|
return fmt.Errorf("cannot load Volume Data %s.dat: %v", fileName, e)
|
2013-04-15 02:30:26 +00:00
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2013-08-12 23:53:32 +00:00
|
|
|
|
2014-03-03 06:16:54 +00:00
|
|
|
if v.ReplicaPlacement == nil {
|
2013-02-10 22:00:06 +00:00
|
|
|
e = v.readSuperBlock()
|
2012-09-13 08:33:47 +00:00
|
|
|
} else {
|
2013-02-10 22:00:06 +00:00
|
|
|
e = v.maybeWriteSuperBlock()
|
2012-09-13 08:33:47 +00:00
|
|
|
}
|
2013-02-10 22:00:06 +00:00
|
|
|
if e == nil && alsoLoadIndex {
|
2013-06-20 01:10:38 +00:00
|
|
|
if v.readOnly {
|
2013-08-12 23:53:32 +00:00
|
|
|
if v.ensureConvertIdxToCdb(fileName) {
|
|
|
|
v.nm, e = OpenCdbMap(fileName + ".cdb")
|
|
|
|
return e
|
2013-06-20 01:10:38 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-12 23:53:32 +00:00
|
|
|
var indexFile *os.File
|
2013-08-11 18:38:55 +00:00
|
|
|
if v.readOnly {
|
|
|
|
glog.V(1).Infoln("open to read file", fileName+".idx")
|
2013-08-12 23:53:32 +00:00
|
|
|
if indexFile, e = os.OpenFile(fileName+".idx", os.O_RDONLY, 0644); e != nil {
|
2014-10-21 08:27:06 +00:00
|
|
|
return fmt.Errorf("cannot read Volume Index %s.idx: %v", fileName, e)
|
2013-08-11 18:38:55 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
glog.V(1).Infoln("open to write file", fileName+".idx")
|
2013-08-12 23:53:32 +00:00
|
|
|
if indexFile, e = os.OpenFile(fileName+".idx", os.O_RDWR|os.O_CREATE, 0644); e != nil {
|
2014-10-21 08:27:06 +00:00
|
|
|
return fmt.Errorf("cannot write Volume Index %s.idx: %v", fileName, e)
|
2013-08-11 18:38:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
glog.V(0).Infoln("loading file", fileName+".idx", "readonly", v.readOnly)
|
|
|
|
if v.nm, e = LoadNeedleMap(indexFile); e != nil {
|
|
|
|
glog.V(0).Infoln("loading error:", e)
|
2013-08-09 06:57:22 +00:00
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2013-02-10 22:00:06 +00:00
|
|
|
return e
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2012-12-18 01:51:39 +00:00
|
|
|
func (v *Volume) Version() Version {
|
2014-08-25 18:37:00 +00:00
|
|
|
return v.SuperBlock.Version()
|
2012-12-18 01:51:39 +00:00
|
|
|
}
|
2011-12-18 07:22:04 +00:00
|
|
|
func (v *Volume) Size() int64 {
|
2011-12-22 04:04:47 +00:00
|
|
|
stat, e := v.dataFile.Stat()
|
|
|
|
if e == nil {
|
2012-06-29 07:53:47 +00:00
|
|
|
return stat.Size()
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
2014-10-21 08:27:06 +00:00
|
|
|
glog.V(0).Infof("Failed to read file size %s %v", v.dataFile.Name(), e)
|
2011-12-22 04:04:47 +00:00
|
|
|
return -1
|
2011-12-17 06:47:23 +00:00
|
|
|
}
|
2015-03-09 08:09:15 +00:00
|
|
|
|
|
|
|
// Close cleanly shuts down this volume
|
2011-12-16 14:51:26 +00:00
|
|
|
func (v *Volume) Close() {
|
2012-12-21 06:32:21 +00:00
|
|
|
v.accessLock.Lock()
|
|
|
|
defer v.accessLock.Unlock()
|
2011-12-22 04:04:47 +00:00
|
|
|
v.nm.Close()
|
2013-02-27 06:54:22 +00:00
|
|
|
_ = v.dataFile.Close()
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2015-03-09 08:09:15 +00:00
|
|
|
|
2012-11-20 08:54:37 +00:00
|
|
|
func (v *Volume) NeedToReplicate() bool {
|
2014-03-03 06:16:54 +00:00
|
|
|
return v.ReplicaPlacement.GetCopyCount() > 1
|
2012-11-12 09:26:18 +00:00
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
|
2015-03-09 08:09:15 +00:00
|
|
|
// isFileUnchanged checks whether this needle to write is same as last one.
|
|
|
|
// It requires serialized access in the same volume.
|
2013-07-12 05:44:59 +00:00
|
|
|
func (v *Volume) isFileUnchanged(n *Needle) bool {
|
|
|
|
nv, ok := v.nm.Get(n.Id)
|
|
|
|
if ok && nv.Offset > 0 {
|
|
|
|
oldNeedle := new(Needle)
|
2014-03-19 06:48:01 +00:00
|
|
|
oldNeedle.Read(v.dataFile, int64(nv.Offset)*NeedlePaddingSize, nv.Size, v.Version())
|
2013-07-13 20:51:47 +00:00
|
|
|
if oldNeedle.Checksum == n.Checksum && bytes.Equal(oldNeedle.Data, n.Data) {
|
2014-12-26 07:36:33 +00:00
|
|
|
n.DataSize = oldNeedle.DataSize
|
2013-07-12 05:44:59 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2014-03-10 18:43:54 +00:00
|
|
|
|
2015-03-09 08:09:15 +00:00
|
|
|
// Destroy removes everything related to this volume
|
2014-03-10 18:43:54 +00:00
|
|
|
func (v *Volume) Destroy() (err error) {
|
|
|
|
if v.readOnly {
|
2014-04-17 07:16:44 +00:00
|
|
|
err = fmt.Errorf("%s is read-only", v.dataFile.Name())
|
2014-03-10 18:43:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
v.Close()
|
|
|
|
err = os.Remove(v.dataFile.Name())
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err = v.nm.Destroy()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-01-20 11:40:04 +00:00
|
|
|
func (v *Volume) write(n *Needle) (size uint32, err error) {
|
2014-03-24 04:57:10 +00:00
|
|
|
glog.V(4).Infof("writing needle %s", NewFileIdFromNeedle(v.Id, n).String())
|
2013-04-15 02:30:26 +00:00
|
|
|
if v.readOnly {
|
2014-04-17 07:16:44 +00:00
|
|
|
err = fmt.Errorf("%s is read-only", v.dataFile.Name())
|
2013-04-15 02:30:26 +00:00
|
|
|
return
|
|
|
|
}
|
2011-12-24 08:40:56 +00:00
|
|
|
v.accessLock.Lock()
|
|
|
|
defer v.accessLock.Unlock()
|
2013-07-12 05:44:59 +00:00
|
|
|
if v.isFileUnchanged(n) {
|
2014-12-26 07:36:33 +00:00
|
|
|
size = n.DataSize
|
2013-10-31 19:55:19 +00:00
|
|
|
glog.V(4).Infof("needle is unchanged!")
|
2013-07-12 05:44:59 +00:00
|
|
|
return
|
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
var offset int64
|
|
|
|
if offset, err = v.dataFile.Seek(0, 2); err != nil {
|
2015-01-13 10:46:56 +00:00
|
|
|
glog.V(0).Infof("failed to seek the end of file: %v", err)
|
2013-01-20 11:40:04 +00:00
|
|
|
return
|
|
|
|
}
|
2013-07-05 23:05:35 +00:00
|
|
|
|
|
|
|
//ensure file writing starting from aligned positions
|
|
|
|
if offset%NeedlePaddingSize != 0 {
|
|
|
|
offset = offset + (NeedlePaddingSize - offset%NeedlePaddingSize)
|
|
|
|
if offset, err = v.dataFile.Seek(offset, 0); err != nil {
|
2014-10-21 08:27:06 +00:00
|
|
|
glog.V(0).Infof("failed to align in datafile %s: %v", v.dataFile.Name(), err)
|
2013-07-05 23:05:35 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-21 03:44:23 +00:00
|
|
|
if size, err = n.Append(v.dataFile, v.Version()); err != nil {
|
2013-02-27 06:54:22 +00:00
|
|
|
if e := v.dataFile.Truncate(offset); e != nil {
|
2014-10-21 08:27:06 +00:00
|
|
|
err = fmt.Errorf("%s\ncannot truncate %s: %v", err, v.dataFile.Name(), e)
|
2013-02-27 06:54:22 +00:00
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
return
|
|
|
|
}
|
2012-08-24 06:06:15 +00:00
|
|
|
nv, ok := v.nm.Get(n.Id)
|
2013-01-20 11:40:04 +00:00
|
|
|
if !ok || int64(nv.Offset)*NeedlePaddingSize < offset {
|
2013-10-31 19:55:19 +00:00
|
|
|
if _, err = v.nm.Put(n.Id, uint32(offset/NeedlePaddingSize), n.Size); err != nil {
|
2014-10-21 08:27:06 +00:00
|
|
|
glog.V(4).Infof("failed to save in needle map %d: %v", n.Id, err)
|
2013-10-31 19:55:19 +00:00
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2014-09-20 19:38:59 +00:00
|
|
|
if v.lastModifiedTime < n.LastModified {
|
|
|
|
v.lastModifiedTime = n.LastModified
|
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
return
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2013-07-05 23:05:35 +00:00
|
|
|
|
2013-01-20 11:40:04 +00:00
|
|
|
func (v *Volume) delete(n *Needle) (uint32, error) {
|
2014-03-24 04:57:10 +00:00
|
|
|
glog.V(4).Infof("delete needle %s", NewFileIdFromNeedle(v.Id, n).String())
|
2013-04-15 02:30:26 +00:00
|
|
|
if v.readOnly {
|
2014-04-17 07:16:44 +00:00
|
|
|
return 0, fmt.Errorf("%s is read-only", v.dataFile.Name())
|
2013-04-15 02:30:26 +00:00
|
|
|
}
|
2012-01-19 00:49:41 +00:00
|
|
|
v.accessLock.Lock()
|
|
|
|
defer v.accessLock.Unlock()
|
2012-08-24 06:06:15 +00:00
|
|
|
nv, ok := v.nm.Get(n.Id)
|
2013-01-02 23:39:55 +00:00
|
|
|
//fmt.Println("key", n.Id, "volume offset", nv.Offset, "data_size", n.Size, "cached size", nv.Size)
|
2012-01-19 00:49:41 +00:00
|
|
|
if ok {
|
2013-07-29 05:49:17 +00:00
|
|
|
size := nv.Size
|
2013-08-09 06:57:22 +00:00
|
|
|
if err := v.nm.Delete(n.Id); err != nil {
|
2013-07-29 05:49:17 +00:00
|
|
|
return size, err
|
2013-02-27 06:54:22 +00:00
|
|
|
}
|
2013-08-09 06:57:22 +00:00
|
|
|
if _, err := v.dataFile.Seek(0, 2); err != nil {
|
2013-07-29 05:49:17 +00:00
|
|
|
return size, err
|
2013-02-27 06:54:22 +00:00
|
|
|
}
|
2015-03-09 08:09:15 +00:00
|
|
|
n.Data = nil
|
2013-07-29 05:53:25 +00:00
|
|
|
_, err := n.Append(v.dataFile, v.Version())
|
2013-07-29 05:49:17 +00:00
|
|
|
return size, err
|
2012-01-19 00:49:41 +00:00
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
return 0, nil
|
2012-01-19 00:49:41 +00:00
|
|
|
}
|
2012-11-24 01:03:27 +00:00
|
|
|
|
2012-06-29 07:53:47 +00:00
|
|
|
func (v *Volume) read(n *Needle) (int, error) {
|
2012-08-24 06:06:15 +00:00
|
|
|
nv, ok := v.nm.Get(n.Id)
|
2014-09-20 19:38:59 +00:00
|
|
|
if !ok || nv.Offset == 0 {
|
|
|
|
return -1, errors.New("Not Found")
|
|
|
|
}
|
|
|
|
bytesRead, err := n.Read(v.dataFile, int64(nv.Offset)*NeedlePaddingSize, nv.Size, v.Version())
|
|
|
|
if err != nil {
|
|
|
|
return bytesRead, err
|
|
|
|
}
|
|
|
|
if !n.HasTtl() {
|
|
|
|
return bytesRead, err
|
|
|
|
}
|
|
|
|
ttlMinutes := n.Ttl.Minutes()
|
|
|
|
if ttlMinutes == 0 {
|
|
|
|
return bytesRead, nil
|
|
|
|
}
|
|
|
|
if !n.HasLastModifiedDate() {
|
|
|
|
return bytesRead, nil
|
|
|
|
}
|
|
|
|
if uint64(time.Now().Unix()) < n.LastModified+uint64(ttlMinutes*60) {
|
|
|
|
return bytesRead, nil
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2012-09-27 03:30:05 +00:00
|
|
|
return -1, errors.New("Not Found")
|
2011-12-24 08:40:56 +00:00
|
|
|
}
|
2012-11-07 09:51:43 +00:00
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (v *Volume) freeze() error {
|
|
|
|
if v.readOnly {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
nm, ok := v.nm.(*NeedleMap)
|
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
v.accessLock.Lock()
|
|
|
|
defer v.accessLock.Unlock()
|
2013-11-18 23:05:11 +00:00
|
|
|
bn, _ := baseFilename(v.dataFile.Name())
|
2013-06-20 01:10:38 +00:00
|
|
|
cdbFn := bn + ".cdb"
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infof("converting %s to %s", nm.indexFile.Name(), cdbFn)
|
2013-06-20 01:10:38 +00:00
|
|
|
err := DumpNeedleMapToCdb(cdbFn, nm)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if v.nm, err = OpenCdbMap(cdbFn); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
nm.indexFile.Close()
|
|
|
|
os.Remove(nm.indexFile.Name())
|
|
|
|
v.readOnly = true
|
|
|
|
return nil
|
|
|
|
}
|
2012-11-07 09:51:43 +00:00
|
|
|
|
2013-11-12 10:21:22 +00:00
|
|
|
func ScanVolumeFile(dirname string, collection string, id VolumeId,
|
2013-01-21 03:44:23 +00:00
|
|
|
visitSuperBlock func(SuperBlock) error,
|
2014-06-01 00:10:51 +00:00
|
|
|
readNeedleBody bool,
|
2013-09-19 18:06:14 +00:00
|
|
|
visitNeedle func(n *Needle, offset int64) error) (err error) {
|
2013-01-21 03:44:23 +00:00
|
|
|
var v *Volume
|
2013-11-12 10:21:22 +00:00
|
|
|
if v, err = loadVolumeWithoutIndex(dirname, collection, id); err != nil {
|
2015-01-14 01:04:41 +00:00
|
|
|
return fmt.Errorf("Failed to load volume %d: %v", id, err)
|
2012-11-07 09:51:43 +00:00
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
if err = visitSuperBlock(v.SuperBlock); err != nil {
|
2015-01-14 01:04:41 +00:00
|
|
|
return fmt.Errorf("Failed to read volume %d super block: %v", id, err)
|
2012-11-07 09:51:43 +00:00
|
|
|
}
|
|
|
|
|
2013-01-21 03:44:23 +00:00
|
|
|
version := v.Version()
|
2012-11-07 09:51:43 +00:00
|
|
|
|
2013-09-19 18:06:14 +00:00
|
|
|
offset := int64(SuperBlockSize)
|
2014-03-19 06:48:01 +00:00
|
|
|
n, rest, e := ReadNeedleHeader(v.dataFile, version, offset)
|
2013-01-21 03:44:23 +00:00
|
|
|
if e != nil {
|
2014-10-21 08:27:06 +00:00
|
|
|
err = fmt.Errorf("cannot read needle header: %v", e)
|
2013-01-21 03:44:23 +00:00
|
|
|
return
|
2013-01-20 11:40:04 +00:00
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
for n != nil {
|
2014-06-01 00:10:51 +00:00
|
|
|
if readNeedleBody {
|
|
|
|
if err = n.ReadNeedleBody(v.dataFile, version, offset+int64(NeedleHeaderSize), rest); err != nil {
|
2015-03-09 08:09:15 +00:00
|
|
|
glog.V(0).Infof("cannot read needle body: %v", err)
|
|
|
|
//err = fmt.Errorf("cannot read needle body: %v", err)
|
|
|
|
//return
|
|
|
|
}
|
|
|
|
if n.DataSize >= n.Size {
|
|
|
|
// this should come from a bug reported on #87 and #93
|
|
|
|
// fixed in v0.69
|
|
|
|
// remove this whole "if" clause later, long after 0.69
|
|
|
|
oldRest, oldSize := rest, n.Size
|
|
|
|
padding := NeedlePaddingSize - ((n.Size + NeedleHeaderSize + NeedleChecksumSize) % NeedlePaddingSize)
|
|
|
|
n.Size = 0
|
|
|
|
rest = n.Size + NeedleChecksumSize + padding
|
|
|
|
if rest%NeedlePaddingSize != 0 {
|
|
|
|
rest += (NeedlePaddingSize - rest%NeedlePaddingSize)
|
|
|
|
}
|
|
|
|
glog.V(4).Infof("Adjusting n.Size %d=>0 rest:%d=>%d %+v", oldSize, oldRest, rest, n)
|
2014-06-01 00:10:51 +00:00
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
}
|
|
|
|
if err = visitNeedle(n, offset); err != nil {
|
2015-03-09 08:09:15 +00:00
|
|
|
glog.V(0).Infof("visit needle error: %v", err)
|
2013-01-21 03:44:23 +00:00
|
|
|
}
|
2014-03-19 11:48:13 +00:00
|
|
|
offset += int64(NeedleHeaderSize) + int64(rest)
|
2015-03-09 08:09:15 +00:00
|
|
|
glog.V(4).Infof("==> new entry offset %d", offset)
|
2014-03-19 06:48:01 +00:00
|
|
|
if n, rest, err = ReadNeedleHeader(v.dataFile, version, offset); err != nil {
|
2013-01-21 03:44:23 +00:00
|
|
|
if err == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
2014-10-21 08:27:06 +00:00
|
|
|
return fmt.Errorf("cannot read needle header: %v", err)
|
2013-01-21 03:44:23 +00:00
|
|
|
}
|
2015-03-09 08:09:15 +00:00
|
|
|
glog.V(4).Infof("new entry needle size:%d rest:%d", n.Size, rest)
|
2012-11-07 09:51:43 +00:00
|
|
|
}
|
|
|
|
|
2013-01-21 03:44:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2012-12-21 06:32:21 +00:00
|
|
|
func (v *Volume) ContentSize() uint64 {
|
2013-04-18 07:23:14 +00:00
|
|
|
return v.nm.ContentSize()
|
2012-12-04 06:54:08 +00:00
|
|
|
}
|
2013-08-12 23:53:32 +00:00
|
|
|
|
|
|
|
func checkFile(filename string) (exists, canRead, canWrite bool, modTime time.Time) {
|
|
|
|
exists = true
|
|
|
|
fi, err := os.Stat(filename)
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
exists = false
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if fi.Mode()&0400 != 0 {
|
|
|
|
canRead = true
|
|
|
|
}
|
|
|
|
if fi.Mode()&0200 != 0 {
|
|
|
|
canWrite = true
|
|
|
|
}
|
|
|
|
modTime = fi.ModTime()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
func (v *Volume) ensureConvertIdxToCdb(fileName string) (cdbCanRead bool) {
|
|
|
|
var indexFile *os.File
|
|
|
|
var e error
|
|
|
|
_, cdbCanRead, cdbCanWrite, cdbModTime := checkFile(fileName + ".cdb")
|
|
|
|
_, idxCanRead, _, idxModeTime := checkFile(fileName + ".idx")
|
|
|
|
if cdbCanRead && cdbModTime.After(idxModeTime) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if !cdbCanWrite {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !idxCanRead {
|
|
|
|
glog.V(0).Infoln("Can not read file", fileName+".idx!")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
glog.V(2).Infoln("opening file", fileName+".idx")
|
|
|
|
if indexFile, e = os.Open(fileName + ".idx"); e != nil {
|
|
|
|
glog.V(0).Infoln("Failed to read file", fileName+".idx !")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
defer indexFile.Close()
|
|
|
|
glog.V(0).Infof("converting %s.idx to %s.cdb", fileName, fileName)
|
|
|
|
if e = ConvertIndexToCdb(fileName+".cdb", indexFile); e != nil {
|
2014-10-21 08:27:06 +00:00
|
|
|
glog.V(0).Infof("error converting %s.idx to %s.cdb: %v", fileName, fileName, e)
|
2013-08-12 23:53:32 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2014-09-20 19:38:59 +00:00
|
|
|
|
|
|
|
// volume is expired if modified time + volume ttl < now
|
|
|
|
// except when volume is empty
|
|
|
|
// or when the volume does not have a ttl
|
|
|
|
// or when volumeSizeLimit is 0 when server just starts
|
|
|
|
func (v *Volume) expired(volumeSizeLimit uint64) bool {
|
|
|
|
if volumeSizeLimit == 0 {
|
|
|
|
//skip if we don't know size limit
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if v.ContentSize() == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if v.Ttl == nil || v.Ttl.Minutes() == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
glog.V(0).Infof("now:%v lastModified:%v", time.Now().Unix(), v.lastModifiedTime)
|
|
|
|
livedMinutes := (time.Now().Unix() - int64(v.lastModifiedTime)) / 60
|
|
|
|
glog.V(0).Infof("ttl:%v lived:%v", v.Ttl, livedMinutes)
|
|
|
|
if int64(v.Ttl.Minutes()) < livedMinutes {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// wait either maxDelayMinutes or 10% of ttl minutes
|
|
|
|
func (v *Volume) exiredLongEnough(maxDelayMinutes uint32) bool {
|
|
|
|
if v.Ttl == nil || v.Ttl.Minutes() == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
removalDelay := v.Ttl.Minutes() / 10
|
|
|
|
if removalDelay > maxDelayMinutes {
|
|
|
|
removalDelay = maxDelayMinutes
|
|
|
|
}
|
|
|
|
|
|
|
|
if uint64(v.Ttl.Minutes()+removalDelay)*60+v.lastModifiedTime < uint64(time.Now().Unix()) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|