2020-04-22 04:16:13 +00:00
|
|
|
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
|
|
|
|
2020-09-01 07:21:19 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
2020-04-22 05:00:34 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2020-04-22 04:16:13 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2020-04-22 05:00:34 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-04-22 04:16:13 +00:00
|
|
|
)
|
|
|
|
|
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-31 03:12:04 +00:00
|
|
|
glog.V(4).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 {
|
2020-09-01 07:21:19 +00:00
|
|
|
entry := filer.FromPbEntry(string(dirPath), pbEntry)
|
2020-08-23 22:48:02 +00:00
|
|
|
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
|
|
|
|
})
|
|
|
|
}
|