2010-04-13 17:30:11 -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.
|
|
|
|
|
|
|
|
package os
|
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Auxiliary information if the File describes a directory
|
|
|
|
type dirInfo struct {
|
|
|
|
stat syscall.Stat_t
|
|
|
|
usefirststat bool
|
|
|
|
}
|
|
|
|
|
2010-08-03 14:03:50 -06:00
|
|
|
const DevNull = "NUL"
|
|
|
|
|
2010-04-13 17:30:11 -06:00
|
|
|
func (file *File) isdir() bool { return file != nil && file.dirinfo != nil }
|
|
|
|
|
2010-08-03 16:34:52 -06:00
|
|
|
func openFile(name string, flag int, perm uint32) (file *File, err Error) {
|
2010-04-13 17:30:11 -06:00
|
|
|
r, e := syscall.Open(name, flag|syscall.O_CLOEXEC, perm)
|
|
|
|
if e != 0 {
|
|
|
|
return nil, &PathError{"open", name, Errno(e)}
|
|
|
|
}
|
|
|
|
|
|
|
|
// There's a race here with fork/exec, which we are
|
|
|
|
// content to live with. See ../syscall/exec.go
|
|
|
|
if syscall.O_CLOEXEC == 0 { // O_CLOEXEC not supported
|
|
|
|
syscall.CloseOnExec(r)
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewFile(r, name), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func openDir(name string) (file *File, err Error) {
|
|
|
|
d := new(dirInfo)
|
|
|
|
r, e := syscall.FindFirstFile(syscall.StringToUTF16Ptr(name+"\\*"), &d.stat.Windata)
|
|
|
|
if e != 0 {
|
|
|
|
return nil, &PathError{"open", name, Errno(e)}
|
|
|
|
}
|
|
|
|
f := NewFile(int(r), name)
|
|
|
|
d.usefirststat = true
|
|
|
|
f.dirinfo = d
|
|
|
|
return f, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open opens the named file with specified flag (O_RDONLY etc.) and perm, (0666 etc.)
|
|
|
|
// if applicable. If successful, methods on the returned File can be used for I/O.
|
|
|
|
// It returns the File and an Error, if any.
|
2010-08-03 16:34:52 -06:00
|
|
|
func Open(name string, flag int, perm uint32) (file *File, err Error) {
|
2010-04-13 17:30:11 -06:00
|
|
|
// TODO(brainman): not sure about my logic of assuming it is dir first, then fall back to file
|
|
|
|
r, e := openDir(name)
|
|
|
|
if e == nil {
|
2010-10-04 00:31:49 -06:00
|
|
|
if flag&O_WRONLY != 0 || flag&O_RDWR != 0 {
|
|
|
|
r.Close()
|
|
|
|
return nil, &PathError{"open", name, EISDIR}
|
|
|
|
}
|
2010-04-13 17:30:11 -06:00
|
|
|
return r, nil
|
|
|
|
}
|
2010-04-13 23:30:41 -06:00
|
|
|
r, e = openFile(name, flag, perm)
|
2010-04-13 17:30:11 -06:00
|
|
|
if e == nil {
|
|
|
|
return r, nil
|
|
|
|
}
|
2010-10-04 00:31:49 -06:00
|
|
|
// Imitating Unix behavior by replacing syscall.ERROR_PATH_NOT_FOUND with
|
|
|
|
// os.ENOTDIR. Not sure if we should go into that.
|
|
|
|
if e2, ok := e.(*PathError); ok {
|
|
|
|
if e3, ok := e2.Error.(Errno); ok {
|
|
|
|
if e3 == Errno(syscall.ERROR_PATH_NOT_FOUND) {
|
|
|
|
return nil, &PathError{"open", name, ENOTDIR}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-13 17:30:11 -06:00
|
|
|
return nil, e
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close closes the File, rendering it unusable for I/O.
|
|
|
|
// It returns an Error, if any.
|
|
|
|
func (file *File) Close() Error {
|
|
|
|
if file == nil || file.fd < 0 {
|
|
|
|
return EINVAL
|
|
|
|
}
|
|
|
|
var e int
|
|
|
|
if file.isdir() {
|
|
|
|
_, e = syscall.FindClose(int32(file.fd))
|
|
|
|
} else {
|
|
|
|
_, e = syscall.CloseHandle(int32(file.fd))
|
|
|
|
}
|
|
|
|
var err Error
|
|
|
|
if e != 0 {
|
|
|
|
err = &PathError{"close", file.name, Errno(e)}
|
|
|
|
}
|
|
|
|
file.fd = -1 // so it can't be closed again
|
|
|
|
|
|
|
|
// no need for a finalizer anymore
|
|
|
|
runtime.SetFinalizer(file, nil)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2010-04-27 00:17:14 -06:00
|
|
|
func (file *File) statFile(name string) (fi *FileInfo, err Error) {
|
|
|
|
var stat syscall.ByHandleFileInformation
|
|
|
|
if ok, e := syscall.GetFileInformationByHandle(int32(file.fd), &stat); !ok {
|
|
|
|
return nil, &PathError{"stat", file.name, Errno(e)}
|
|
|
|
}
|
|
|
|
return fileInfoFromByHandleInfo(new(FileInfo), file.name, &stat), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stat returns the FileInfo structure describing file.
|
|
|
|
// It returns the FileInfo and an error, if any.
|
|
|
|
func (file *File) Stat() (fi *FileInfo, err Error) {
|
|
|
|
if file == nil || file.fd < 0 {
|
|
|
|
return nil, EINVAL
|
|
|
|
}
|
|
|
|
if file.isdir() {
|
|
|
|
// I don't know any better way to do that for directory
|
|
|
|
return Stat(file.name)
|
|
|
|
}
|
|
|
|
return file.statFile(file.name)
|
|
|
|
}
|
|
|
|
|
2010-04-13 17:30:11 -06:00
|
|
|
// Readdir reads the contents of the directory associated with file and
|
|
|
|
// returns an array of up to count FileInfo structures, as would be returned
|
2010-09-15 16:38:16 -06:00
|
|
|
// by Lstat, in directory order. Subsequent calls on the same file will yield
|
2010-04-13 17:30:11 -06:00
|
|
|
// further FileInfos.
|
|
|
|
// A negative count means to read until EOF.
|
|
|
|
// Readdir returns the array and an Error, if any.
|
|
|
|
func (file *File) Readdir(count int) (fi []FileInfo, err Error) {
|
2010-09-23 20:06:59 -06:00
|
|
|
if file == nil || file.fd < 0 {
|
|
|
|
return nil, EINVAL
|
|
|
|
}
|
|
|
|
if !file.isdir() {
|
|
|
|
return nil, &PathError{"Readdir", file.name, ENOTDIR}
|
|
|
|
}
|
2010-04-13 17:30:11 -06:00
|
|
|
di := file.dirinfo
|
|
|
|
size := count
|
|
|
|
if size < 0 {
|
|
|
|
size = 100
|
|
|
|
}
|
|
|
|
fi = make([]FileInfo, 0, size) // Empty with room to grow.
|
|
|
|
for count != 0 {
|
|
|
|
if di.usefirststat {
|
|
|
|
di.usefirststat = false
|
|
|
|
} else {
|
|
|
|
_, e := syscall.FindNextFile(int32(file.fd), &di.stat.Windata)
|
|
|
|
if e != 0 {
|
|
|
|
if e == syscall.ERROR_NO_MORE_FILES {
|
|
|
|
break
|
|
|
|
} else {
|
|
|
|
return nil, &PathError{"FindNextFile", file.name, Errno(e)}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var f FileInfo
|
2010-04-27 00:17:14 -06:00
|
|
|
fileInfoFromWin32finddata(&f, &di.stat.Windata)
|
2010-04-13 17:30:11 -06:00
|
|
|
if f.Name == "." || f.Name == ".." { // Useless names
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
count--
|
2010-10-27 20:47:23 -06:00
|
|
|
fi = append(fi, f)
|
2010-04-13 17:30:11 -06:00
|
|
|
}
|
|
|
|
return fi, nil
|
|
|
|
}
|
2010-04-27 00:17:14 -06:00
|
|
|
|
|
|
|
// Truncate changes the size of the named file.
|
|
|
|
// If the file is a symbolic link, it changes the size of the link's target.
|
|
|
|
func Truncate(name string, size int64) Error {
|
|
|
|
f, e := Open(name, O_WRONLY|O_CREAT, 0666)
|
|
|
|
if e != nil {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
e1 := f.Truncate(size)
|
|
|
|
if e1 != nil {
|
|
|
|
return e1
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|