2019-10-18 18:31:25 +08:00
|
|
|
// +build !linux,!windows
|
2017-01-09 03:01:46 +08:00
|
|
|
|
2020-04-12 05:27:25 +08:00
|
|
|
package backend
|
2017-01-09 03:01:46 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2019-09-12 21:18:21 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2017-01-09 03:01:46 +08:00
|
|
|
)
|
|
|
|
|
2020-04-12 05:27:25 +08:00
|
|
|
func CreateVolumeFile(fileName string, preallocate int64, memoryMapSizeMB uint32) (BackendStorageFile, error) {
|
2019-10-18 17:32:07 +08:00
|
|
|
file, e := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
|
2019-12-24 16:36:15 +08:00
|
|
|
if e != nil {
|
|
|
|
return nil, e
|
|
|
|
}
|
2017-01-09 03:01:46 +08:00
|
|
|
if preallocate > 0 {
|
2020-08-17 07:32:22 +08:00
|
|
|
glog.V(2).Infof("Preallocated disk space for %s is not supported", fileName)
|
2017-01-09 03:01:46 +08:00
|
|
|
}
|
2020-04-12 05:27:25 +08:00
|
|
|
return NewDiskFile(file), nil
|
2017-01-09 03:01:46 +08:00
|
|
|
}
|