-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwalk.go
39 lines (37 loc) · 902 Bytes
/
walk.go
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
package gist9p
import (
"errors"
"github.com/docker/go-p9p"
"golang.org/x/net/context"
"log"
)
func (gs *GistSession) Walk(ctx context.Context, fid p9p.Fid, newfid p9p.Fid, names ...string) ([]p9p.Qid, error) {
log.Println("walking", fid, newfid, names)
names = removeEmptyStrings(names)
file, ok := gs.fidMap[fid]
if ok {
var qids []p9p.Qid
var err error
curr := file
for _, name := range names {
if name == "." {
// curr remains the same
} else if name == ".." {
curr = curr.Parent()
} else {
curr, err = curr.Child(name)
if err != nil {
// TODO do we return the qids that *have* been
// successfully walked? or do we return an empty
// list? should read over docs
break
}
}
qids = append(qids, curr.Qid())
}
gs.fidMap[newfid] = curr
return qids, err
} else {
return nil, errors.New("cant find fid to walk from")
}
}