2011-04-02 15:28:58 -06:00
|
|
|
// 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.
|
|
|
|
|
2011-12-17 08:29:18 -07:00
|
|
|
// +build darwin freebsd linux netbsd openbsd windows
|
build: add build comments to core packages
The go/build package already recognizes
system-specific file names like
mycode_darwin.go
mycode_darwin_386.go
mycode_386.s
However, it is also common to write files that
apply to multiple architectures, so a recent CL added
to go/build the ability to process comments
listing a set of conditions for building. For example:
// +build darwin freebsd openbsd/386
says that this file should be compiled only on
OS X, FreeBSD, or 32-bit x86 OpenBSD systems.
These conventions are not yet documented
(hence this long CL description).
This CL adds build comments to the multi-system
files in the core library, a step toward making it
possible to use go/build to build them.
With this change go/build can handle crypto/rand,
exec, net, path/filepath, os/user, and time.
os and syscall need additional adjustments.
R=golang-dev, r, gri, r, gustavo
CC=golang-dev
https://golang.org/cl/5011046
2011-09-15 14:48:57 -06:00
|
|
|
|
2011-04-02 15:28:58 -06:00
|
|
|
package os
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
2011-11-30 10:01:46 -07:00
|
|
|
"time"
|
2011-04-02 15:28:58 -06:00
|
|
|
)
|
|
|
|
|
2011-04-25 14:58:00 -06:00
|
|
|
func sigpipe() // implemented in package runtime
|
|
|
|
|
2012-02-12 20:21:39 -07:00
|
|
|
// Link creates newname as a hard link to the oldname file.
|
2012-02-18 05:45:43 -07:00
|
|
|
// If there is an error, it will be of type *LinkError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Link(oldname, newname string) error {
|
2011-04-02 15:28:58 -06:00
|
|
|
e := syscall.Link(oldname, newname)
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
|
|
|
return &LinkError{"link", oldname, newname, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2012-02-12 20:21:39 -07:00
|
|
|
// Symlink creates newname as a symbolic link to oldname.
|
2012-02-18 05:45:43 -07:00
|
|
|
// If there is an error, it will be of type *LinkError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Symlink(oldname, newname string) error {
|
2011-04-02 15:28:58 -06:00
|
|
|
e := syscall.Symlink(oldname, newname)
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
|
|
|
return &LinkError{"symlink", oldname, newname, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2012-02-12 20:21:39 -07:00
|
|
|
// Readlink returns the destination of the named symbolic link.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Readlink(name string) (string, error) {
|
2011-04-02 15:28:58 -06:00
|
|
|
for len := 128; ; len *= 2 {
|
|
|
|
b := make([]byte, len)
|
|
|
|
n, e := syscall.Readlink(name, b)
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
|
|
|
return "", &PathError{"readlink", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
if n < len {
|
|
|
|
return string(b[0:n]), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rename renames a file.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Rename(oldname, newname string) error {
|
2011-04-02 15:28:58 -06:00
|
|
|
e := syscall.Rename(oldname, newname)
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
|
|
|
return &LinkError{"rename", oldname, newname, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2012-01-19 16:45:18 -07:00
|
|
|
// syscallMode returns the syscall-specific mode bits from Go's portable mode bits.
|
|
|
|
func syscallMode(i FileMode) (o uint32) {
|
|
|
|
o |= uint32(i.Perm())
|
|
|
|
if i&ModeSetuid != 0 {
|
|
|
|
o |= syscall.S_ISUID
|
|
|
|
}
|
|
|
|
if i&ModeSetgid != 0 {
|
|
|
|
o |= syscall.S_ISGID
|
|
|
|
}
|
|
|
|
if i&ModeSticky != 0 {
|
|
|
|
o |= syscall.S_ISVTX
|
|
|
|
}
|
|
|
|
// No mapping for Go's ModeTemporary (plan9 only).
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-04-02 15:28:58 -06:00
|
|
|
// Chmod changes the mode of the named file to mode.
|
|
|
|
// If the file is a symbolic link, it changes the mode of the link's target.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2012-01-19 16:45:18 -07:00
|
|
|
func Chmod(name string, mode FileMode) error {
|
|
|
|
if e := syscall.Chmod(name, syscallMode(mode)); e != nil {
|
2011-11-13 20:44:52 -07:00
|
|
|
return &PathError{"chmod", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chmod changes the mode of the file to mode.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2012-01-19 16:45:18 -07:00
|
|
|
func (f *File) Chmod(mode FileMode) error {
|
|
|
|
if e := syscall.Fchmod(f.fd, syscallMode(mode)); e != nil {
|
2011-11-13 20:44:52 -07:00
|
|
|
return &PathError{"chmod", f.name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chown changes the numeric uid and gid of the named file.
|
|
|
|
// If the file is a symbolic link, it changes the uid and gid of the link's target.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Chown(name string, uid, gid int) error {
|
2011-11-13 20:44:52 -07:00
|
|
|
if e := syscall.Chown(name, uid, gid); e != nil {
|
|
|
|
return &PathError{"chown", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lchown changes the numeric uid and gid of the named file.
|
|
|
|
// If the file is a symbolic link, it changes the uid and gid of the link itself.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Lchown(name string, uid, gid int) error {
|
2011-11-13 20:44:52 -07:00
|
|
|
if e := syscall.Lchown(name, uid, gid); e != nil {
|
|
|
|
return &PathError{"lchown", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chown changes the numeric uid and gid of the named file.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func (f *File) Chown(uid, gid int) error {
|
2011-11-13 20:44:52 -07:00
|
|
|
if e := syscall.Fchown(f.fd, uid, gid); e != nil {
|
|
|
|
return &PathError{"chown", f.name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Truncate changes the size of the file.
|
|
|
|
// It does not change the I/O offset.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func (f *File) Truncate(size int64) error {
|
2011-11-13 20:44:52 -07:00
|
|
|
if e := syscall.Ftruncate(f.fd, size); e != nil {
|
|
|
|
return &PathError{"truncate", f.name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync commits the current contents of the file to stable storage.
|
|
|
|
// Typically, this means flushing the file system's in-memory copy
|
|
|
|
// of recently written data to disk.
|
2011-12-01 12:23:39 -07:00
|
|
|
func (f *File) Sync() (err error) {
|
|
|
|
if f == nil {
|
2012-02-16 16:04:29 -07:00
|
|
|
return syscall.EINVAL
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
2011-12-01 12:23:39 -07:00
|
|
|
if e := syscall.Fsync(f.fd); e != nil {
|
2011-04-02 15:28:58 -06:00
|
|
|
return NewSyscallError("fsync", e)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chtimes changes the access and modification times of the named
|
|
|
|
// file, similar to the Unix utime() or utimes() functions.
|
|
|
|
//
|
2011-11-30 10:01:46 -07:00
|
|
|
// The underlying filesystem may truncate or round the values to a
|
|
|
|
// less precise time unit.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-30 10:01:46 -07:00
|
|
|
func Chtimes(name string, atime time.Time, mtime time.Time) error {
|
2012-12-13 14:02:39 -07:00
|
|
|
var utimes [2]syscall.Timespec
|
|
|
|
utimes[0] = syscall.NsecToTimespec(atime.UnixNano())
|
|
|
|
utimes[1] = syscall.NsecToTimespec(mtime.UnixNano())
|
|
|
|
if e := syscall.UtimesNano(name, utimes[0:]); e != nil {
|
2011-11-13 20:44:52 -07:00
|
|
|
return &PathError{"chtimes", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|