mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 22:19:14 +00:00
64 lines
1.5 KiB
Go
64 lines
1.5 KiB
Go
//go:build linux || illumos
|
|
|
|
package sqlite3
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func (vfsOSMethods) unlock(file *os.File, start, len int64) xErrorCode {
|
|
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 (vfsOSMethods) lock(file *os.File, typ int16, start, len int64, timeout time.Duration, def xErrorCode) xErrorCode {
|
|
lock := unix.Flock_t{
|
|
Type: typ,
|
|
Start: start,
|
|
Len: len,
|
|
}
|
|
var err error
|
|
for {
|
|
err = unix.FcntlFlock(file.Fd(), unix.F_OFD_SETLK, &lock)
|
|
if errno, _ := err.(unix.Errno); errno != unix.EAGAIN {
|
|
break
|
|
}
|
|
if timeout < time.Millisecond {
|
|
break
|
|
}
|
|
timeout -= time.Millisecond
|
|
time.Sleep(time.Millisecond)
|
|
}
|
|
return vfsOS.lockErrorCode(err, def)
|
|
}
|
|
|
|
func (vfsOSMethods) readLock(file *os.File, start, len int64, timeout time.Duration) xErrorCode {
|
|
return vfsOS.lock(file, unix.F_RDLCK, start, len, timeout, IOERR_RDLOCK)
|
|
}
|
|
|
|
func (vfsOSMethods) writeLock(file *os.File, start, len int64, timeout time.Duration) xErrorCode {
|
|
return vfsOS.lock(file, unix.F_WRLCK, start, len, timeout, IOERR_LOCK)
|
|
}
|
|
|
|
func (vfsOSMethods) checkLock(file *os.File, start, len int64) (bool, xErrorCode) {
|
|
lock := unix.Flock_t{
|
|
Type: unix.F_RDLCK,
|
|
Start: start,
|
|
Len: len,
|
|
}
|
|
if unix.FcntlFlock(file.Fd(), unix.F_OFD_GETLK, &lock) != nil {
|
|
return false, IOERR_CHECKRESERVEDLOCK
|
|
}
|
|
return lock.Type != unix.F_UNLCK, _OK
|
|
}
|