Retro68/gcc/libgo/go/os/stat_plan9.go

111 lines
2.6 KiB
Go
Raw Normal View History

2012-03-27 23:13:14 +00:00
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package os
import (
"syscall"
"time"
)
2014-09-21 17:33:12 +00:00
func sameFile(fs1, fs2 *fileStat) bool {
a := fs1.sys.(*syscall.Dir)
b := fs2.sys.(*syscall.Dir)
2012-03-27 23:13:14 +00:00
return a.Qid.Path == b.Qid.Path && a.Type == b.Type && a.Dev == b.Dev
}
2014-09-21 17:33:12 +00:00
func fileInfoFromStat(d *syscall.Dir) FileInfo {
2012-03-27 23:13:14 +00:00
fs := &fileStat{
name: d.Name,
size: int64(d.Length),
modTime: time.Unix(int64(d.Mtime), 0),
sys: d,
}
fs.mode = FileMode(d.Mode & 0777)
if d.Mode&syscall.DMDIR != 0 {
fs.mode |= ModeDir
}
if d.Mode&syscall.DMAPPEND != 0 {
fs.mode |= ModeAppend
}
if d.Mode&syscall.DMEXCL != 0 {
fs.mode |= ModeExclusive
}
if d.Mode&syscall.DMTMP != 0 {
fs.mode |= ModeTemporary
}
return fs
}
2014-09-21 17:33:12 +00:00
// arg is an open *File or a path string.
func dirstat(arg interface{}) (*syscall.Dir, error) {
2012-03-27 23:13:14 +00:00
var name string
// This is big enough for most stat messages
// and rounded to a multiple of 128 bytes.
size := (syscall.STATFIXLEN + 16*4 + 128) &^ 128
for i := 0; i < 2; i++ {
buf := make([]byte, size)
var n int
2014-09-21 17:33:12 +00:00
var err error
2012-03-27 23:13:14 +00:00
switch a := arg.(type) {
case *File:
name = a.name
n, err = syscall.Fstat(a.fd, buf)
case string:
name = a
2014-09-21 17:33:12 +00:00
n, err = syscall.Stat(a, buf)
default:
panic("phase error in dirstat")
2012-03-27 23:13:14 +00:00
}
if err != nil {
return nil, &PathError{"stat", name, err}
}
if n < syscall.STATFIXLEN {
2014-09-21 17:33:12 +00:00
return nil, &PathError{"stat", name, syscall.ErrShortStat}
2012-03-27 23:13:14 +00:00
}
// Pull the real size out of the stat message.
2014-09-21 17:33:12 +00:00
size = int(uint16(buf[0]) | uint16(buf[1])<<8)
2012-03-27 23:13:14 +00:00
// If the stat message is larger than our buffer we will
// go around the loop and allocate one that is big enough.
2014-09-21 17:33:12 +00:00
if size > n {
continue
2012-03-27 23:13:14 +00:00
}
2014-09-21 17:33:12 +00:00
d, err := syscall.UnmarshalDir(buf[:n])
if err != nil {
return nil, &PathError{"stat", name, err}
}
return d, nil
2012-03-27 23:13:14 +00:00
}
2014-09-21 17:33:12 +00:00
return nil, &PathError{"stat", name, syscall.ErrBadStat}
2012-03-27 23:13:14 +00:00
}
2014-09-21 17:33:12 +00:00
// Stat returns a FileInfo describing the named file.
2012-03-27 23:13:14 +00:00
// If there is an error, it will be of type *PathError.
2014-09-21 17:33:12 +00:00
func Stat(name string) (fi FileInfo, err error) {
2012-03-27 23:13:14 +00:00
d, err := dirstat(name)
if err != nil {
return nil, err
}
return fileInfoFromStat(d), nil
}
2014-09-21 17:33:12 +00:00
// Lstat returns a FileInfo describing the named file.
// If the file is a symbolic link, the returned FileInfo
// describes the symbolic link. Lstat makes no attempt to follow the link.
2012-03-27 23:13:14 +00:00
// If there is an error, it will be of type *PathError.
2014-09-21 17:33:12 +00:00
func Lstat(name string) (fi FileInfo, err error) {
2012-03-27 23:13:14 +00:00
return Stat(name)
}
// For testing.
func atime(fi FileInfo) time.Time {
2014-09-21 17:33:12 +00:00
return time.Unix(int64(fi.Sys().(*syscall.Dir).Atime), 0)
2012-03-27 23:13:14 +00:00
}