mirror of
https://github.com/octoleo/restic.git
synced 2024-11-25 06:07:44 +00:00
command ls: add option for ncdu output
NCDU (NCurses Disk Usage) is a tool to analyse disk usage of directories. It has an option to save a directory tree and analyse it later. This patch adds an output option to the ls command. A snapshot can be seen with `restic ls latest --ncdu | ncdu -f -` - https://dev.yorhel.nl/ncdu
This commit is contained in:
parent
3424088274
commit
a9310948cf
@ -3,7 +3,10 @@ package main
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -51,6 +54,7 @@ type LsOptions struct {
|
|||||||
restic.SnapshotFilter
|
restic.SnapshotFilter
|
||||||
Recursive bool
|
Recursive bool
|
||||||
HumanReadable bool
|
HumanReadable bool
|
||||||
|
Ncdu bool
|
||||||
}
|
}
|
||||||
|
|
||||||
var lsOptions LsOptions
|
var lsOptions LsOptions
|
||||||
@ -63,6 +67,7 @@ func init() {
|
|||||||
flags.BoolVarP(&lsOptions.ListLong, "long", "l", false, "use a long listing format showing size and mode")
|
flags.BoolVarP(&lsOptions.ListLong, "long", "l", false, "use a long listing format showing size and mode")
|
||||||
flags.BoolVar(&lsOptions.Recursive, "recursive", false, "include files in subfolders of the listed directories")
|
flags.BoolVar(&lsOptions.Recursive, "recursive", false, "include files in subfolders of the listed directories")
|
||||||
flags.BoolVar(&lsOptions.HumanReadable, "human-readable", false, "print sizes in human readable format")
|
flags.BoolVar(&lsOptions.HumanReadable, "human-readable", false, "print sizes in human readable format")
|
||||||
|
flags.BoolVar(&lsOptions.Ncdu, "ncdu", false, "output NCDU save format (pipe into ncdu -f - ")
|
||||||
}
|
}
|
||||||
|
|
||||||
type lsSnapshot struct {
|
type lsSnapshot struct {
|
||||||
@ -114,6 +119,81 @@ func lsNodeJSON(enc *json.Encoder, path string, node *restic.Node) error {
|
|||||||
return enc.Encode(n)
|
return enc.Encode(n)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// lsSnapshotNcdu prints a restic snapshot in Ncdu save format.
|
||||||
|
// It opens the JSON list. Nodes are added with lsNodeNcdu and the list is closed by lsCloseNcdu.
|
||||||
|
// Format documentation: https://dev.yorhel.nl/ncdu/jsonfmt
|
||||||
|
func lsSnapshotNcdu(stdout io.Writer, depth *int, sn *restic.Snapshot) {
|
||||||
|
const NcduMajorVer = 1
|
||||||
|
const NcduMinorVer = 2
|
||||||
|
|
||||||
|
snapshotBytes, err := json.Marshal(sn)
|
||||||
|
if err != nil {
|
||||||
|
Warnf("JSON encode failed: %v\n", err)
|
||||||
|
}
|
||||||
|
*depth++
|
||||||
|
fmt.Fprintf(stdout, "[%d, %d, %s", NcduMajorVer, NcduMinorVer, string(snapshotBytes))
|
||||||
|
}
|
||||||
|
|
||||||
|
func lsNodeNcdu(stdout io.Writer, depth *int, currentPath *string, path string, node *restic.Node) {
|
||||||
|
type NcduNode struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Asize uint64 `json:"asize"`
|
||||||
|
Dsize uint64 `json:"dsize"`
|
||||||
|
Dev uint64 `json:"dev"`
|
||||||
|
Ino uint64 `json:"ino"`
|
||||||
|
NLink uint64 `json:"nlink"`
|
||||||
|
NotReg bool `json:"notreg"`
|
||||||
|
Uid uint32 `json:"uid"`
|
||||||
|
Gid uint32 `json:"gid"`
|
||||||
|
Mode uint16 `json:"mode"`
|
||||||
|
Mtime int64 `json:"mtime"`
|
||||||
|
}
|
||||||
|
|
||||||
|
outNode := NcduNode{
|
||||||
|
Name: node.Name,
|
||||||
|
Asize: node.Size,
|
||||||
|
Dsize: node.Size,
|
||||||
|
Dev: node.DeviceID,
|
||||||
|
Ino: node.Inode,
|
||||||
|
NLink: node.Links,
|
||||||
|
NotReg: node.Type != "dir" && node.Type != "file",
|
||||||
|
Uid: node.UID,
|
||||||
|
Gid: node.GID,
|
||||||
|
Mode: uint16(node.Mode),
|
||||||
|
Mtime: node.ModTime.Unix(),
|
||||||
|
}
|
||||||
|
|
||||||
|
outJson, err := json.Marshal(outNode)
|
||||||
|
if err != nil {
|
||||||
|
Warnf("JSON encode failed: %v\n", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
thisPath := filepath.Dir(path)
|
||||||
|
for thisPath != *currentPath {
|
||||||
|
*depth--
|
||||||
|
if *depth < 0 {
|
||||||
|
panic("cannot find suitable parent directory")
|
||||||
|
}
|
||||||
|
fmt.Fprintf(stdout, "\n%s]", strings.Repeat(" ", *depth))
|
||||||
|
*currentPath = filepath.Dir(*currentPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
if node.Type == "dir" {
|
||||||
|
*currentPath = path
|
||||||
|
*depth++
|
||||||
|
fmt.Fprintf(stdout, ", [\n%s%s", strings.Repeat(" ", *depth), string(outJson))
|
||||||
|
} else {
|
||||||
|
fmt.Fprintf(stdout, ",\n%s%s", strings.Repeat(" ", *depth), string(outJson))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func lsCloseNcdu(stdout io.Writer, depth *int) {
|
||||||
|
for *depth > 0 {
|
||||||
|
fmt.Fprintf(stdout, "%s]\n", strings.Repeat(" ", *depth))
|
||||||
|
*depth--
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func runLs(ctx context.Context, opts LsOptions, gopts GlobalOptions, args []string) error {
|
func runLs(ctx context.Context, opts LsOptions, gopts GlobalOptions, args []string) error {
|
||||||
if len(args) == 0 {
|
if len(args) == 0 {
|
||||||
return errors.Fatal("no snapshot ID specified, specify snapshot ID or use special ID 'latest'")
|
return errors.Fatal("no snapshot ID specified, specify snapshot ID or use special ID 'latest'")
|
||||||
@ -205,6 +285,14 @@ func runLs(ctx context.Context, opts LsOptions, gopts GlobalOptions, args []stri
|
|||||||
Warnf("JSON encode failed: %v\n", err)
|
Warnf("JSON encode failed: %v\n", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if opts.Ncdu {
|
||||||
|
var depth int
|
||||||
|
var currentPath = "/"
|
||||||
|
printSnapshot = func(sn *restic.Snapshot) { lsSnapshotNcdu(globalOptions.stdout, &depth, sn) }
|
||||||
|
printNode = func(path string, node *restic.Node) {
|
||||||
|
lsNodeNcdu(globalOptions.stdout, &depth, ¤tPath, path, node)
|
||||||
|
}
|
||||||
|
defer lsCloseNcdu(globalOptions.stdout, &depth)
|
||||||
} else {
|
} else {
|
||||||
printSnapshot = func(sn *restic.Snapshot) {
|
printSnapshot = func(sn *restic.Snapshot) {
|
||||||
Verbosef("%v filtered by %v:\n", sn, dirs)
|
Verbosef("%v filtered by %v:\n", sn, dirs)
|
||||||
|
Loading…
Reference in New Issue
Block a user