2012-08-07 09:20:26 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2012-12-21 14:32:21 +08:00
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"pkg/storage"
|
|
|
|
"strconv"
|
2012-08-07 09:20:26 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2012-12-21 14:32:21 +08:00
|
|
|
cmdFix.Run = runFix // break init cycle
|
2013-01-20 11:49:57 +08:00
|
|
|
cmdFix.IsDebug = cmdFix.Flag.Bool("debug", false, "enable debug mode")
|
2012-08-07 09:20:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var cmdFix = &Command{
|
2013-01-20 11:49:57 +08:00
|
|
|
UsageLine: "fix -dir=/tmp -volumeId=234",
|
2012-12-21 14:32:21 +08: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 09:20:26 +08:00
|
|
|
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2013-01-20 11:49:57 +08:00
|
|
|
fixVolumePath = cmdFix.Flag.String("dir", "/tmp", "data directory to store files")
|
|
|
|
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 09:20:26 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func runFix(cmd *Command, args []string) bool {
|
|
|
|
|
2013-01-20 11:49:57 +08:00
|
|
|
if *fixVolumeId == -1 {
|
2012-12-21 14:32:21 +08:00
|
|
|
return false
|
|
|
|
}
|
2012-08-07 09:20:26 +08:00
|
|
|
|
2013-01-20 11:49:57 +08:00
|
|
|
fileName := strconv.Itoa(*fixVolumeId)
|
|
|
|
dataFile, e := os.OpenFile(path.Join(*fixVolumePath, fileName+".dat"), os.O_RDONLY, 0644)
|
2012-12-21 14:32:21 +08:00
|
|
|
if e != nil {
|
2013-01-17 16:14:52 +08:00
|
|
|
log.Fatalf("Read Volume [ERROR] %s\n", e)
|
2012-12-21 14:32:21 +08:00
|
|
|
}
|
|
|
|
defer dataFile.Close()
|
2013-01-20 11:49:57 +08:00
|
|
|
indexFile, ie := os.OpenFile(path.Join(*fixVolumePath, fileName+".idx"), os.O_WRONLY|os.O_CREATE, 0644)
|
2012-12-21 14:32:21 +08:00
|
|
|
if ie != nil {
|
2013-01-17 16:14:52 +08:00
|
|
|
log.Fatalf("Create Volume Index [ERROR] %s\n", ie)
|
2012-12-21 14:32:21 +08:00
|
|
|
}
|
|
|
|
defer indexFile.Close()
|
2012-08-07 09:20:26 +08:00
|
|
|
|
2012-12-21 14:32:21 +08:00
|
|
|
dataFile.Seek(0, 0)
|
|
|
|
header := make([]byte, storage.SuperBlockSize)
|
|
|
|
if _, e := dataFile.Read(header); e != nil {
|
2013-01-17 16:14:52 +08:00
|
|
|
log.Fatalf("cannot read superblock: %s", e)
|
2012-12-21 14:32:21 +08:00
|
|
|
}
|
2012-08-07 09:20:26 +08:00
|
|
|
|
2013-01-20 19:40:04 +08:00
|
|
|
ver, _, e := storage.ParseSuperBlock(header)
|
|
|
|
if e != nil {
|
|
|
|
log.Fatalf("error parsing superblock: %s", e)
|
|
|
|
}
|
2012-12-21 14:32:21 +08:00
|
|
|
|
2013-01-20 19:40:04 +08:00
|
|
|
n, rest, e := storage.ReadNeedleHeader(dataFile, ver)
|
|
|
|
if e != nil {
|
|
|
|
log.Fatalf("error reading needle header: %s", e)
|
|
|
|
}
|
2012-12-21 14:32:21 +08:00
|
|
|
dataFile.Seek(int64(rest), 1)
|
|
|
|
nm := storage.NewNeedleMap(indexFile)
|
|
|
|
offset := uint32(storage.SuperBlockSize)
|
|
|
|
for n != nil {
|
|
|
|
debug("key", n.Id, "volume offset", offset, "data_size", n.Size, "rest", rest)
|
|
|
|
if n.Size > 0 {
|
2013-01-20 19:40:04 +08:00
|
|
|
count, pe := nm.Put(n.Id, offset/storage.NeedlePaddingSize, n.Size)
|
2012-12-21 14:32:21 +08:00
|
|
|
debug("saved", count, "with error", pe)
|
|
|
|
}
|
|
|
|
offset += rest + 16
|
2013-01-20 19:40:04 +08:00
|
|
|
if n, rest, e = storage.ReadNeedleHeader(dataFile, ver); e != nil {
|
|
|
|
log.Fatalf("error reading needle header: %s", e)
|
|
|
|
}
|
2012-12-21 14:32:21 +08:00
|
|
|
dataFile.Seek(int64(rest), 1)
|
|
|
|
}
|
2013-01-17 16:14:52 +08:00
|
|
|
return true
|
2012-08-07 09:20:26 +08:00
|
|
|
}
|