mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
86e2789960
* update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-billy/v5 * update github.com/go-git/go-git/v5 * update github.com/go-redis/redis/v8 * update github.com/go-testfixtures/testfixtures/v3 * update github.com/jaytaylor/html2text * update github.com/json-iterator/go * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mattn/go-isatty * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/prometheus/client_golang * update github.com/unrolled/render * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * update github.com/yuin/goldmark-highlighting Co-authored-by: techknowlogick <techknowlogick@gitea.io>
87 lines
1.9 KiB
Go
Vendored
87 lines
1.9 KiB
Go
Vendored
// +build !windows,!plan9,!solaris,!aix
|
|
|
|
package bbolt
|
|
|
|
import (
|
|
"fmt"
|
|
"syscall"
|
|
"time"
|
|
"unsafe"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
// flock acquires an advisory lock on a file descriptor.
|
|
func flock(db *DB, exclusive bool, timeout time.Duration) error {
|
|
var t time.Time
|
|
if timeout != 0 {
|
|
t = time.Now()
|
|
}
|
|
fd := db.file.Fd()
|
|
flag := syscall.LOCK_NB
|
|
if exclusive {
|
|
flag |= syscall.LOCK_EX
|
|
} else {
|
|
flag |= syscall.LOCK_SH
|
|
}
|
|
for {
|
|
// Attempt to obtain an exclusive lock.
|
|
err := syscall.Flock(int(fd), flag)
|
|
if err == nil {
|
|
return nil
|
|
} else if err != syscall.EWOULDBLOCK {
|
|
return err
|
|
}
|
|
|
|
// If we timed out then return an error.
|
|
if timeout != 0 && time.Since(t) > timeout-flockRetryTimeout {
|
|
return ErrTimeout
|
|
}
|
|
|
|
// Wait for a bit and try again.
|
|
time.Sleep(flockRetryTimeout)
|
|
}
|
|
}
|
|
|
|
// funlock releases an advisory lock on a file descriptor.
|
|
func funlock(db *DB) error {
|
|
return syscall.Flock(int(db.file.Fd()), syscall.LOCK_UN)
|
|
}
|
|
|
|
// mmap memory maps a DB's data file.
|
|
func mmap(db *DB, sz int) error {
|
|
// Map the data file to memory.
|
|
b, err := unix.Mmap(int(db.file.Fd()), 0, sz, syscall.PROT_READ, syscall.MAP_SHARED|db.MmapFlags)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Advise the kernel that the mmap is accessed randomly.
|
|
err = unix.Madvise(b, syscall.MADV_RANDOM)
|
|
if err != nil && err != syscall.ENOSYS {
|
|
// Ignore not implemented error in kernel because it still works.
|
|
return fmt.Errorf("madvise: %s", err)
|
|
}
|
|
|
|
// Save the original byte slice and convert to a byte array pointer.
|
|
db.dataref = b
|
|
db.data = (*[maxMapSize]byte)(unsafe.Pointer(&b[0]))
|
|
db.datasz = sz
|
|
return nil
|
|
}
|
|
|
|
// munmap unmaps a DB's data file from memory.
|
|
func munmap(db *DB) error {
|
|
// Ignore the unmap if we have no mapped data.
|
|
if db.dataref == nil {
|
|
return nil
|
|
}
|
|
|
|
// Unmap using the original byte slice.
|
|
err := unix.Munmap(db.dataref)
|
|
db.dataref = nil
|
|
db.data = nil
|
|
db.datasz = 0
|
|
return err
|
|
}
|