forked from TrueCloudLab/restic
48 lines
955 B
Go
48 lines
955 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/restic/restic/internal/restic"
|
|
"github.com/restic/restic/internal/ui"
|
|
)
|
|
|
|
func formatNode(path string, n *restic.Node, long bool, human bool) string {
|
|
if !long {
|
|
return path
|
|
}
|
|
|
|
var mode os.FileMode
|
|
var target string
|
|
|
|
var size string
|
|
if human {
|
|
size = ui.FormatBytes(n.Size)
|
|
} else {
|
|
size = fmt.Sprintf("%6d", n.Size)
|
|
}
|
|
|
|
switch n.Type {
|
|
case restic.NodeTypeFile:
|
|
mode = 0
|
|
case restic.NodeTypeDir:
|
|
mode = os.ModeDir
|
|
case restic.NodeTypeSymlink:
|
|
mode = os.ModeSymlink
|
|
target = fmt.Sprintf(" -> %v", n.LinkTarget)
|
|
case restic.NodeTypeDev:
|
|
mode = os.ModeDevice
|
|
case restic.NodeTypeCharDev:
|
|
mode = os.ModeDevice | os.ModeCharDevice
|
|
case restic.NodeTypeFifo:
|
|
mode = os.ModeNamedPipe
|
|
case restic.NodeTypeSocket:
|
|
mode = os.ModeSocket
|
|
}
|
|
|
|
return fmt.Sprintf("%s %5d %5d %s %s %s%s",
|
|
mode|n.Mode, n.UID, n.GID, size,
|
|
n.ModTime.Local().Format(TimeFormat), path,
|
|
target)
|
|
}
|