fs

package
v0.11.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 7, 2024 License: AGPL-3.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const FlockFilename = "flock.lock"

FlockFilename is the filename for the file created by MustCreateFlockFile().

Variables

This section is empty.

Functions

func GetFilepath

func GetFilepath(baseDir, path string) string

GetFilepath returns full path to file for the given baseDir and path.

func IsDirOrSymlink(de os.DirEntry) bool

IsDirOrSymlink returns true if de is directory or symlink.

func IsEmptyDir

func IsEmptyDir(path string) bool

IsEmptyDir returns true if path points to empty directory.

func IsPathExist

func IsPathExist(path string) bool

IsPathExist returns whether the given path exists.

func IsScheduledForRemoval

func IsScheduledForRemoval(filename string) bool

IsScheduledForRemoval returns true if the filename contains .must-remove. substring

func IsTemporaryFileName

func IsTemporaryFileName(fn string) bool

IsTemporaryFileName returns true if fn matches temporary file name pattern from MustWriteAtomic.

func MustClose

func MustClose(f *os.File)

MustClose must close the given file f.

func MustCopyDirectory

func MustCopyDirectory(srcPath, dstPath string)

MustCopyDirectory copies all the files in srcPath to dstPath.

func MustCopyFile

func MustCopyFile(srcPath, dstPath string)

MustCopyFile copies the file from srcPath to dstPath.

func MustCreateFlockFile

func MustCreateFlockFile(dir string) *os.File

MustCreateFlockFile creates FlockFilename file in the directory dir and returns the handler to the file.

func MustFileSize

func MustFileSize(path string) uint64

MustFileSize returns file size for the given path.

func MustGetFreeSpace

func MustGetFreeSpace(path string) uint64

MustGetFreeSpace returns free space for the given directory path.

func MustHardLinkFiles

func MustHardLinkFiles(srcDir, dstDir string)

MustHardLinkFiles makes hard links for all the files from srcDir in dstDir.

func MustMkdirFailIfExist

func MustMkdirFailIfExist(path string)

MustMkdirFailIfExist creates the given path dir if it isn't exist.

If the directory at the given path already exists, then the function logs the error and exits.

func MustMkdirIfNotExist

func MustMkdirIfNotExist(path string)

MustMkdirIfNotExist creates the given path dir if it isn't exist.

func MustReadDir

func MustReadDir(dir string) []os.DirEntry

MustReadDir reads directory entries at the given dir.

func MustRemoveAll

func MustRemoveAll(path string)

MustRemoveAll removes path with all the contents.

It properly fsyncs the parent directory after path removal.

It properly handles NFS issue https://github.com/VictoriaMetrics/VictoriaMetrics/issues/61 .

func MustRemoveDirAtomic

func MustRemoveDirAtomic(dir string)

MustRemoveDirAtomic removes the given dir atomically.

It uses the following algorithm:

  1. Atomically rename the "<dir>" to "<dir>.must-remove.<XYZ>", where <XYZ> is an unique number.
  2. Remove the "<dir>.must-remove.XYZ" in background.

If the process crashes after the step 1, then the directory must be removed on the next process start by calling MustRemoveTemporaryDirs on the parent directory.

func MustRemoveTemporaryDirs

func MustRemoveTemporaryDirs(dir string)

MustRemoveTemporaryDirs removes all the subdirectories with ".must-remove.<XYZ>" suffix.

Such directories may be left on unclean shutdown during MustRemoveDirAtomic call.

func MustStopDirRemover

func MustStopDirRemover()

MustStopDirRemover must be called in the end of graceful shutdown in order to wait for removing the remaining directories from removeDirConcurrencyCh.

It is expected that nobody calls MustRemoveAll when MustStopDirRemover is called.

func MustSymlinkRelative

func MustSymlinkRelative(srcPath, dstPath string)

MustSymlinkRelative creates relative symlink for srcPath in dstPath.

func MustSyncPath

func MustSyncPath(path string)

MustSyncPath syncs contents of the given path.

func ReadFileOrHTTP

func ReadFileOrHTTP(path string) ([]byte, error)

ReadFileOrHTTP reads path either from local filesystem or from http if path starts with http or https.

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.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL