1
0
mirror of https://github.com/fumiama/gozel.git synced 2026-06-05 00:10:24 +08:00
Files
gozel/internal/zecall/zecall_linux.go
2026-03-29 18:52:05 +08:00

66 lines
1.3 KiB
Go

package zecall
import (
"syscall"
"github.com/ebitengine/purego"
)
const (
zeLibraryName = "libze_loader.so.1"
)
var (
libZeLoader uintptr
procMap = map[string]uintptr{}
)
func init() {
if libZeLoader != 0 {
return
}
h, err := purego.Dlopen(zeLibraryName, purego.RTLD_LAZY|purego.RTLD_GLOBAL)
if err != nil {
libZeLoader = ^uintptr(0)
return
}
libZeLoader = h
}
// Register a process for calling. For generated init only. Not thread-safe.
func Register(name string) error {
if libZeLoader == 0 || ^libZeLoader == 0 {
return ErrZeCallNotInit
}
sym, err := purego.Dlsym(libZeLoader, name)
if err != nil {
return err
}
procMap[name] = sym
return nil
}
// Syscall invokes a registered proc by name. For generated call only.
// The go:uintptrescapes directive tells the compiler that args may contain
// pointers converted to uintptr, so the GC will keep them alive during the call.
//
//go:uintptrescapes
func Syscall(name string, args ...uintptr) (r1, r2 uintptr, err error) {
if libZeLoader == 0 || ^libZeLoader == 0 {
return 0, 0, ErrZeCallNotInit
}
fn, ok := procMap[name]
if !ok {
return 0, 0, ErrNoSuchProcess
}
var errno uintptr
r1, r2, errno = purego.SyscallN(fn, args...)
if r1 == 0 {
return
}
if errno != 0 {
err = syscall.Errno(errno)
}
return
}