aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys/meta_cache/meta_cache_init.go
blob: 5c2a8fc464b146ffad47698ba88d0301d2c1205d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package meta_cache

import (
	"context"
	"fmt"

	"github.com/chrislusf/seaweedfs/weed/filer"
	"github.com/chrislusf/seaweedfs/weed/util/log"
	"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
	"github.com/chrislusf/seaweedfs/weed/util"
)

func EnsureVisited(mc *MetaCache, client filer_pb.FilerClient, dirPath util.FullPath) error {

	return mc.visitedBoundary.EnsureVisited(dirPath, func(path util.FullPath) (childDirectories []string, err error) {

		log.Tracef("ReadDirAllEntries %s ...", path)

		util.Retry("ReadDirAllEntries", func() error {
			err = filer_pb.ReadDirAllEntries(client, dirPath, "", func(pbEntry *filer_pb.Entry, isLast bool) error {
				entry := filer.FromPbEntry(string(dirPath), pbEntry)
				if err := mc.doInsertEntry(context.Background(), entry); err != nil {
					log.Infof("read %s: %v", entry.FullPath, err)
					return err
				}
				if entry.IsDirectory() {
					childDirectories = append(childDirectories, entry.Name())
				}
				return nil
			})
			return err
		})

		if err != nil {
			err = fmt.Errorf("list %s: %v", dirPath, err)
		}

		return
	})
}