seaweedfs/weed/filesys/meta_cache/meta_cache_init.go

36 lines
1,001 B
Go
Raw Normal View History

package meta_cache
import (
2020-04-22 05:00:34 +00:00
"context"
2020-06-19 16:45:27 +00:00
"fmt"
2020-04-22 05:00:34 +00:00
"github.com/chrislusf/seaweedfs/weed/filer2"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2020-04-22 05:00:34 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
)
2020-06-19 16:45:27 +00:00
func EnsureVisited(mc *MetaCache, client filer_pb.FilerClient, dirPath util.FullPath) {
mc.visitedBoundary.EnsureVisited(dirPath, func(path util.FullPath) (childDirectories []string, err error) {
2020-08-16 02:55:28 +00:00
glog.V(5).Infof("ReadDirAllEntries %s ...", path)
2020-06-19 16:45:27 +00:00
err = filer_pb.ReadDirAllEntries(client, dirPath, "", func(pbEntry *filer_pb.Entry, isLast bool) error {
entry := filer2.FromPbEntry(string(dirPath), pbEntry)
if err := mc.doInsertEntry(context.Background(), entry); err != nil {
2020-06-19 16:45:27 +00:00
glog.V(0).Infof("read %s: %v", entry.FullPath, err)
return err
}
if entry.IsDirectory() {
childDirectories = append(childDirectories, entry.Name())
}
return nil
})
if err != nil {
err = fmt.Errorf("list %s: %v", dirPath, err)
}
return
})
}