2018-11-22 08:24:50 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2019-09-29 06:17:37 +00:00
|
|
|
"time"
|
2019-04-19 04:43:36 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"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.")
|
|
|
|
)
|
|
|
|
|
2019-01-16 09:48:59 +00:00
|
|
|
type VolumeFileScanner4SeeDat struct {
|
2019-04-19 04:43:36 +00:00
|
|
|
version needle.Version
|
2019-01-16 09:48:59 +00:00
|
|
|
}
|
|
|
|
|
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
|
2019-01-16 09:48:59 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
func (scanner *VolumeFileScanner4SeeDat) ReadNeedleBody() bool {
|
2019-03-18 06:28:43 +00:00
|
|
|
return true
|
2019-01-16 09:48:59 +00:00
|
|
|
}
|
|
|
|
|
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))
|
2020-05-29 02:00:07 +00:00
|
|
|
glog.V(0).Infof("%d,%s%x offset %d size %d(%s) cookie %x appendedAt %v",
|
|
|
|
*volumeId, n.Id, n.Cookie, offset, n.Size, util.BytesToHumanReadable(uint64(n.Size)), n.Cookie, t)
|
2019-01-16 09:48:59 +00:00
|
|
|
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)
|
2019-01-16 09:48:59 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|