formatting

This commit is contained in:
Chris Lu 2013-01-20 19:47:04 -08:00
parent 81b9175c7a
commit 97556f6023

View File

@ -27,12 +27,11 @@ var cmdExport = &Command{
} }
var ( var (
exportVolumePath = cmdExport.Flag.String("dir", "/tmp", "data directory to store files") exportVolumePath = cmdExport.Flag.String("dir", "/tmp", "input data directory to store volume data files")
exportVolumeId = cmdExport.Flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.") exportVolumeId = cmdExport.Flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.")
dest = cmdExport.Flag.String("o", "", "output tar file name") dest = cmdExport.Flag.String("o", "", "output tar file name")
tarFh *tar.Writer tarFh *tar.Writer
tarHeader tar.Header tarHeader tar.Header
counter int
) )
func runExport(cmd *Command, args []string) bool { func runExport(cmd *Command, args []string) bool {
@ -109,12 +108,9 @@ func walker(vid storage.VolumeId, n *storage.Needle) (err error) {
directory.NewFileId(vid, n.Id, n.Cookie).String(), directory.NewFileId(vid, n.Id, n.Cookie).String(),
n.Name, n.Name,
n.DataSize, n.DataSize,
n.IsGzipped(), n.IsGzipped(),
n.Mime, n.Mime,
) )
}
if err == nil {
counter++
} }
return return
} }