mirror of
https://github.com/golang/go
synced 2024-11-19 09:04:41 -07:00
f5f480e1df
Include syscall.Stat_t on unix to the unexported fileStat structure rather than accessing it though an interface. Additionally add a benchmark for Readdir (and Readdirnames). Tested on linux, freebsd, netbsd, openbsd darwin, solaris, does not touch windows stuff. Does not change the API, as discussed on golang-dev. E.g. on linux/amd64 with a directory of 65 files: benchmark old ns/op new ns/op delta BenchmarkReaddir-4 67774 66225 -2.29% benchmark old allocs new allocs delta BenchmarkReaddir-4 334 269 -19.46% benchmark old bytes new bytes delta BenchmarkReaddir-4 25208 24168 -4.13% Change-Id: I44ef72a04ad7055523a980f29aa11122040ae8fe Reviewed-on: https://go-review.googlesource.com/16423 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
// Copyright 2009 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"
|
|
)
|
|
|
|
func fillFileStatFromSys(fs *fileStat, name string) {
|
|
fs.name = basename(name)
|
|
fs.size = int64(fs.sys.Size)
|
|
fs.modTime = timespecToTime(fs.sys.Mtim)
|
|
fs.mode = FileMode(fs.sys.Mode & 0777)
|
|
switch fs.sys.Mode & syscall.S_IFMT {
|
|
case syscall.S_IFBLK:
|
|
fs.mode |= ModeDevice
|
|
case syscall.S_IFCHR:
|
|
fs.mode |= ModeDevice | ModeCharDevice
|
|
case syscall.S_IFDIR:
|
|
fs.mode |= ModeDir
|
|
case syscall.S_IFIFO:
|
|
fs.mode |= ModeNamedPipe
|
|
case syscall.S_IFLNK:
|
|
fs.mode |= ModeSymlink
|
|
case syscall.S_IFREG:
|
|
// nothing to do
|
|
case syscall.S_IFSOCK:
|
|
fs.mode |= ModeSocket
|
|
}
|
|
if fs.sys.Mode&syscall.S_ISGID != 0 {
|
|
fs.mode |= ModeSetgid
|
|
}
|
|
if fs.sys.Mode&syscall.S_ISUID != 0 {
|
|
fs.mode |= ModeSetuid
|
|
}
|
|
if fs.sys.Mode&syscall.S_ISVTX != 0 {
|
|
fs.mode |= ModeSticky
|
|
}
|
|
}
|
|
|
|
func timespecToTime(ts syscall.Timespec) time.Time {
|
|
return time.Unix(int64(ts.Sec), int64(ts.Nsec))
|
|
}
|
|
|
|
// For testing.
|
|
func atime(fi FileInfo) time.Time {
|
|
return timespecToTime(fi.Sys().(*syscall.Stat_t).Atim)
|
|
}
|