2008-09-11 14:03:46 -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-04-19 17:57:05 -06:00
|
|
|
// Package os provides a platform-independent interface to operating system
|
2012-02-08 22:55:36 -07:00
|
|
|
// functionality. The design is Unix-like, although the error handling is
|
|
|
|
// Go-like; failing calls return values of type error rather than error numbers.
|
|
|
|
// Often, more information is available within the error. For example,
|
|
|
|
// if a call that takes a file name fails, such as Open or Stat, the error
|
2012-02-16 20:30:25 -07:00
|
|
|
// will include the failing file name when printed and will be of type
|
|
|
|
// *PathError, which may be unpacked for more information.
|
2012-10-30 14:38:01 -06:00
|
|
|
//
|
2011-06-13 19:49:33 -06:00
|
|
|
// The os interface is intended to be uniform across all operating systems.
|
|
|
|
// Features not generally available appear in the system-specific package syscall.
|
2012-02-16 20:30:25 -07:00
|
|
|
//
|
|
|
|
// Here is a simple example, opening a file and reading some of it.
|
|
|
|
//
|
|
|
|
// file, err := os.Open("file.go") // For read access.
|
|
|
|
// if err != nil {
|
|
|
|
// log.Fatal(err)
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// If the open fails, the error string will be self-explanatory, like
|
|
|
|
//
|
|
|
|
// open file.go: no such file or directory
|
|
|
|
//
|
|
|
|
// The file's data can then be read into a slice of bytes. Read and
|
2012-02-24 04:42:16 -07:00
|
|
|
// Write take their byte counts from the length of the argument slice.
|
2012-02-16 20:30:25 -07:00
|
|
|
//
|
|
|
|
// data := make([]byte, 100)
|
|
|
|
// count, err := file.Read(data)
|
|
|
|
// if err != nil {
|
|
|
|
// log.Fatal(err)
|
|
|
|
// }
|
|
|
|
// fmt.Printf("read %d bytes: %q\n", count, data[:count])
|
|
|
|
//
|
2008-09-11 14:03:46 -06:00
|
|
|
package os
|
|
|
|
|
2009-02-15 20:35:52 -07:00
|
|
|
import (
|
2017-04-09 14:12:39 -06:00
|
|
|
"errors"
|
2017-04-24 22:49:26 -06:00
|
|
|
"internal/poll"
|
2017-12-04 11:57:48 -07:00
|
|
|
"internal/testlog"
|
2011-11-01 19:49:08 -06:00
|
|
|
"io"
|
2009-12-15 16:40:16 -07:00
|
|
|
"syscall"
|
2017-10-17 14:57:34 -06:00
|
|
|
"time"
|
2009-02-15 20:35:52 -07:00
|
|
|
)
|
2008-09-11 14:03:46 -06:00
|
|
|
|
2009-03-07 17:56:44 -07:00
|
|
|
// Name returns the name of the file as presented to Open.
|
2011-12-01 12:23:39 -07:00
|
|
|
func (f *File) Name() string { return f.name }
|
2009-02-06 18:54:26 -07:00
|
|
|
|
2009-03-11 13:51:10 -06:00
|
|
|
// Stdin, Stdout, and Stderr are open Files pointing to the standard input,
|
2009-03-07 17:56:44 -07:00
|
|
|
// standard output, and standard error file descriptors.
|
2016-06-08 22:09:09 -06:00
|
|
|
//
|
|
|
|
// Note that the Go runtime writes to standard error for panics and crashes;
|
|
|
|
// closing Stderr may cause those messages to go elsewhere, perhaps
|
|
|
|
// to a file opened later.
|
2009-01-20 15:40:40 -07:00
|
|
|
var (
|
2012-02-09 20:16:15 -07:00
|
|
|
Stdin = NewFile(uintptr(syscall.Stdin), "/dev/stdin")
|
|
|
|
Stdout = NewFile(uintptr(syscall.Stdout), "/dev/stdout")
|
|
|
|
Stderr = NewFile(uintptr(syscall.Stderr), "/dev/stderr")
|
2008-09-11 14:03:46 -06:00
|
|
|
)
|
|
|
|
|
2015-12-03 09:00:31 -07:00
|
|
|
// Flags to OpenFile wrapping those of the underlying system. Not all
|
2017-11-01 14:38:05 -06:00
|
|
|
// flags may be implemented on a given system.
|
2009-01-20 15:40:40 -07:00
|
|
|
const (
|
2017-11-01 14:38:05 -06:00
|
|
|
// Exactly one of O_RDONLY, O_WRONLY, or O_RDWR must be specified.
|
2012-02-09 20:16:15 -07:00
|
|
|
O_RDONLY int = syscall.O_RDONLY // open the file read-only.
|
|
|
|
O_WRONLY int = syscall.O_WRONLY // open the file write-only.
|
|
|
|
O_RDWR int = syscall.O_RDWR // open the file read-write.
|
2017-11-01 14:38:05 -06:00
|
|
|
// The remaining values may be or'ed in to control behavior.
|
2012-02-09 20:16:15 -07:00
|
|
|
O_APPEND int = syscall.O_APPEND // append data to the file when writing.
|
|
|
|
O_CREATE int = syscall.O_CREAT // create a new file if none exists.
|
2017-10-17 17:00:55 -06:00
|
|
|
O_EXCL int = syscall.O_EXCL // used with O_CREATE, file must not exist.
|
2012-02-09 20:16:15 -07:00
|
|
|
O_SYNC int = syscall.O_SYNC // open for synchronous I/O.
|
|
|
|
O_TRUNC int = syscall.O_TRUNC // if possible, truncate file when opened.
|
2008-09-11 16:09:10 -06:00
|
|
|
)
|
|
|
|
|
2011-04-04 14:53:52 -06:00
|
|
|
// Seek whence values.
|
2016-04-05 12:29:15 -06:00
|
|
|
//
|
|
|
|
// Deprecated: Use io.SeekStart, io.SeekCurrent, and io.SeekEnd.
|
2011-04-04 14:53:52 -06:00
|
|
|
const (
|
|
|
|
SEEK_SET int = 0 // seek relative to the origin of the file
|
|
|
|
SEEK_CUR int = 1 // seek relative to the current offset
|
|
|
|
SEEK_END int = 2 // seek relative to the end
|
|
|
|
)
|
|
|
|
|
2012-02-19 18:31:24 -07:00
|
|
|
// LinkError records an error during a link or symlink or rename
|
|
|
|
// system call and the paths that caused it.
|
|
|
|
type LinkError struct {
|
|
|
|
Op string
|
|
|
|
Old string
|
|
|
|
New string
|
|
|
|
Err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *LinkError) Error() string {
|
|
|
|
return e.Op + " " + e.Old + " " + e.New + ": " + e.Err.Error()
|
|
|
|
}
|
|
|
|
|
2009-03-11 13:51:10 -06:00
|
|
|
// Read reads up to len(b) bytes from the File.
|
2016-10-26 20:02:12 -06:00
|
|
|
// It returns the number of bytes read and any error encountered.
|
|
|
|
// At end of file, Read returns 0, io.EOF.
|
2011-12-01 12:23:39 -07:00
|
|
|
func (f *File) Read(b []byte) (n int, err error) {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("read"); err != nil {
|
|
|
|
return 0, err
|
2008-09-11 14:03:46 -06:00
|
|
|
}
|
2011-12-01 12:23:39 -07:00
|
|
|
n, e := f.read(b)
|
2017-04-25 18:47:34 -06:00
|
|
|
return n, f.wrapErr("read", e)
|
2008-09-11 14:03:46 -06:00
|
|
|
}
|
|
|
|
|
2009-08-27 19:36:45 -06:00
|
|
|
// ReadAt reads len(b) bytes from the File starting at byte offset off.
|
2011-11-01 19:49:08 -06:00
|
|
|
// It returns the number of bytes read and the error, if any.
|
2011-11-22 10:22:28 -07:00
|
|
|
// ReadAt always returns a non-nil error when n < len(b).
|
|
|
|
// At end of file, that error is io.EOF.
|
2011-12-01 12:23:39 -07:00
|
|
|
func (f *File) ReadAt(b []byte, off int64) (n int, err error) {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("read"); err != nil {
|
|
|
|
return 0, err
|
2009-08-27 19:36:45 -06:00
|
|
|
}
|
2017-04-09 14:12:39 -06:00
|
|
|
|
|
|
|
if off < 0 {
|
|
|
|
return 0, &PathError{"readat", f.name, errors.New("negative offset")}
|
|
|
|
}
|
|
|
|
|
2009-08-27 19:36:45 -06:00
|
|
|
for len(b) > 0 {
|
2011-12-01 12:23:39 -07:00
|
|
|
m, e := f.pread(b, off)
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
2017-04-25 18:47:34 -06:00
|
|
|
err = f.wrapErr("read", e)
|
2009-12-15 16:40:16 -07:00
|
|
|
break
|
2009-08-27 19:36:45 -06:00
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
n += m
|
|
|
|
b = b[m:]
|
|
|
|
off += int64(m)
|
2009-08-27 19:36:45 -06:00
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
return
|
2009-08-27 19:36:45 -06:00
|
|
|
}
|
|
|
|
|
2009-03-11 13:51:10 -06:00
|
|
|
// Write writes len(b) bytes to the File.
|
2011-11-01 19:49:08 -06:00
|
|
|
// It returns the number of bytes written and an error, if any.
|
|
|
|
// Write returns a non-nil error when n != len(b).
|
2011-12-01 12:23:39 -07:00
|
|
|
func (f *File) Write(b []byte) (n int, err error) {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("write"); err != nil {
|
|
|
|
return 0, err
|
2008-09-11 14:03:46 -06:00
|
|
|
}
|
2011-12-01 12:23:39 -07:00
|
|
|
n, e := f.write(b)
|
2009-06-01 23:14:39 -06:00
|
|
|
if n < 0 {
|
2009-11-09 13:07:39 -07:00
|
|
|
n = 0
|
2008-11-14 16:13:29 -07:00
|
|
|
}
|
2013-12-09 21:25:13 -07:00
|
|
|
if n != len(b) {
|
|
|
|
err = io.ErrShortWrite
|
|
|
|
}
|
2011-04-02 15:28:58 -06:00
|
|
|
|
2011-12-01 12:23:39 -07:00
|
|
|
epipecheck(f, e)
|
2011-04-02 15:28:58 -06:00
|
|
|
|
2017-05-16 18:41:42 -06:00
|
|
|
if e != nil {
|
|
|
|
err = f.wrapErr("write", e)
|
|
|
|
}
|
|
|
|
|
|
|
|
return n, err
|
2008-09-11 14:03:46 -06:00
|
|
|
}
|
|
|
|
|
2009-08-27 19:36:45 -06:00
|
|
|
// WriteAt writes len(b) bytes to the File starting at byte offset off.
|
2011-11-01 19:49:08 -06:00
|
|
|
// It returns the number of bytes written and an error, if any.
|
|
|
|
// WriteAt returns a non-nil error when n != len(b).
|
2011-12-01 12:23:39 -07:00
|
|
|
func (f *File) WriteAt(b []byte, off int64) (n int, err error) {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("write"); err != nil {
|
|
|
|
return 0, err
|
2009-08-27 19:36:45 -06:00
|
|
|
}
|
2017-04-09 14:12:39 -06:00
|
|
|
|
|
|
|
if off < 0 {
|
|
|
|
return 0, &PathError{"writeat", f.name, errors.New("negative offset")}
|
|
|
|
}
|
|
|
|
|
2009-08-27 19:36:45 -06:00
|
|
|
for len(b) > 0 {
|
2011-12-01 12:23:39 -07:00
|
|
|
m, e := f.pwrite(b, off)
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
2017-04-25 18:47:34 -06:00
|
|
|
err = f.wrapErr("write", e)
|
2009-12-15 16:40:16 -07:00
|
|
|
break
|
2009-08-27 19:36:45 -06:00
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
n += m
|
|
|
|
b = b[m:]
|
|
|
|
off += int64(m)
|
2009-08-27 19:36:45 -06:00
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
return
|
2009-08-27 19:36:45 -06:00
|
|
|
}
|
|
|
|
|
2009-03-11 13:51:10 -06:00
|
|
|
// Seek sets the offset for the next Read or Write on file to offset, interpreted
|
2009-03-07 17:56:44 -07:00
|
|
|
// according to whence: 0 means relative to the origin of the file, 1 means
|
|
|
|
// relative to the current offset, and 2 means relative to the end.
|
2011-11-01 19:49:08 -06:00
|
|
|
// It returns the new offset and an error, if any.
|
2015-09-23 09:49:44 -06:00
|
|
|
// The behavior of Seek on a file opened with O_APPEND is not specified.
|
2011-12-01 12:23:39 -07:00
|
|
|
func (f *File) Seek(offset int64, whence int) (ret int64, err error) {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("seek"); err != nil {
|
|
|
|
return 0, err
|
2013-08-19 22:33:03 -06:00
|
|
|
}
|
2011-12-01 12:23:39 -07:00
|
|
|
r, e := f.seek(offset, whence)
|
|
|
|
if e == nil && f.dirinfo != nil && r != 0 {
|
2009-11-09 13:07:39 -07:00
|
|
|
e = syscall.EISDIR
|
2009-02-10 12:27:45 -07:00
|
|
|
}
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
2017-04-25 18:47:34 -06:00
|
|
|
return 0, f.wrapErr("seek", e)
|
2009-02-10 12:27:45 -07:00
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
return r, nil
|
2009-02-10 12:27:45 -07:00
|
|
|
}
|
|
|
|
|
2009-03-07 17:56:44 -07:00
|
|
|
// WriteString is like Write, but writes the contents of string s rather than
|
2012-10-21 23:26:47 -06:00
|
|
|
// a slice of bytes.
|
2015-07-17 09:26:29 -06:00
|
|
|
func (f *File) WriteString(s string) (n int, err error) {
|
2011-12-01 12:23:39 -07:00
|
|
|
return f.Write([]byte(s))
|
2008-09-11 14:03:46 -06:00
|
|
|
}
|
2008-09-26 15:31:17 -06:00
|
|
|
|
2017-12-13 08:45:09 -07:00
|
|
|
// Mkdir creates a new directory with the specified name and permission
|
|
|
|
// bits (before umask).
|
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 Mkdir(name string, perm FileMode) error {
|
2016-10-28 11:01:51 -06:00
|
|
|
e := syscall.Mkdir(fixLongPath(name), syscallMode(perm))
|
2014-12-16 09:22:17 -07:00
|
|
|
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
|
|
|
return &PathError{"mkdir", name, e}
|
2009-06-25 21:24:55 -06:00
|
|
|
}
|
2014-12-22 22:05:07 -07:00
|
|
|
|
|
|
|
// mkdir(2) itself won't handle the sticky bit on *BSD and Solaris
|
|
|
|
if !supportsCreateWithStickyBit && perm&ModeSticky != 0 {
|
|
|
|
Chmod(name, perm)
|
|
|
|
}
|
|
|
|
|
2009-12-15 16:40:16 -07:00
|
|
|
return nil
|
2008-10-09 01:15:37 -06:00
|
|
|
}
|
2009-02-06 18:54:26 -07:00
|
|
|
|
2009-04-07 01:40:36 -06:00
|
|
|
// Chdir changes the current working directory to the named directory.
|
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 Chdir(dir string) error {
|
2011-11-13 20:44:52 -07:00
|
|
|
if e := syscall.Chdir(dir); e != nil {
|
2017-12-04 11:57:48 -07:00
|
|
|
testlog.Open(dir) // observe likely non-existent directory
|
2011-11-13 20:44:52 -07:00
|
|
|
return &PathError{"chdir", dir, e}
|
2009-06-25 21:24:55 -06:00
|
|
|
}
|
2017-12-04 11:57:48 -07:00
|
|
|
if log := testlog.Logger(); log != nil {
|
|
|
|
wd, err := Getwd()
|
|
|
|
if err == nil {
|
|
|
|
log.Chdir(wd)
|
|
|
|
}
|
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
return nil
|
2009-04-07 01:40:36 -06:00
|
|
|
}
|
|
|
|
|
2016-03-01 16:21:55 -07:00
|
|
|
// Open opens the named file for reading. If successful, methods on
|
2011-04-05 00:42:14 -06:00
|
|
|
// the returned file can be used for reading; the associated file
|
|
|
|
// descriptor has mode O_RDONLY.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2015-07-17 09:26:29 -06:00
|
|
|
func Open(name string) (*File, error) {
|
2011-04-05 00:42:14 -06:00
|
|
|
return OpenFile(name, O_RDONLY, 0)
|
|
|
|
}
|
|
|
|
|
2015-07-17 09:26:29 -06:00
|
|
|
// Create creates the named file with mode 0666 (before umask), truncating
|
|
|
|
// it if it already exists. If successful, methods on the returned
|
2011-04-05 00:42:14 -06:00
|
|
|
// File can be used for I/O; the associated file descriptor has mode
|
|
|
|
// O_RDWR.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2015-07-17 09:26:29 -06:00
|
|
|
func Create(name string) (*File, error) {
|
2011-04-05 00:42:14 -06:00
|
|
|
return OpenFile(name, O_RDWR|O_CREATE|O_TRUNC, 0666)
|
|
|
|
}
|
2013-08-08 12:13:00 -06:00
|
|
|
|
2017-12-11 17:41:37 -07:00
|
|
|
// OpenFile is the generalized open call; most users will use Open
|
|
|
|
// or Create instead. It opens the named file with specified flag
|
2017-12-13 08:45:09 -07:00
|
|
|
// (O_RDONLY etc.) and perm (before umask), if applicable. If successful,
|
2017-12-11 17:41:37 -07:00
|
|
|
// methods on the returned File can be used for I/O.
|
|
|
|
// If there is an error, it will be of type *PathError.
|
|
|
|
func OpenFile(name string, flag int, perm FileMode) (*File, error) {
|
|
|
|
testlog.Open(name)
|
|
|
|
return openFileNolog(name, flag, perm)
|
|
|
|
}
|
|
|
|
|
2013-08-08 12:13:00 -06:00
|
|
|
// lstat is overridden in tests.
|
|
|
|
var lstat = Lstat
|
2013-12-09 21:46:21 -07:00
|
|
|
|
2016-01-06 12:43:16 -07:00
|
|
|
// Rename renames (moves) oldpath to newpath.
|
2016-12-07 18:13:35 -07:00
|
|
|
// If newpath already exists and is not a directory, Rename replaces it.
|
2016-01-06 12:43:16 -07:00
|
|
|
// OS-specific restrictions may apply when oldpath and newpath are in different directories.
|
2015-07-17 08:33:51 -06:00
|
|
|
// If there is an error, it will be of type *LinkError.
|
2013-12-09 21:46:21 -07:00
|
|
|
func Rename(oldpath, newpath string) error {
|
|
|
|
return rename(oldpath, newpath)
|
|
|
|
}
|
2014-10-28 13:00:13 -06:00
|
|
|
|
|
|
|
// Many functions in package syscall return a count of -1 instead of 0.
|
|
|
|
// Using fixCount(call()) instead of call() corrects the count.
|
|
|
|
func fixCount(n int, err error) (int, error) {
|
|
|
|
if n < 0 {
|
|
|
|
n = 0
|
|
|
|
}
|
|
|
|
return n, err
|
|
|
|
}
|
2017-04-25 18:47:34 -06:00
|
|
|
|
|
|
|
// wrapErr wraps an error that occurred during an operation on an open file.
|
|
|
|
// It passes io.EOF through unchanged, otherwise converts
|
|
|
|
// poll.ErrFileClosing to ErrClosed and wraps the error in a PathError.
|
|
|
|
func (f *File) wrapErr(op string, err error) error {
|
|
|
|
if err == nil || err == io.EOF {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err == poll.ErrFileClosing {
|
|
|
|
err = ErrClosed
|
|
|
|
}
|
|
|
|
return &PathError{op, f.name, err}
|
|
|
|
}
|
2017-06-14 12:29:49 -06:00
|
|
|
|
|
|
|
// TempDir returns the default directory to use for temporary files.
|
|
|
|
//
|
|
|
|
// On Unix systems, it returns $TMPDIR if non-empty, else /tmp.
|
|
|
|
// On Windows, it uses GetTempPath, returning the first non-empty
|
|
|
|
// value from %TMP%, %TEMP%, %USERPROFILE%, or the Windows directory.
|
|
|
|
// On Plan 9, it returns /tmp.
|
|
|
|
//
|
|
|
|
// The directory is neither guaranteed to exist nor have accessible
|
|
|
|
// permissions.
|
|
|
|
func TempDir() string {
|
|
|
|
return tempDir()
|
|
|
|
}
|
2017-06-29 16:47:29 -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.
|
|
|
|
// If there is an error, it will be of type *PathError.
|
|
|
|
//
|
|
|
|
// A different subset of the mode bits are used, depending on the
|
|
|
|
// operating system.
|
|
|
|
//
|
|
|
|
// On Unix, the mode's permission bits, ModeSetuid, ModeSetgid, and
|
|
|
|
// ModeSticky are used.
|
|
|
|
//
|
|
|
|
// On Windows, the mode must be non-zero but otherwise only the 0200
|
|
|
|
// bit (owner writable) of mode is used; it controls whether the
|
|
|
|
// file's read-only attribute is set or cleared. attribute. The other
|
|
|
|
// bits are currently unused. Use mode 0400 for a read-only file and
|
|
|
|
// 0600 for a readable+writable file.
|
|
|
|
//
|
|
|
|
// On Plan 9, the mode's permission bits, ModeAppend, ModeExclusive,
|
|
|
|
// and ModeTemporary are used.
|
|
|
|
func Chmod(name string, mode FileMode) error { return chmod(name, mode) }
|
|
|
|
|
|
|
|
// Chmod changes the mode of the file to mode.
|
|
|
|
// If there is an error, it will be of type *PathError.
|
|
|
|
func (f *File) Chmod(mode FileMode) error { return f.chmod(mode) }
|
2017-10-17 14:57:34 -06:00
|
|
|
|
|
|
|
// SetDeadline sets the read and write deadlines for a File.
|
|
|
|
// It is equivalent to calling both SetReadDeadline and SetWriteDeadline.
|
|
|
|
//
|
|
|
|
// Only some kinds of files support setting a deadline. Calls to SetDeadline
|
|
|
|
// for files that do not support deadlines will return ErrNoDeadline.
|
|
|
|
// On most systems ordinary files do not support deadlines, but pipes do.
|
|
|
|
//
|
|
|
|
// A deadline is an absolute time after which I/O operations fail with an
|
|
|
|
// error instead of blocking. The deadline applies to all future and pending
|
|
|
|
// I/O, not just the immediately following call to Read or Write.
|
|
|
|
// After a deadline has been exceeded, the connection can be refreshed
|
|
|
|
// by setting a deadline in the future.
|
|
|
|
//
|
|
|
|
// An error returned after a timeout fails will implement the
|
|
|
|
// Timeout method, and calling the Timeout method will return true.
|
|
|
|
// The PathError and SyscallError types implement the Timeout method.
|
|
|
|
// In general, call IsTimeout to test whether an error indicates a timeout.
|
|
|
|
//
|
|
|
|
// An idle timeout can be implemented by repeatedly extending
|
|
|
|
// the deadline after successful Read or Write calls.
|
|
|
|
//
|
|
|
|
// A zero value for t means I/O operations will not time out.
|
|
|
|
func (f *File) SetDeadline(t time.Time) error {
|
|
|
|
return f.setDeadline(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetReadDeadline sets the deadline for future Read calls and any
|
|
|
|
// currently-blocked Read call.
|
|
|
|
// A zero value for t means Read will not time out.
|
|
|
|
// Not all files support setting deadlines; see SetDeadline.
|
|
|
|
func (f *File) SetReadDeadline(t time.Time) error {
|
|
|
|
return f.setReadDeadline(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetWriteDeadline sets the deadline for any future Write calls and any
|
|
|
|
// currently-blocked Write call.
|
|
|
|
// Even if Write times out, it may return n > 0, indicating that
|
|
|
|
// some of the data was successfully written.
|
|
|
|
// A zero value for t means Write will not time out.
|
|
|
|
// Not all files support setting deadlines; see SetDeadline.
|
|
|
|
func (f *File) SetWriteDeadline(t time.Time) error {
|
|
|
|
return f.setWriteDeadline(t)
|
|
|
|
}
|