storj/storage/filestore/dir_unix.go

43 lines
994 B
Go
Raw Normal View History

2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
2018-09-28 07:59:27 +01:00
// See LICENSE for copying information.
// +build !windows
package filestore
import (
"fmt"
"os"
2018-09-28 07:59:27 +01:00
"golang.org/x/sys/unix"
)
func isBusy(err error) bool {
err = underlyingError(err)
return 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
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)
}