Documentation ¶
Index ¶
- func CreateFlockFile(dir string) (*os.File, error)
- func HardLinkFiles(srcDir, dstDir string) error
- func IsDirOrSymlink(fi os.FileInfo) bool
- func IsPathExist(path string) bool
- func IsTemporaryFileName(fn string) bool
- func MkdirAllFailIfExist(path string) error
- func MkdirAllIfNotExist(path string) error
- func MustClose(f *os.File)
- func MustFileSize(path string) uint64
- func MustGetFreeSpace(path string) uint64
- func MustRemoveAll(path string)
- func MustRemoveAllWithDoneCallback(path string, done func())
- func MustStopDirRemover()
- func MustSyncPath(path string)
- func MustWriteData(w io.Writer, data []byte)
- func ReadFullData(r io.Reader, data []byte) error
- func RemoveDirContents(dir string)
- func SymlinkRelative(srcPath, dstPath string) error
- func WriteFileAtomically(path string, data []byte) error
- type MustReadAtCloser
- type ReaderAt
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateFlockFile ¶ added in v1.25.0
CreateFlockFile creates flock.lock file in the directory dir and returns the handler to the file.
func HardLinkFiles ¶
HardLinkFiles makes hard links for all the files from srcDir in dstDir.
func IsDirOrSymlink ¶
IsDirOrSymlink returns true if fi is directory or symlink.
func IsPathExist ¶
IsPathExist returns whether the given path exists.
func IsTemporaryFileName ¶ added in v1.25.0
IsTemporaryFileName returns true if fn matches temporary file name pattern from WriteFileAtomically.
func MkdirAllFailIfExist ¶
MkdirAllFailIfExist creates the given path dir if it isn't exist.
Returns error if path already exists.
func MkdirAllIfNotExist ¶
MkdirAllIfNotExist creates the given path dir if it isn't exist.
func MustFileSize ¶ added in v1.21.2
MustFileSize returns file size for the given path.
func MustGetFreeSpace ¶ added in v1.27.0
MustGetFreeSpace returns free space for the given directory path.
func MustRemoveAll ¶ added in v1.19.0
func MustRemoveAll(path string)
MustRemoveAll removes path with all the contents.
It properly handles NFS issue https://github.com/VictoriaMetrics/VictoriaMetrics/issues/61 .
func MustRemoveAllWithDoneCallback ¶ added in v1.30.3
func MustRemoveAllWithDoneCallback(path string, done func())
MustRemoveAllWithDoneCallback removes path with all the contents.
done is called after the path is successfully removed.
done may be called after the function returns for NFS path. See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/61.
func MustStopDirRemover ¶ added in v1.27.2
func MustStopDirRemover()
MustStopDirRemover must be called in the end of graceful shutdown in order to wait for removing the remaining directories from removeDirCh.
It is expected that nobody calls MustRemoveAll when MustStopDirRemover is called.
func MustSyncPath ¶ added in v1.19.2
func MustSyncPath(path string)
MustSyncPath syncs contents of the given path.
func ReadFullData ¶
ReadFullData reads len(data) bytes from r.
func RemoveDirContents ¶
func RemoveDirContents(dir string)
RemoveDirContents removes all the contents of the given dir if it exists.
It doesn't remove the dir itself, so the dir may be mounted to a separate partition.
func SymlinkRelative ¶
SymlinkRelative creates relative symlink for srcPath in dstPath.
func WriteFileAtomically ¶ added in v1.25.0
WriteFileAtomically atomically writes data to the given file path.
WriteFileAtomically returns only after the file is fully written and synced to the underlying storage.
Types ¶
type MustReadAtCloser ¶ added in v1.33.0
type MustReadAtCloser interface { // MustReadAt must read len(p) bytes from offset off to p. MustReadAt(p []byte, off int64) // MustClose must close the reader. MustClose() }
MustReadAtCloser is rand-access read interface.
type ReaderAt ¶
type ReaderAt struct {
// contains filtered or unexported fields
}
ReaderAt implements rand-access reader.
func OpenReaderAt ¶
OpenReaderAt opens ReaderAt for reading from filename.
MustClose must be called on the returned ReaderAt when it is no longer needed.
func (*ReaderAt) MustFadviseSequentialRead ¶ added in v1.33.0
MustFadviseSequentialRead hints the OS that f is read mostly sequentially.
if prefetch is set, then the OS is hinted to prefetch f data.
func (*ReaderAt) MustReadAt ¶ added in v1.33.0
MustReadAt reads len(p) bytes at off from r.