-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstat.go
45 lines (41 loc) · 1014 Bytes
/
stat.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
40
41
42
43
44
45
package gist9p
import (
"errors"
"github.com/docker/go-p9p"
"golang.org/x/net/context"
"log"
"os"
"strings"
)
func statFile(node Node) (p9p.Dir, error) {
components := strings.Split(path(node), "/")[1:]
components = removeEmptyStrings(components)
dir, err := node.Stat()
dir.Qid = node.Qid()
dir.Name = node.PathComponent()
dir.Type = 0
dir.Dev = 0
// TODO move user up to GistSession so we only get it once
user := os.Getenv("USER")
dir.MUID = user
dir.UID = user
dir.GID = user
return dir, err
}
func (gs *GistSession) Stat(ctx context.Context, fid p9p.Fid) (p9p.Dir, error) {
log.Println("stating fid", fid)
if file, ok := gs.fidMap[fid]; ok {
dir, err := statFile(file)
return dir, err
} else {
return p9p.Dir{}, errors.New("fid not found")
}
}
func (gs *GistSession) WStat(ctx context.Context, fid p9p.Fid, dir p9p.Dir) error {
log.Println("wstating fid", fid)
if file, ok := gs.fidMap[fid]; ok {
return file.WStat(dir)
} else {
return errors.New("fid not found")
}
}