From 40cc8180f0c41345ce5dfc081c7942c43e76bee6 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 22 Aug 2019 11:47:50 +0100 Subject: [PATCH] lib/dircache: add a way to dump the DirCache for debugging --- lib/dircache/dircache.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/lib/dircache/dircache.go b/lib/dircache/dircache.go index 130690e5e..ab06d42c3 100644 --- a/lib/dircache/dircache.go +++ b/lib/dircache/dircache.go @@ -4,7 +4,9 @@ package dircache // _methods are called without the lock import ( + "bytes" "context" + "fmt" "log" "strings" "sync" @@ -47,6 +49,31 @@ func New(root string, trueRootID string, fs DirCacher) *DirCache { return d } +// String returns the directory cache in string form for debugging +func (dc *DirCache) String() string { + dc.cacheMu.RLock() + defer dc.cacheMu.RUnlock() + var buf bytes.Buffer + _, _ = buf.WriteString("DirCache{\n") + _, _ = fmt.Fprintf(&buf, "\ttrueRootID: %q,\n", dc.trueRootID) + _, _ = fmt.Fprintf(&buf, "\troot: %q,\n", dc.root) + _, _ = fmt.Fprintf(&buf, "\trootID: %q,\n", dc.rootID) + _, _ = fmt.Fprintf(&buf, "\trootParentID: %q,\n", dc.rootParentID) + _, _ = fmt.Fprintf(&buf, "\tfoundRoot: %v,\n", dc.foundRoot) + _, _ = buf.WriteString("\tcache: {\n") + for k, v := range dc.cache { + _, _ = fmt.Fprintf(&buf, "\t\t%q: %q,\n", k, v) + } + _, _ = buf.WriteString("\t},\n") + _, _ = buf.WriteString("\tinvCache: {\n") + for k, v := range dc.invCache { + _, _ = fmt.Fprintf(&buf, "\t\t%q: %q,\n", k, v) + } + _, _ = buf.WriteString("\t},\n") + _, _ = buf.WriteString("}\n") + return buf.String() +} + // Get an ID given a path func (dc *DirCache) Get(path string) (id string, ok bool) { dc.cacheMu.RLock()