mirror of
https://github.com/kopia/kopia.git
synced 2026-01-03 03:57:49 -05:00
115 lines
2.5 KiB
Go
115 lines
2.5 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/kopia/kopia/fs"
|
|
"github.com/kopia/kopia/fs/repofs"
|
|
"github.com/kopia/kopia/repo"
|
|
|
|
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
|
)
|
|
|
|
var (
|
|
lsCommand = app.Command("list", "List a directory stored in repository object.").Alias("ls")
|
|
|
|
lsCommandLong = lsCommand.Flag("long", "Long output").Short('l').Bool()
|
|
lsCommandRecursive = lsCommand.Flag("recursive", "Recursive output").Short('r').Bool()
|
|
lsCommandShowOID = lsCommand.Flag("show-object-id", "Show object IDs").Short('o').Bool()
|
|
lsCommandPath = lsCommand.Arg("path", "Path").Required().String()
|
|
)
|
|
|
|
func runLSCommand(context *kingpin.ParseContext) error {
|
|
conn := mustOpenConnection()
|
|
defer conn.Close()
|
|
|
|
oid, err := parseObjectID(*lsCommandPath, conn)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var prefix string
|
|
if !*lsCommandLong {
|
|
prefix = *lsCommandPath
|
|
if !strings.HasSuffix(prefix, "/") {
|
|
prefix += "/"
|
|
}
|
|
}
|
|
|
|
return listDirectory(conn, prefix, oid, "")
|
|
}
|
|
|
|
func init() {
|
|
lsCommand.Action(runLSCommand)
|
|
}
|
|
|
|
func listDirectory(conn *repo.Repository, prefix string, oid repo.ObjectID, indent string) error {
|
|
d := repofs.Directory(conn, oid)
|
|
|
|
entries, err := d.Readdir()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
maxNameLen := 20
|
|
for _, e := range entries {
|
|
if l := len(nameToDisplay(prefix, e.Metadata())); l > maxNameLen {
|
|
maxNameLen = l
|
|
}
|
|
}
|
|
|
|
maxNameLenString := strconv.Itoa(maxNameLen)
|
|
|
|
for _, e := range entries {
|
|
m := e.Metadata()
|
|
var info string
|
|
objectID := e.(repo.HasObjectID).ObjectID()
|
|
var oid string
|
|
if objectID.BinaryContent != nil {
|
|
oid = "<inline binary content>"
|
|
} else if objectID.TextContent != "" {
|
|
oid = "<inline text content>"
|
|
} else {
|
|
oid = objectID.String()
|
|
}
|
|
if *lsCommandLong {
|
|
info = fmt.Sprintf(
|
|
"%v %9d %v %-"+maxNameLenString+"s %v",
|
|
m.FileMode(),
|
|
m.FileSize,
|
|
m.ModTime.Local().Format("02 Jan 06 15:04:05"),
|
|
nameToDisplay(prefix, m),
|
|
oid,
|
|
)
|
|
} else if *lsCommandShowOID {
|
|
info = fmt.Sprintf(
|
|
"%v %v",
|
|
nameToDisplay(prefix, m),
|
|
oid)
|
|
} else {
|
|
info = nameToDisplay(prefix, m)
|
|
}
|
|
fmt.Println(info)
|
|
if *lsCommandRecursive && m.FileMode().IsDir() {
|
|
listDirectory(conn, prefix+m.Name+"/", objectID, indent+" ")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func nameToDisplay(prefix string, md *fs.EntryMetadata) string {
|
|
suffix := ""
|
|
if md.FileMode().IsDir() {
|
|
suffix = "/"
|
|
|
|
}
|
|
if *lsCommandLong || *lsCommandRecursive {
|
|
return prefix + md.Name + suffix
|
|
}
|
|
|
|
return md.Name
|
|
}
|