Files
sqlite3/vfs/os_linux.go

72 lines
1.6 KiB
Go
Raw Permalink Normal View History

//go:build !(sqlite3_flock || sqlite3_nosys)
2023-10-17 14:04:23 +01:00
2023-06-01 18:11:37 +01:00
package vfs
2023-03-17 17:13:03 +00:00
import (
2024-04-24 01:07:17 +01:00
"math/rand"
2023-03-17 17:13:03 +00:00
"os"
2024-04-24 01:07:17 +01:00
"time"
2023-03-17 17:13:03 +00:00
"golang.org/x/sys/unix"
)
2024-03-21 15:04:59 +00:00
func osSync(file *os.File, _ /*fullsync*/, _ /*dataonly*/ bool) error {
// SQLite trusts Linux's fdatasync for all fsync's.
return unix.Fdatasync(int(file.Fd()))
2023-03-17 17:13:03 +00:00
}
2023-03-29 15:01:25 +01:00
func osAllocate(file *os.File, size int64) error {
2023-03-17 17:13:03 +00:00
if size == 0 {
return nil
}
return unix.Fallocate(int(file.Fd()), 0, 0, size)
}
2024-04-24 01:07:17 +01:00
func osUnlock(file *os.File, start, len int64) _ErrorCode {
err := unix.FcntlFlock(file.Fd(), unix.F_OFD_SETLK, &unix.Flock_t{
Type: unix.F_UNLCK,
Start: start,
Len: len,
})
if err != nil {
return _IOERR_UNLOCK
}
return _OK
}
func osLock(file *os.File, typ int16, start, len int64, timeout time.Duration, def _ErrorCode) _ErrorCode {
lock := unix.Flock_t{
Type: typ,
Start: start,
Len: len,
}
var err error
switch {
case timeout == 0:
err = unix.FcntlFlock(file.Fd(), unix.F_OFD_SETLK, &lock)
case timeout < 0:
err = unix.FcntlFlock(file.Fd(), unix.F_OFD_SETLKW, &lock)
default:
before := time.Now()
for {
err = unix.FcntlFlock(file.Fd(), unix.F_OFD_SETLK, &lock)
if errno, _ := err.(unix.Errno); errno != unix.EAGAIN {
break
}
if timeout < time.Since(before) {
break
}
osSleep(time.Duration(rand.Int63n(int64(time.Millisecond))))
}
}
return osLockErrorCode(err, def)
}
func osReadLock(file *os.File, start, len int64, timeout time.Duration) _ErrorCode {
return osLock(file, unix.F_RDLCK, start, len, timeout, _IOERR_RDLOCK)
}
func osWriteLock(file *os.File, start, len int64, timeout time.Duration) _ErrorCode {
return osLock(file, unix.F_WRLCK, start, len, timeout, _IOERR_LOCK)
}