seaweedfs/unmaintained/see_dat/see_dat.go

52 lines
1.6 KiB
Go
Raw Normal View History

2018-11-22 08:24:50 +00:00
package main
import (
"flag"
"time"
2019-04-19 04:43:36 +00:00
"github.com/seaweedfs/seaweedfs/weed/util"
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/storage"
"github.com/seaweedfs/seaweedfs/weed/storage/needle"
"github.com/seaweedfs/seaweedfs/weed/storage/super_block"
2018-11-22 08:24:50 +00:00
)
var (
volumePath = flag.String("dir", "/tmp", "data directory to store files")
volumeCollection = flag.String("collection", "", "the volume collection name")
volumeId = flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.")
)
type VolumeFileScanner4SeeDat struct {
2019-04-19 04:43:36 +00:00
version needle.Version
}
2019-12-23 20:48:20 +00:00
func (scanner *VolumeFileScanner4SeeDat) VisitSuperBlock(superBlock super_block.SuperBlock) error {
2019-12-28 19:50:42 +00:00
scanner.version = superBlock.Version
return nil
}
func (scanner *VolumeFileScanner4SeeDat) ReadNeedleBody() bool {
2019-03-18 06:28:43 +00:00
return true
}
2019-10-22 07:50:30 +00:00
func (scanner *VolumeFileScanner4SeeDat) VisitNeedle(n *needle.Needle, offset int64, needleHeader, needleBody []byte) error {
2019-03-18 06:28:43 +00:00
t := time.Unix(int64(n.AppendAtNs)/int64(time.Second), int64(n.AppendAtNs)%int64(time.Second))
glog.V(0).Infof("%d,%s%08x offset %d size %d(%s) cookie %08x appendedAt %v",
2020-05-29 02:00:07 +00:00
*volumeId, n.Id, n.Cookie, offset, n.Size, util.BytesToHumanReadable(uint64(n.Size)), n.Cookie, t)
return nil
}
2018-11-22 08:24:50 +00:00
func main() {
flag.Parse()
2019-04-19 04:43:36 +00:00
vid := needle.VolumeId(*volumeId)
scanner := &VolumeFileScanner4SeeDat{}
err := storage.ScanVolumeFile(*volumePath, *volumeCollection, vid, storage.NeedleMapInMemory, scanner)
2018-11-22 08:24:50 +00:00
if err != nil {
glog.Fatalf("Reading Volume File [ERROR] %s\n", err)
}
}