2020-09-28 21:29:04 +00:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
2023-05-03 08:47:02 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
2020-09-28 21:29:04 +00:00
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
|
|
|
func freeSpace(stat unix.Statfs_t) uint64 {
|
|
|
|
return uint64(stat.F_bavail) * uint64(stat.F_bsize)
|
|
|
|
}
|
2023-05-03 08:47:02 +00:00
|
|
|
|
|
|
|
func mustRemoveDirAtomic(dir string) {
|
2024-02-24 00:07:51 +00:00
|
|
|
n := atomicDirRemoveCounter.Add(1)
|
2023-05-03 08:47:02 +00:00
|
|
|
tmpDir := fmt.Sprintf("%s.must-remove.%d", dir, n)
|
|
|
|
if err := os.Rename(dir, tmpDir); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot move %s to %s: %s", dir, tmpDir, err)
|
|
|
|
}
|
|
|
|
MustRemoveAll(tmpDir)
|
|
|
|
}
|