summaryrefslogtreecommitdiff
path: root/cmd/btrfs-rec/inspect_rebuildnodes.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/btrfs-rec/inspect_rebuildnodes.go')
-rw-r--r--cmd/btrfs-rec/inspect_rebuildnodes.go41
1 files changed, 31 insertions, 10 deletions
diff --git a/cmd/btrfs-rec/inspect_rebuildnodes.go b/cmd/btrfs-rec/inspect_rebuildnodes.go
index e61e6d2..d813f36 100644
--- a/cmd/btrfs-rec/inspect_rebuildnodes.go
+++ b/cmd/btrfs-rec/inspect_rebuildnodes.go
@@ -5,7 +5,10 @@
package main
import (
+ "context"
"os"
+ "runtime"
+ "time"
"git.lukeshu.com/go/lowmemjson"
"github.com/datawire/dlib/dlog"
@@ -15,6 +18,7 @@ import (
"git.lukeshu.com/btrfs-progs-ng/lib/btrfs"
"git.lukeshu.com/btrfs-progs-ng/lib/btrfsprogs/btrfsinspect"
"git.lukeshu.com/btrfs-progs-ng/lib/btrfsprogs/btrfsinspect/rebuildnodes"
+ "git.lukeshu.com/btrfs-progs-ng/lib/textui"
)
func init() {
@@ -26,28 +30,45 @@ func init() {
RunE: func(fs *btrfs.FS, cmd *cobra.Command, args []string) error {
ctx := cmd.Context()
- dlog.Infof(ctx, "Reading %q...", args[0])
- nodeScanResults, err := readJSONFile[btrfsinspect.ScanDevicesResult](ctx, args[0])
- if err != nil {
- return err
- }
- dlog.Infof(ctx, "... done reading %q", args[0])
+ // This is wrapped in a func in order to *ensure* that `nodeScanResults` goes out of scope once
+ // `rebuilder` has been created.
+ rebuilder, err := func(ctx context.Context) (rebuildnodes.Rebuilder, error) {
+ dlog.Infof(ctx, "Reading %q...", args[0])
+ nodeScanResults, err := readJSONFile[btrfsinspect.ScanDevicesResult](ctx, args[0])
+ if err != nil {
+ return nil, err
+ }
+ dlog.Infof(ctx, "... done reading %q", args[0])
- rebuiltNodes, err := rebuildnodes.RebuildNodes(ctx, fs, nodeScanResults)
+ return rebuildnodes.NewRebuilder(ctx, fs, nodeScanResults)
+ }(ctx)
if err != nil {
return err
}
- dlog.Info(ctx, "Writing re-built nodes to stdout...")
- if err := writeJSONFile(os.Stdout, rebuiltNodes, lowmemjson.ReEncoder{
+ runtime.GC()
+ time.Sleep(textui.LiveMemUseUpdateInterval) // let the logs reflect that GC right away
+
+ dlog.Info(ctx, "Rebuilding node tree...")
+ rebuildErr := rebuilder.Rebuild(ctx)
+ dst := os.Stdout
+ if rebuildErr != nil {
+ dst = os.Stderr
+ dlog.Errorf(ctx, "rebuild error: %v", rebuildErr)
+ }
+ dlog.Infof(ctx, "Writing re-built nodes to %s...", dst.Name())
+ if err := writeJSONFile(dst, rebuilder.ListRoots(), lowmemjson.ReEncoder{
Indent: "\t",
ForceTrailingNewlines: true,
}); err != nil {
+ if rebuildErr != nil {
+ return rebuildErr
+ }
return err
}
dlog.Info(ctx, "... done writing")
- return nil
+ return rebuildErr
},
})
}