2012-08-07 01:20:26 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2013-08-09 06:57:22 +00:00
|
|
|
"code.google.com/p/weed-fs/go/glog"
|
2013-09-02 06:58:21 +00:00
|
|
|
"code.google.com/p/weed-fs/go/storage"
|
2012-12-21 06:32:21 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strconv"
|
2012-08-07 01:20:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2012-12-21 06:32:21 +00:00
|
|
|
cmdFix.Run = runFix // break init cycle
|
2013-01-20 03:49:57 +00:00
|
|
|
cmdFix.IsDebug = cmdFix.Flag.Bool("debug", false, "enable debug mode")
|
2012-08-07 01:20:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var cmdFix = &Command{
|
2013-01-20 03:49:57 +00:00
|
|
|
UsageLine: "fix -dir=/tmp -volumeId=234",
|
2012-12-21 06:32:21 +00:00
|
|
|
Short: "run weed tool fix on index file if corrupted",
|
|
|
|
Long: `Fix runs the WeedFS fix command to re-create the index .idx file.
|
2012-08-07 01:20:26 +00:00
|
|
|
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2013-11-12 10:21:22 +00:00
|
|
|
fixVolumePath = cmdFix.Flag.String("dir", "/tmp", "data directory to store files")
|
|
|
|
fixVolumeCollection = cmdFix.Flag.String("collection", "", "the volume collection name")
|
|
|
|
fixVolumeId = cmdFix.Flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.")
|
2012-08-07 01:20:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func runFix(cmd *Command, args []string) bool {
|
|
|
|
|
2013-01-20 03:49:57 +00:00
|
|
|
if *fixVolumeId == -1 {
|
2012-12-21 06:32:21 +00:00
|
|
|
return false
|
|
|
|
}
|
2012-08-07 01:20:26 +00:00
|
|
|
|
2013-01-20 03:49:57 +00:00
|
|
|
fileName := strconv.Itoa(*fixVolumeId)
|
2013-11-12 10:21:22 +00:00
|
|
|
if *fixVolumeCollection != "" {
|
|
|
|
fileName = *fixVolumeCollection + "_" + fileName
|
|
|
|
}
|
2014-03-10 01:50:09 +00:00
|
|
|
indexFile, err := os.OpenFile(path.Join(*fixVolumePath, fileName+".idx"), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
|
2013-01-21 03:44:23 +00:00
|
|
|
if err != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.Fatalf("Create Volume Index [ERROR] %s\n", err)
|
2012-12-21 06:32:21 +00:00
|
|
|
}
|
|
|
|
defer indexFile.Close()
|
2012-08-07 01:20:26 +00:00
|
|
|
|
2012-12-21 06:32:21 +00:00
|
|
|
nm := storage.NewNeedleMap(indexFile)
|
2013-01-21 03:44:23 +00:00
|
|
|
defer nm.Close()
|
|
|
|
|
|
|
|
vid := storage.VolumeId(*fixVolumeId)
|
2013-11-12 10:21:22 +00:00
|
|
|
err = storage.ScanVolumeFile(*fixVolumePath, *fixVolumeCollection, vid, func(superBlock storage.SuperBlock) error {
|
2013-01-21 03:44:23 +00:00
|
|
|
return nil
|
2013-09-19 18:06:14 +00:00
|
|
|
}, func(n *storage.Needle, offset int64) error {
|
2013-01-21 03:44:23 +00:00
|
|
|
debug("key", n.Id, "offset", offset, "size", n.Size, "disk_size", n.DiskSize(), "gzip", n.IsGzipped())
|
2012-12-21 06:32:21 +00:00
|
|
|
if n.Size > 0 {
|
2013-09-19 18:06:14 +00:00
|
|
|
count, pe := nm.Put(n.Id, uint32(offset/storage.NeedlePaddingSize), n.Size)
|
2012-12-21 06:32:21 +00:00
|
|
|
debug("saved", count, "with error", pe)
|
2013-01-22 01:50:10 +00:00
|
|
|
} else {
|
|
|
|
debug("skipping deleted file ...")
|
2013-02-27 06:54:22 +00:00
|
|
|
return nm.Delete(n.Id)
|
2012-12-21 06:32:21 +00:00
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.Fatalf("Export Volume File [ERROR] %s\n", err)
|
2012-12-21 06:32:21 +00:00
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
|
2013-01-17 08:14:52 +00:00
|
|
|
return true
|
2012-08-07 01:20:26 +00:00
|
|
|
}
|