storj/storage/filestore/dir_unix.go
Ethan Adams 27c6c6aeae
ci: Golangci lint v1.43.0 changes (#4307)
Co-authored-by: Stefan Benten <mail@stefan-benten.de>
2021-12-09 20:49:48 +01:00

45 lines
1.0 KiB
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
//go:build !windows
// +build !windows
package filestore
import (
"errors"
"fmt"
"os"
"golang.org/x/sys/unix"
)
func isBusy(err error) bool {
err = underlyingError(err)
return errors.Is(err, unix.EBUSY)
}
func diskInfoFromPath(path string) (info DiskInfo, err error) {
var stat unix.Statfs_t
err = unix.Statfs(path, &stat)
if err != nil {
return DiskInfo{"", -1}, err
}
// the Bsize size depends on the OS and unconvert gives a false-positive
availableSpace := int64(stat.Bavail) * int64(stat.Bsize) //nolint: unconvert
filesystemID := fmt.Sprintf("%08x%08x", stat.Fsid.Val[0], stat.Fsid.Val[1])
return DiskInfo{filesystemID, availableSpace}, nil
}
// rename renames oldpath to newpath.
func rename(oldpath, newpath string) error {
return os.Rename(oldpath, newpath)
}
// openFileReadOnly opens the file with read only.
func openFileReadOnly(path string, perm os.FileMode) (*os.File, error) {
return os.OpenFile(path, os.O_RDONLY, perm)
}