seaweedfs/weed/mount/meta_cache/meta_cache_init.go

71 lines
1.6 KiB
Go
Raw Normal View History

2022-02-14 09:09:31 +00:00
package meta_cache
import (
"context"
"fmt"
"github.com/chrislusf/seaweedfs/weed/filer"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/util"
)
2022-05-25 01:52:04 +00:00
func EnsureVisited(mc *MetaCache, client filer_pb.FilerClient, dirPath util.FullPath) error {
2022-02-17 05:32:15 +00:00
currentPath := dirPath
2022-02-14 09:09:31 +00:00
for {
// the directory children are already cached
// so no need for this and upper directories
2022-02-17 05:32:15 +00:00
if mc.isCachedFn(currentPath) {
2022-02-14 09:09:31 +00:00
return nil
}
2022-05-25 01:52:04 +00:00
if err := doEnsureVisited(mc, client, currentPath); err != nil {
return err
2022-02-14 09:09:31 +00:00
}
// continue to parent directory
2022-02-28 20:16:53 +00:00
if currentPath != mc.root {
2022-02-17 05:32:15 +00:00
parent, _ := currentPath.DirAndName()
currentPath = util.FullPath(parent)
2022-02-14 09:09:31 +00:00
} else {
break
}
}
return nil
}
2022-05-25 01:52:04 +00:00
func doEnsureVisited(mc *MetaCache, client filer_pb.FilerClient, path util.FullPath) error {
2022-02-14 09:09:31 +00:00
glog.V(4).Infof("ReadDirAllEntries %s ...", path)
err := util.Retry("ReadDirAllEntries", func() error {
return filer_pb.ReadDirAllEntries(client, path, "", func(pbEntry *filer_pb.Entry, isLast bool) error {
entry := filer.FromPbEntry(string(path), pbEntry)
if IsHiddenSystemEntry(string(path), entry.Name()) {
return nil
}
if err := mc.doInsertEntry(context.Background(), entry); err != nil {
glog.V(0).Infof("read %s: %v", entry.FullPath, err)
return err
}
return nil
})
})
if err != nil {
err = fmt.Errorf("list %s: %v", path, err)
} else {
mc.markCachedFn(path)
2022-02-14 09:09:31 +00:00
}
return err
}
func IsHiddenSystemEntry(dir, name string) bool {
return dir == "/" && (name == "topics" || name == "etc")
}