Retro68/gcc/libgo/go/os/stat_solaris.go

54 lines
1.2 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.
// +build !solaristag
2012-03-27 23:13:14 +00:00
package os
import (
"syscall"
"time"
)
2017-04-10 11:32:00 +00:00
func fillFileStatFromSys(fs *fileStat, name string) {
fs.name = basename(name)
fs.size = int64(fs.sys.Size)
fs.modTime = timestrucToTime(fs.sys.Mtim)
fs.mode = FileMode(fs.sys.Mode & 0777)
switch fs.sys.Mode & syscall.S_IFMT {
2015-08-28 15:33:40 +00:00
case syscall.S_IFBLK:
2012-03-27 23:13:14 +00:00
fs.mode |= ModeDevice
2015-08-28 15:33:40 +00:00
case syscall.S_IFCHR:
fs.mode |= ModeDevice | ModeCharDevice
2012-03-27 23:13:14 +00:00
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
}
2017-04-10 11:32:00 +00:00
if fs.sys.Mode&syscall.S_ISGID != 0 {
2012-03-27 23:13:14 +00:00
fs.mode |= ModeSetgid
}
2017-04-10 11:32:00 +00:00
if fs.sys.Mode&syscall.S_ISUID != 0 {
2012-03-27 23:13:14 +00:00
fs.mode |= ModeSetuid
}
2017-04-10 11:32:00 +00:00
if fs.sys.Mode&syscall.S_ISVTX != 0 {
2015-08-28 15:33:40 +00:00
fs.mode |= ModeSticky
}
2012-03-27 23:13:14 +00:00
}
func timestrucToTime(ts syscall.Timestruc) time.Time {
return time.Unix(int64(ts.Sec), int64(ts.Nsec))
}
// For testing.
func atime(fi FileInfo) time.Time {
2014-09-21 17:33:12 +00:00
return timestrucToTime(fi.(*fileStat).Sys().(*syscall.Stat_t).Atim)
2012-03-27 23:13:14 +00:00
}