summaryrefslogtreecommitdiff
path: root/vendor/github.com/ncruces/go-sqlite3/internal
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2025-03-09 17:47:56 +0100
committerLibravatar Terin Stock <terinjokes@gmail.com>2025-03-10 01:59:49 +0100
commit3ac1ee16f377d31a0fb80c8dae28b6239ac4229e (patch)
treef61faa581feaaeaba2542b9f2b8234a590684413 /vendor/github.com/ncruces/go-sqlite3/internal
parent[chore] update URLs to forked source (diff)
downloadgotosocial-3ac1ee16f377d31a0fb80c8dae28b6239ac4229e.tar.xz
[chore] remove vendor
Diffstat (limited to 'vendor/github.com/ncruces/go-sqlite3/internal')
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_other.go24
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_unix.go67
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_windows.go74
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk.go29
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk_other.go13
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk_unix.go50
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/compiler.go27
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/const.go117
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/error.go116
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/func.go202
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/handle.go70
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/json.go50
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/math.go29
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/mem.go145
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_other.go5
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_unix.go87
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_windows.go51
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/module.go25
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/pointer.go11
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/reflect.go10
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/internal/util/set.go12
21 files changed, 0 insertions, 1214 deletions
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_other.go b/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_other.go
deleted file mode 100644
index b420acc45..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_other.go
+++ /dev/null
@@ -1,24 +0,0 @@
-//go:build !unix && !windows
-
-package alloc
-
-import "github.com/tetratelabs/wazero/experimental"
-
-func NewMemory(cap, max uint64) experimental.LinearMemory {
- return &sliceMemory{make([]byte, 0, cap)}
-}
-
-type sliceMemory struct {
- buf []byte
-}
-
-func (b *sliceMemory) Free() {}
-
-func (b *sliceMemory) Reallocate(size uint64) []byte {
- if cap := uint64(cap(b.buf)); size > cap {
- b.buf = append(b.buf[:cap], make([]byte, size-cap)...)
- } else {
- b.buf = b.buf[:size]
- }
- return b.buf
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_unix.go b/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_unix.go
deleted file mode 100644
index a00dbbf24..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_unix.go
+++ /dev/null
@@ -1,67 +0,0 @@
-//go:build unix
-
-package alloc
-
-import (
- "math"
-
- "github.com/tetratelabs/wazero/experimental"
- "golang.org/x/sys/unix"
-)
-
-func NewMemory(_, max uint64) experimental.LinearMemory {
- // Round up to the page size.
- rnd := uint64(unix.Getpagesize() - 1)
- max = (max + rnd) &^ rnd
-
- if max > math.MaxInt {
- // This ensures int(max) overflows to a negative value,
- // and unix.Mmap returns EINVAL.
- max = math.MaxUint64
- }
-
- // Reserve max bytes of address space, to ensure we won't need to move it.
- // A protected, private, anonymous mapping should not commit memory.
- b, err := unix.Mmap(-1, 0, int(max), unix.PROT_NONE, unix.MAP_PRIVATE|unix.MAP_ANON)
- if err != nil {
- panic(err)
- }
- return &mmappedMemory{buf: b[:0]}
-}
-
-// The slice covers the entire mmapped memory:
-// - len(buf) is the already committed memory,
-// - cap(buf) is the reserved address space.
-type mmappedMemory struct {
- buf []byte
-}
-
-func (m *mmappedMemory) Reallocate(size uint64) []byte {
- com := uint64(len(m.buf))
- res := uint64(cap(m.buf))
- if com < size && size <= res {
- // Round up to the page size.
- rnd := uint64(unix.Getpagesize() - 1)
- new := (size + rnd) &^ rnd
-
- // Commit additional memory up to new bytes.
- err := unix.Mprotect(m.buf[com:new], unix.PROT_READ|unix.PROT_WRITE)
- if err != nil {
- return nil
- }
-
- // Update committed memory.
- m.buf = m.buf[:new]
- }
- // Limit returned capacity because bytes beyond
- // len(m.buf) have not yet been committed.
- return m.buf[:size:len(m.buf)]
-}
-
-func (m *mmappedMemory) Free() {
- err := unix.Munmap(m.buf[:cap(m.buf)])
- if err != nil {
- panic(err)
- }
- m.buf = nil
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_windows.go b/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_windows.go
deleted file mode 100644
index 6bfc73a0c..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/alloc/alloc_windows.go
+++ /dev/null
@@ -1,74 +0,0 @@
-package alloc
-
-import (
- "math"
- "reflect"
- "unsafe"
-
- "github.com/tetratelabs/wazero/experimental"
- "golang.org/x/sys/windows"
-)
-
-func NewMemory(_, max uint64) experimental.LinearMemory {
- // Round up to the page size.
- rnd := uint64(windows.Getpagesize() - 1)
- max = (max + rnd) &^ rnd
-
- if max > math.MaxInt {
- // This ensures uintptr(max) overflows to a large value,
- // and windows.VirtualAlloc returns an error.
- max = math.MaxUint64
- }
-
- // Reserve max bytes of address space, to ensure we won't need to move it.
- // This does not commit memory.
- r, err := windows.VirtualAlloc(0, uintptr(max), windows.MEM_RESERVE, windows.PAGE_READWRITE)
- if err != nil {
- panic(err)
- }
-
- mem := virtualMemory{addr: r}
- // SliceHeader, although deprecated, avoids a go vet warning.
- sh := (*reflect.SliceHeader)(unsafe.Pointer(&mem.buf))
- sh.Cap = int(max)
- sh.Data = r
- return &mem
-}
-
-// The slice covers the entire mmapped memory:
-// - len(buf) is the already committed memory,
-// - cap(buf) is the reserved address space.
-type virtualMemory struct {
- buf []byte
- addr uintptr
-}
-
-func (m *virtualMemory) Reallocate(size uint64) []byte {
- com := uint64(len(m.buf))
- res := uint64(cap(m.buf))
- if com < size && size <= res {
- // Round up to the page size.
- rnd := uint64(windows.Getpagesize() - 1)
- new := (size + rnd) &^ rnd
-
- // Commit additional memory up to new bytes.
- _, err := windows.VirtualAlloc(m.addr, uintptr(new), windows.MEM_COMMIT, windows.PAGE_READWRITE)
- if err != nil {
- return nil
- }
-
- // Update committed memory.
- m.buf = m.buf[:new]
- }
- // Limit returned capacity because bytes beyond
- // len(m.buf) have not yet been committed.
- return m.buf[:size:len(m.buf)]
-}
-
-func (m *virtualMemory) Free() {
- err := windows.VirtualFree(m.addr, 0, windows.MEM_RELEASE)
- if err != nil {
- panic(err)
- }
- m.addr = 0
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk.go b/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk.go
deleted file mode 100644
index 3c8d782d7..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk.go
+++ /dev/null
@@ -1,29 +0,0 @@
-package dotlk
-
-import (
- "errors"
- "io/fs"
- "os"
-)
-
-// LockShm creates a directory on disk to prevent SQLite
-// from using this path for a shared memory file.
-func LockShm(name string) error {
- err := os.Mkdir(name, 0777)
- if errors.Is(err, fs.ErrExist) {
- s, err := os.Lstat(name)
- if err == nil && s.IsDir() {
- return nil
- }
- }
- return err
-}
-
-// Unlock removes the lock or shared memory file.
-func Unlock(name string) error {
- err := os.Remove(name)
- if errors.Is(err, fs.ErrNotExist) {
- return nil
- }
- return err
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk_other.go b/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk_other.go
deleted file mode 100644
index 5399a5f8a..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk_other.go
+++ /dev/null
@@ -1,13 +0,0 @@
-//go:build !unix
-
-package dotlk
-
-import "os"
-
-// TryLock returns nil if it acquired the lock,
-// fs.ErrExist if another process has the lock.
-func TryLock(name string) error {
- f, err := os.OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
- f.Close()
- return err
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk_unix.go b/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk_unix.go
deleted file mode 100644
index 177ab30bb..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/dotlk/dotlk_unix.go
+++ /dev/null
@@ -1,50 +0,0 @@
-//go:build unix
-
-package dotlk
-
-import (
- "errors"
- "io/fs"
- "os"
- "strconv"
-
- "golang.org/x/sys/unix"
-)
-
-// TryLock returns nil if it acquired the lock,
-// fs.ErrExist if another process has the lock.
-func TryLock(name string) error {
- for retry := true; retry; retry = false {
- f, err := os.OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
- if err == nil {
- f.WriteString(strconv.Itoa(os.Getpid()))
- f.Close()
- return nil
- }
- if !errors.Is(err, fs.ErrExist) {
- return err
- }
- if !removeStale(name) {
- break
- }
- }
- return fs.ErrExist
-}
-
-func removeStale(name string) bool {
- buf, err := os.ReadFile(name)
- if err != nil {
- return errors.Is(err, fs.ErrNotExist)
- }
-
- pid, err := strconv.Atoi(string(buf))
- if err != nil {
- return false
- }
- if unix.Kill(pid, 0) == nil {
- return false
- }
-
- err = os.Remove(name)
- return err == nil || errors.Is(err, fs.ErrNotExist)
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/compiler.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/compiler.go
deleted file mode 100644
index aeefcced9..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/compiler.go
+++ /dev/null
@@ -1,27 +0,0 @@
-package util
-
-import (
- "runtime"
-
- "golang.org/x/sys/cpu"
-)
-
-func CompilerSupported() bool {
- switch runtime.GOOS {
- case "linux", "android",
- "windows", "darwin",
- "freebsd", "netbsd", "dragonfly",
- "solaris", "illumos":
- break
- default:
- return false
- }
- switch runtime.GOARCH {
- case "amd64":
- return cpu.X86.HasSSE41
- case "arm64":
- return true
- default:
- return false
- }
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/const.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/const.go
deleted file mode 100644
index 5e89018dd..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/const.go
+++ /dev/null
@@ -1,117 +0,0 @@
-package util
-
-// https://sqlite.com/rescode.html
-const (
- OK = 0 /* Successful result */
-
- ERROR = 1 /* Generic error */
- INTERNAL = 2 /* Internal logic error in SQLite */
- PERM = 3 /* Access permission denied */
- ABORT = 4 /* Callback routine requested an abort */
- BUSY = 5 /* The database file is locked */
- LOCKED = 6 /* A table in the database is locked */
- NOMEM = 7 /* A malloc() failed */
- READONLY = 8 /* Attempt to write a readonly database */
- INTERRUPT = 9 /* Operation terminated by sqlite3_interrupt() */
- IOERR = 10 /* Some kind of disk I/O error occurred */
- CORRUPT = 11 /* The database disk image is malformed */
- NOTFOUND = 12 /* Unknown opcode in sqlite3_file_control() */
- FULL = 13 /* Insertion failed because database is full */
- CANTOPEN = 14 /* Unable to open the database file */
- PROTOCOL = 15 /* Database lock protocol error */
- EMPTY = 16 /* Internal use only */
- SCHEMA = 17 /* The database schema changed */
- TOOBIG = 18 /* String or BLOB exceeds size limit */
- CONSTRAINT = 19 /* Abort due to constraint violation */
- MISMATCH = 20 /* Data type mismatch */
- MISUSE = 21 /* Library used incorrectly */
- NOLFS = 22 /* Uses OS features not supported on host */
- AUTH = 23 /* Authorization denied */
- FORMAT = 24 /* Not used */
- RANGE = 25 /* 2nd parameter to sqlite3_bind out of range */
- NOTADB = 26 /* File opened that is not a database file */
- NOTICE = 27 /* Notifications from sqlite3_log() */
- WARNING = 28 /* Warnings from sqlite3_log() */
-
- ROW = 100 /* sqlite3_step() has another row ready */
- DONE = 101 /* sqlite3_step() has finished executing */
-
- ERROR_MISSING_COLLSEQ = ERROR | (1 << 8)
- ERROR_RETRY = ERROR | (2 << 8)
- ERROR_SNAPSHOT = ERROR | (3 << 8)
- IOERR_READ = IOERR | (1 << 8)
- IOERR_SHORT_READ = IOERR | (2 << 8)
- IOERR_WRITE = IOERR | (3 << 8)
- IOERR_FSYNC = IOERR | (4 << 8)
- IOERR_DIR_FSYNC = IOERR | (5 << 8)
- IOERR_TRUNCATE = IOERR | (6 << 8)
- IOERR_FSTAT = IOERR | (7 << 8)
- IOERR_UNLOCK = IOERR | (8 << 8)
- IOERR_RDLOCK = IOERR | (9 << 8)
- IOERR_DELETE = IOERR | (10 << 8)
- IOERR_BLOCKED = IOERR | (11 << 8)
- IOERR_NOMEM = IOERR | (12 << 8)
- IOERR_ACCESS = IOERR | (13 << 8)
- IOERR_CHECKRESERVEDLOCK = IOERR | (14 << 8)
- IOERR_LOCK = IOERR | (15 << 8)
- IOERR_CLOSE = IOERR | (16 << 8)
- IOERR_DIR_CLOSE = IOERR | (17 << 8)
- IOERR_SHMOPEN = IOERR | (18 << 8)
- IOERR_SHMSIZE = IOERR | (19 << 8)
- IOERR_SHMLOCK = IOERR | (20 << 8)
- IOERR_SHMMAP = IOERR | (21 << 8)
- IOERR_SEEK = IOERR | (22 << 8)
- IOERR_DELETE_NOENT = IOERR | (23 << 8)
- IOERR_MMAP = IOERR | (24 << 8)
- IOERR_GETTEMPPATH = IOERR | (25 << 8)
- IOERR_CONVPATH = IOERR | (26 << 8)
- IOERR_VNODE = IOERR | (27 << 8)
- IOERR_AUTH = IOERR | (28 << 8)
- IOERR_BEGIN_ATOMIC = IOERR | (29 << 8)
- IOERR_COMMIT_ATOMIC = IOERR | (30 << 8)
- IOERR_ROLLBACK_ATOMIC = IOERR | (31 << 8)
- IOERR_DATA = IOERR | (32 << 8)
- IOERR_CORRUPTFS = IOERR | (33 << 8)
- IOERR_IN_PAGE = IOERR | (34 << 8)
- LOCKED_SHAREDCACHE = LOCKED | (1 << 8)
- LOCKED_VTAB = LOCKED | (2 << 8)
- BUSY_RECOVERY = BUSY | (1 << 8)
- BUSY_SNAPSHOT = BUSY | (2 << 8)
- BUSY_TIMEOUT = BUSY | (3 << 8)
- CANTOPEN_NOTEMPDIR = CANTOPEN | (1 << 8)
- CANTOPEN_ISDIR = CANTOPEN | (2 << 8)
- CANTOPEN_FULLPATH = CANTOPEN | (3 << 8)
- CANTOPEN_CONVPATH = CANTOPEN | (4 << 8)
- CANTOPEN_DIRTYWAL = CANTOPEN | (5 << 8) /* Not Used */
- CANTOPEN_SYMLINK = CANTOPEN | (6 << 8)
- CORRUPT_VTAB = CORRUPT | (1 << 8)
- CORRUPT_SEQUENCE = CORRUPT | (2 << 8)
- CORRUPT_INDEX = CORRUPT | (3 << 8)
- READONLY_RECOVERY = READONLY | (1 << 8)
- READONLY_CANTLOCK = READONLY | (2 << 8)
- READONLY_ROLLBACK = READONLY | (3 << 8)
- READONLY_DBMOVED = READONLY | (4 << 8)
- READONLY_CANTINIT = READONLY | (5 << 8)
- READONLY_DIRECTORY = READONLY | (6 << 8)
- ABORT_ROLLBACK = ABORT | (2 << 8)
- CONSTRAINT_CHECK = CONSTRAINT | (1 << 8)
- CONSTRAINT_COMMITHOOK = CONSTRAINT | (2 << 8)
- CONSTRAINT_FOREIGNKEY = CONSTRAINT | (3 << 8)
- CONSTRAINT_FUNCTION = CONSTRAINT | (4 << 8)
- CONSTRAINT_NOTNULL = CONSTRAINT | (5 << 8)
- CONSTRAINT_PRIMARYKEY = CONSTRAINT | (6 << 8)
- CONSTRAINT_TRIGGER = CONSTRAINT | (7 << 8)
- CONSTRAINT_UNIQUE = CONSTRAINT | (8 << 8)
- CONSTRAINT_VTAB = CONSTRAINT | (9 << 8)
- CONSTRAINT_ROWID = CONSTRAINT | (10 << 8)
- CONSTRAINT_PINNED = CONSTRAINT | (11 << 8)
- CONSTRAINT_DATATYPE = CONSTRAINT | (12 << 8)
- NOTICE_RECOVER_WAL = NOTICE | (1 << 8)
- NOTICE_RECOVER_ROLLBACK = NOTICE | (2 << 8)
- NOTICE_RBU = NOTICE | (3 << 8)
- WARNING_AUTOINDEX = WARNING | (1 << 8)
- AUTH_USER = AUTH | (1 << 8)
-
- OK_LOAD_PERMANENTLY = OK | (1 << 8)
- OK_SYMLINK = OK | (2 << 8) /* internal use only */
-)
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/error.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/error.go
deleted file mode 100644
index 2aecac96e..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/error.go
+++ /dev/null
@@ -1,116 +0,0 @@
-package util
-
-import (
- "runtime"
- "strconv"
-)
-
-type ErrorString string
-
-func (e ErrorString) Error() string { return string(e) }
-
-const (
- NilErr = ErrorString("sqlite3: invalid memory address or null pointer dereference")
- OOMErr = ErrorString("sqlite3: out of memory")
- RangeErr = ErrorString("sqlite3: index out of range")
- NoNulErr = ErrorString("sqlite3: missing NUL terminator")
- NoBinaryErr = ErrorString("sqlite3: no SQLite binary embed/set/loaded")
- BadBinaryErr = ErrorString("sqlite3: invalid SQLite binary embed/set/loaded")
- TimeErr = ErrorString("sqlite3: invalid time value")
- WhenceErr = ErrorString("sqlite3: invalid whence")
- OffsetErr = ErrorString("sqlite3: invalid offset")
- TailErr = ErrorString("sqlite3: multiple statements")
- IsolationErr = ErrorString("sqlite3: unsupported isolation level")
- ValueErr = ErrorString("sqlite3: unsupported value")
- NoVFSErr = ErrorString("sqlite3: no such vfs: ")
-)
-
-func AssertErr() ErrorString {
- msg := "sqlite3: assertion failed"
- if _, file, line, ok := runtime.Caller(1); ok {
- msg += " (" + file + ":" + strconv.Itoa(line) + ")"
- }
- return ErrorString(msg)
-}
-
-func ErrorCodeString(rc uint32) string {
- switch rc {
- case ABORT_ROLLBACK:
- return "sqlite3: abort due to ROLLBACK"
- case ROW:
- return "sqlite3: another row available"
- case DONE:
- return "sqlite3: no more rows available"
- }
- switch rc & 0xff {
- case OK:
- return "sqlite3: not an error"
- case ERROR:
- return "sqlite3: SQL logic error"
- case INTERNAL:
- break
- case PERM:
- return "sqlite3: access permission denied"
- case ABORT:
- return "sqlite3: query aborted"
- case BUSY:
- return "sqlite3: database is locked"
- case LOCKED:
- return "sqlite3: database table is locked"
- case NOMEM:
- return "sqlite3: out of memory"
- case READONLY:
- return "sqlite3: attempt to write a readonly database"
- case INTERRUPT:
- return "sqlite3: interrupted"
- case IOERR:
- return "sqlite3: disk I/O error"
- case CORRUPT:
- return "sqlite3: database disk image is malformed"
- case NOTFOUND:
- return "sqlite3: unknown operation"
- case FULL:
- return "sqlite3: database or disk is full"
- case CANTOPEN:
- return "sqlite3: unable to open database file"
- case PROTOCOL:
- return "sqlite3: locking protocol"
- case FORMAT:
- break
- case SCHEMA:
- return "sqlite3: database schema has changed"
- case TOOBIG:
- return "sqlite3: string or blob too big"
- case CONSTRAINT:
- return "sqlite3: constraint failed"
- case MISMATCH:
- return "sqlite3: datatype mismatch"
- case MISUSE:
- return "sqlite3: bad parameter or other API misuse"
- case NOLFS:
- break
- case AUTH:
- return "sqlite3: authorization denied"
- case EMPTY:
- break
- case RANGE:
- return "sqlite3: column index out of range"
- case NOTADB:
- return "sqlite3: file is not a database"
- case NOTICE:
- return "sqlite3: notification message"
- case WARNING:
- return "sqlite3: warning message"
- }
- return "sqlite3: unknown error"
-}
-
-type ErrorJoiner []error
-
-func (j *ErrorJoiner) Join(errs ...error) {
- for _, err := range errs {
- if err != nil {
- *j = append(*j, err)
- }
- }
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/func.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/func.go
deleted file mode 100644
index e705f3181..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/func.go
+++ /dev/null
@@ -1,202 +0,0 @@
-package util
-
-import (
- "context"
-
- "github.com/tetratelabs/wazero"
- "github.com/tetratelabs/wazero/api"
-)
-
-type funcVI[T0 i32] func(context.Context, api.Module, T0)
-
-func (fn funcVI[T0]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- fn(ctx, mod, T0(stack[0]))
-}
-
-func ExportFuncVI[T0 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0)) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcVI[T0](fn),
- []api.ValueType{api.ValueTypeI32}, nil).
- Export(name)
-}
-
-type funcVII[T0, T1 i32] func(context.Context, api.Module, T0, T1)
-
-func (fn funcVII[T0, T1]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[1] // prevent bounds check on every slice access
- fn(ctx, mod, T0(stack[0]), T1(stack[1]))
-}
-
-func ExportFuncVII[T0, T1 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1)) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcVII[T0, T1](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32}, nil).
- Export(name)
-}
-
-type funcVIII[T0, T1, T2 i32] func(context.Context, api.Module, T0, T1, T2)
-
-func (fn funcVIII[T0, T1, T2]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[2] // prevent bounds check on every slice access
- fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2]))
-}
-
-func ExportFuncVIII[T0, T1, T2 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2)) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcVIII[T0, T1, T2](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32}, nil).
- Export(name)
-}
-
-type funcVIIII[T0, T1, T2, T3 i32] func(context.Context, api.Module, T0, T1, T2, T3)
-
-func (fn funcVIIII[T0, T1, T2, T3]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[3] // prevent bounds check on every slice access
- fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2]), T3(stack[3]))
-}
-
-func ExportFuncVIIII[T0, T1, T2, T3 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2, T3)) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcVIIII[T0, T1, T2, T3](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32}, nil).
- Export(name)
-}
-
-type funcVIIIII[T0, T1, T2, T3, T4 i32] func(context.Context, api.Module, T0, T1, T2, T3, T4)
-
-func (fn funcVIIIII[T0, T1, T2, T3, T4]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[4] // prevent bounds check on every slice access
- fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2]), T3(stack[3]), T4(stack[4]))
-}
-
-func ExportFuncVIIIII[T0, T1, T2, T3, T4 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2, T3, T4)) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcVIIIII[T0, T1, T2, T3, T4](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32}, nil).
- Export(name)
-}
-
-type funcVIIIIJ[T0, T1, T2, T3 i32, T4 i64] func(context.Context, api.Module, T0, T1, T2, T3, T4)
-
-func (fn funcVIIIIJ[T0, T1, T2, T3, T4]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[4] // prevent bounds check on every slice access
- fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2]), T3(stack[3]), T4(stack[4]))
-}
-
-func ExportFuncVIIIIJ[T0, T1, T2, T3 i32, T4 i64](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2, T3, T4)) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcVIIIIJ[T0, T1, T2, T3, T4](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI64}, nil).
- Export(name)
-}
-
-type funcII[TR, T0 i32] func(context.Context, api.Module, T0) TR
-
-func (fn funcII[TR, T0]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- stack[0] = uint64(fn(ctx, mod, T0(stack[0])))
-}
-
-func ExportFuncII[TR, T0 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0) TR) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcII[TR, T0](fn),
- []api.ValueType{api.ValueTypeI32}, []api.ValueType{api.ValueTypeI32}).
- Export(name)
-}
-
-type funcIII[TR, T0, T1 i32] func(context.Context, api.Module, T0, T1) TR
-
-func (fn funcIII[TR, T0, T1]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[1] // prevent bounds check on every slice access
- stack[0] = uint64(fn(ctx, mod, T0(stack[0]), T1(stack[1])))
-}
-
-func ExportFuncIII[TR, T0, T1 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1) TR) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcIII[TR, T0, T1](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32}, []api.ValueType{api.ValueTypeI32}).
- Export(name)
-}
-
-type funcIIII[TR, T0, T1, T2 i32] func(context.Context, api.Module, T0, T1, T2) TR
-
-func (fn funcIIII[TR, T0, T1, T2]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[2] // prevent bounds check on every slice access
- stack[0] = uint64(fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2])))
-}
-
-func ExportFuncIIII[TR, T0, T1, T2 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2) TR) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcIIII[TR, T0, T1, T2](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32}, []api.ValueType{api.ValueTypeI32}).
- Export(name)
-}
-
-type funcIIIII[TR, T0, T1, T2, T3 i32] func(context.Context, api.Module, T0, T1, T2, T3) TR
-
-func (fn funcIIIII[TR, T0, T1, T2, T3]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[3] // prevent bounds check on every slice access
- stack[0] = uint64(fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2]), T3(stack[3])))
-}
-
-func ExportFuncIIIII[TR, T0, T1, T2, T3 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2, T3) TR) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcIIIII[TR, T0, T1, T2, T3](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32}, []api.ValueType{api.ValueTypeI32}).
- Export(name)
-}
-
-type funcIIIIII[TR, T0, T1, T2, T3, T4 i32] func(context.Context, api.Module, T0, T1, T2, T3, T4) TR
-
-func (fn funcIIIIII[TR, T0, T1, T2, T3, T4]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[4] // prevent bounds check on every slice access
- stack[0] = uint64(fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2]), T3(stack[3]), T4(stack[4])))
-}
-
-func ExportFuncIIIIII[TR, T0, T1, T2, T3, T4 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2, T3, T4) TR) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcIIIIII[TR, T0, T1, T2, T3, T4](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32}, []api.ValueType{api.ValueTypeI32}).
- Export(name)
-}
-
-type funcIIIIIII[TR, T0, T1, T2, T3, T4, T5 i32] func(context.Context, api.Module, T0, T1, T2, T3, T4, T5) TR
-
-func (fn funcIIIIIII[TR, T0, T1, T2, T3, T4, T5]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[5] // prevent bounds check on every slice access
- stack[0] = uint64(fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2]), T3(stack[3]), T4(stack[4]), T5(stack[5])))
-}
-
-func ExportFuncIIIIIII[TR, T0, T1, T2, T3, T4, T5 i32](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2, T3, T4, T5) TR) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcIIIIIII[TR, T0, T1, T2, T3, T4, T5](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32}, []api.ValueType{api.ValueTypeI32}).
- Export(name)
-}
-
-type funcIIIIJ[TR, T0, T1, T2 i32, T3 i64] func(context.Context, api.Module, T0, T1, T2, T3) TR
-
-func (fn funcIIIIJ[TR, T0, T1, T2, T3]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[3] // prevent bounds check on every slice access
- stack[0] = uint64(fn(ctx, mod, T0(stack[0]), T1(stack[1]), T2(stack[2]), T3(stack[3])))
-}
-
-func ExportFuncIIIIJ[TR, T0, T1, T2 i32, T3 i64](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1, T2, T3) TR) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcIIIIJ[TR, T0, T1, T2, T3](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI32, api.ValueTypeI64}, []api.ValueType{api.ValueTypeI32}).
- Export(name)
-}
-
-type funcIIJ[TR, T0 i32, T1 i64] func(context.Context, api.Module, T0, T1) TR
-
-func (fn funcIIJ[TR, T0, T1]) Call(ctx context.Context, mod api.Module, stack []uint64) {
- _ = stack[1] // prevent bounds check on every slice access
- stack[0] = uint64(fn(ctx, mod, T0(stack[0]), T1(stack[1])))
-}
-
-func ExportFuncIIJ[TR, T0 i32, T1 i64](mod wazero.HostModuleBuilder, name string, fn func(context.Context, api.Module, T0, T1) TR) {
- mod.NewFunctionBuilder().
- WithGoModuleFunction(funcIIJ[TR, T0, T1](fn),
- []api.ValueType{api.ValueTypeI32, api.ValueTypeI64}, []api.ValueType{api.ValueTypeI32}).
- Export(name)
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/handle.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/handle.go
deleted file mode 100644
index f9f39b449..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/handle.go
+++ /dev/null
@@ -1,70 +0,0 @@
-package util
-
-import (
- "context"
- "io"
-)
-
-type handleState struct {
- handles []any
- holes int
-}
-
-func (s *handleState) CloseNotify(ctx context.Context, exitCode uint32) {
- for _, h := range s.handles {
- if c, ok := h.(io.Closer); ok {
- c.Close()
- }
- }
- s.handles = nil
- s.holes = 0
-}
-
-func GetHandle(ctx context.Context, id Ptr_t) any {
- if id == 0 {
- return nil
- }
- s := ctx.Value(moduleKey{}).(*moduleState)
- return s.handles[^id]
-}
-
-func DelHandle(ctx context.Context, id Ptr_t) error {
- if id == 0 {
- return nil
- }
- s := ctx.Value(moduleKey{}).(*moduleState)
- a := s.handles[^id]
- s.handles[^id] = nil
- if l := Ptr_t(len(s.handles)); l == ^id {
- s.handles = s.handles[:l-1]
- } else {
- s.holes++
- }
- if c, ok := a.(io.Closer); ok {
- return c.Close()
- }
- return nil
-}
-
-func AddHandle(ctx context.Context, a any) Ptr_t {
- if a == nil {
- panic(NilErr)
- }
-
- s := ctx.Value(moduleKey{}).(*moduleState)
-
- // Find an empty slot.
- if s.holes > cap(s.handles)-len(s.handles) {
- for id, h := range s.handles {
- if h == nil {
- s.holes--
- s.handles[id] = a
- return ^Ptr_t(id)
- }
- }
- }
-
- // Add a new slot.
- s.handles = append(s.handles, a)
- return -Ptr_t(len(s.handles))
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/json.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/json.go
deleted file mode 100644
index 846237405..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/json.go
+++ /dev/null
@@ -1,50 +0,0 @@
-package util
-
-import (
- "encoding/json"
- "math"
- "strconv"
- "time"
- "unsafe"
-)
-
-type JSON struct{ Value any }
-
-func (j JSON) Scan(value any) error {
- var buf []byte
-
- switch v := value.(type) {
- case []byte:
- buf = v
- case string:
- buf = unsafe.Slice(unsafe.StringData(v), len(v))
- case int64:
- buf = strconv.AppendInt(nil, v, 10)
- case float64:
- buf = AppendNumber(nil, v)
- case time.Time:
- buf = append(buf, '"')
- buf = v.AppendFormat(buf, time.RFC3339Nano)
- buf = append(buf, '"')
- case nil:
- buf = []byte("null")
- default:
- panic(AssertErr())
- }
-
- return json.Unmarshal(buf, j.Value)
-}
-
-func AppendNumber(dst []byte, f float64) []byte {
- switch {
- case math.IsNaN(f):
- dst = append(dst, "null"...)
- case math.IsInf(f, 1):
- dst = append(dst, "9.0e999"...)
- case math.IsInf(f, -1):
- dst = append(dst, "-9.0e999"...)
- default:
- return strconv.AppendFloat(dst, f, 'g', -1, 64)
- }
- return dst
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/math.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/math.go
deleted file mode 100644
index a95f73764..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/math.go
+++ /dev/null
@@ -1,29 +0,0 @@
-package util
-
-import "math"
-
-func abs(n int) int {
- if n < 0 {
- return -n
- }
- return n
-}
-
-func GCD(m, n int) int {
- for n != 0 {
- m, n = n, m%n
- }
- return abs(m)
-}
-
-func LCM(m, n int) int {
- if n == 0 {
- return 0
- }
- return abs(n) * (abs(m) / GCD(m, n))
-}
-
-// https://developer.nvidia.com/blog/lerp-faster-cuda/
-func Lerp(v0, v1, t float64) float64 {
- return math.FMA(t, v1, math.FMA(-t, v0, v0))
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/mem.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/mem.go
deleted file mode 100644
index bfb1a6440..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/mem.go
+++ /dev/null
@@ -1,145 +0,0 @@
-package util
-
-import (
- "bytes"
- "math"
-
- "github.com/tetratelabs/wazero/api"
-)
-
-const (
- PtrLen = 4
- IntLen = 4
-)
-
-type (
- i8 interface{ ~int8 | ~uint8 }
- i32 interface{ ~int32 | ~uint32 }
- i64 interface{ ~int64 | ~uint64 }
-
- Stk_t = uint64
- Ptr_t uint32
- Res_t int32
-)
-
-func View(mod api.Module, ptr Ptr_t, size int64) []byte {
- if ptr == 0 {
- panic(NilErr)
- }
- if size == 0 {
- return nil
- }
- if uint64(size) > math.MaxUint32 {
- panic(RangeErr)
- }
- buf, ok := mod.Memory().Read(uint32(ptr), uint32(size))
- if !ok {
- panic(RangeErr)
- }
- return buf
-}
-
-func Read[T i8](mod api.Module, ptr Ptr_t) T {
- if ptr == 0 {
- panic(NilErr)
- }
- v, ok := mod.Memory().ReadByte(uint32(ptr))
- if !ok {
- panic(RangeErr)
- }
- return T(v)
-}
-
-func Write[T i8](mod api.Module, ptr Ptr_t, v T) {
- if ptr == 0 {
- panic(NilErr)
- }
- ok := mod.Memory().WriteByte(uint32(ptr), uint8(v))
- if !ok {
- panic(RangeErr)
- }
-}
-
-func Read32[T i32](mod api.Module, ptr Ptr_t) T {
- if ptr == 0 {
- panic(NilErr)
- }
- v, ok := mod.Memory().ReadUint32Le(uint32(ptr))
- if !ok {
- panic(RangeErr)
- }
- return T(v)
-}
-
-func Write32[T i32](mod api.Module, ptr Ptr_t, v T) {
- if ptr == 0 {
- panic(NilErr)
- }
- ok := mod.Memory().WriteUint32Le(uint32(ptr), uint32(v))
- if !ok {
- panic(RangeErr)
- }
-}
-
-func Read64[T i64](mod api.Module, ptr Ptr_t) T {
- if ptr == 0 {
- panic(NilErr)
- }
- v, ok := mod.Memory().ReadUint64Le(uint32(ptr))
- if !ok {
- panic(RangeErr)
- }
- return T(v)
-}
-
-func Write64[T i64](mod api.Module, ptr Ptr_t, v T) {
- if ptr == 0 {
- panic(NilErr)
- }
- ok := mod.Memory().WriteUint64Le(uint32(ptr), uint64(v))
- if !ok {
- panic(RangeErr)
- }
-}
-
-func ReadFloat64(mod api.Module, ptr Ptr_t) float64 {
- return math.Float64frombits(Read64[uint64](mod, ptr))
-}
-
-func WriteFloat64(mod api.Module, ptr Ptr_t, v float64) {
- Write64(mod, ptr, math.Float64bits(v))
-}
-
-func ReadString(mod api.Module, ptr Ptr_t, maxlen int64) string {
- if ptr == 0 {
- panic(NilErr)
- }
- if maxlen <= 0 {
- return ""
- }
- mem := mod.Memory()
- maxlen = min(maxlen, math.MaxInt32-1) + 1
- buf, ok := mem.Read(uint32(ptr), uint32(maxlen))
- if !ok {
- buf, ok = mem.Read(uint32(ptr), mem.Size()-uint32(ptr))
- if !ok {
- panic(RangeErr)
- }
- }
- if i := bytes.IndexByte(buf, 0); i < 0 {
- panic(NoNulErr)
- } else {
- return string(buf[:i])
- }
-}
-
-func WriteBytes(mod api.Module, ptr Ptr_t, b []byte) {
- buf := View(mod, ptr, int64(len(b)))
- copy(buf, b)
-}
-
-func WriteString(mod api.Module, ptr Ptr_t, s string) {
- buf := View(mod, ptr, int64(len(s))+1)
- buf[len(s)] = 0
- copy(buf, s)
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_other.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_other.go
deleted file mode 100644
index 720977b8d..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_other.go
+++ /dev/null
@@ -1,5 +0,0 @@
-//go:build !unix
-
-package util
-
-type mmapState struct{}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_unix.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_unix.go
deleted file mode 100644
index 42a247529..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_unix.go
+++ /dev/null
@@ -1,87 +0,0 @@
-//go:build unix
-
-package util
-
-import (
- "context"
- "os"
- "unsafe"
-
- "github.com/tetratelabs/wazero/api"
- "golang.org/x/sys/unix"
-)
-
-type mmapState struct {
- regions []*MappedRegion
-}
-
-func (s *mmapState) new(ctx context.Context, mod api.Module, size int32) *MappedRegion {
- // Find unused region.
- for _, r := range s.regions {
- if !r.used && r.size == size {
- return r
- }
- }
-
- // Allocate page aligned memmory.
- alloc := mod.ExportedFunction("aligned_alloc")
- stack := [...]Stk_t{
- Stk_t(unix.Getpagesize()),
- Stk_t(size),
- }
- if err := alloc.CallWithStack(ctx, stack[:]); err != nil {
- panic(err)
- }
- if stack[0] == 0 {
- panic(OOMErr)
- }
-
- // Save the newly allocated region.
- ptr := Ptr_t(stack[0])
- buf := View(mod, ptr, int64(size))
- ret := &MappedRegion{
- Ptr: ptr,
- size: size,
- addr: unsafe.Pointer(&buf[0]),
- }
- s.regions = append(s.regions, ret)
- return ret
-}
-
-type MappedRegion struct {
- addr unsafe.Pointer
- Ptr Ptr_t
- size int32
- used bool
-}
-
-func MapRegion(ctx context.Context, mod api.Module, f *os.File, offset int64, size int32, readOnly bool) (*MappedRegion, error) {
- s := ctx.Value(moduleKey{}).(*moduleState)
- r := s.new(ctx, mod, size)
- err := r.mmap(f, offset, readOnly)
- if err != nil {
- return nil, err
- }
- return r, nil
-}
-
-func (r *MappedRegion) Unmap() error {
- // We can't munmap the region, otherwise it could be remaped.
- // Instead, convert it to a protected, private, anonymous mapping.
- // If successful, it can be reused for a subsequent mmap.
- _, err := unix.MmapPtr(-1, 0, r.addr, uintptr(r.size),
- unix.PROT_NONE, unix.MAP_PRIVATE|unix.MAP_FIXED|unix.MAP_ANON)
- r.used = err != nil
- return err
-}
-
-func (r *MappedRegion) mmap(f *os.File, offset int64, readOnly bool) error {
- prot := unix.PROT_READ
- if !readOnly {
- prot |= unix.PROT_WRITE
- }
- _, err := unix.MmapPtr(int(f.Fd()), offset, r.addr, uintptr(r.size),
- prot, unix.MAP_SHARED|unix.MAP_FIXED)
- r.used = err == nil
- return err
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_windows.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_windows.go
deleted file mode 100644
index 913a5f733..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/mmap_windows.go
+++ /dev/null
@@ -1,51 +0,0 @@
-package util
-
-import (
- "context"
- "os"
- "reflect"
- "unsafe"
-
- "github.com/tetratelabs/wazero/api"
- "golang.org/x/sys/windows"
-)
-
-type MappedRegion struct {
- windows.Handle
- Data []byte
- addr uintptr
-}
-
-func MapRegion(ctx context.Context, mod api.Module, f *os.File, offset int64, size int32) (*MappedRegion, error) {
- h, err := windows.CreateFileMapping(windows.Handle(f.Fd()), nil, windows.PAGE_READWRITE, 0, 0, nil)
- if h == 0 {
- return nil, err
- }
-
- a, err := windows.MapViewOfFile(h, windows.FILE_MAP_WRITE,
- uint32(offset>>32), uint32(offset), uintptr(size))
- if a == 0 {
- windows.CloseHandle(h)
- return nil, err
- }
-
- ret := &MappedRegion{Handle: h, addr: a}
- // SliceHeader, although deprecated, avoids a go vet warning.
- sh := (*reflect.SliceHeader)(unsafe.Pointer(&ret.Data))
- sh.Len = int(size)
- sh.Cap = int(size)
- sh.Data = a
- return ret, nil
-}
-
-func (r *MappedRegion) Unmap() error {
- if r.Data == nil {
- return nil
- }
- err := windows.UnmapViewOfFile(r.addr)
- if err != nil {
- return err
- }
- r.Data = nil
- return windows.CloseHandle(r.Handle)
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/module.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/module.go
deleted file mode 100644
index ba5754a32..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/module.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package util
-
-import (
- "context"
-
- "github.com/tetratelabs/wazero/experimental"
-
- "github.com/ncruces/go-sqlite3/internal/alloc"
-)
-
-type ConnKey struct{}
-
-type moduleKey struct{}
-type moduleState struct {
- mmapState
- handleState
-}
-
-func NewContext(ctx context.Context) context.Context {
- state := new(moduleState)
- ctx = experimental.WithMemoryAllocator(ctx, experimental.MemoryAllocatorFunc(alloc.NewMemory))
- ctx = experimental.WithCloseNotifier(ctx, state)
- ctx = context.WithValue(ctx, moduleKey{}, state)
- return ctx
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/pointer.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/pointer.go
deleted file mode 100644
index eae4dae17..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/pointer.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package util
-
-type Pointer[T any] struct{ Value T }
-
-func (p Pointer[T]) unwrap() any { return p.Value }
-
-type PointerUnwrap interface{ unwrap() any }
-
-func UnwrapPointer(p PointerUnwrap) any {
- return p.unwrap()
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/reflect.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/reflect.go
deleted file mode 100644
index 3104a7cf3..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/reflect.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package util
-
-import "reflect"
-
-func ReflectType(v reflect.Value) reflect.Type {
- if v.Kind() != reflect.Invalid {
- return v.Type()
- }
- return nil
-}
diff --git a/vendor/github.com/ncruces/go-sqlite3/internal/util/set.go b/vendor/github.com/ncruces/go-sqlite3/internal/util/set.go
deleted file mode 100644
index 9cfd5abd1..000000000
--- a/vendor/github.com/ncruces/go-sqlite3/internal/util/set.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package util
-
-type Set[E comparable] map[E]struct{}
-
-func (s Set[E]) Add(v E) {
- s[v] = struct{}{}
-}
-
-func (s Set[E]) Contains(v E) bool {
- _, ok := s[v]
- return ok
-}