我正在尝试调用 C++ 函数:
void TestFunc(void(*f)(void)) { f(); }
来自 Go 代码。
我真的希望我只是将一个 Go 函数传递给该函数。我知道我可以将它包装到一个类中,并使用 %feature("director") 解决它,但这不是我的最佳解决方案。
从我在此页面中看到的内容来看,Go 中的函数指针应该与 C++ 中的相同,因此我尝试了以下 .swig 文件:
%{
#include "test.h"
%}
%typemap(gotype) FUNC* "func()"
%typemap(in) FUNC* {
$1 = (void(*)(void))$input;
}
%apply FUNC* { void(*)(void) };
%include "test.h"
一开始我很惊讶它起作用了,但后来注意到它并不总是起作用:(。
例如,在这个 Go 代码中,它按预期工作:
import "fmt"
import "test_wrap"
func main() {
b := false
test_wrap.TestFunc(func() { b = true })
fmt.Println(b) // This actually DOES print "true"!
}
但在其他情况下,它不起作用。例如,这里:
import "fmt"
import "test_wrap"
func main() {
test_wrap.TestFunc(func() { fmt.Println("SUCCESS") })
fmt.Println("Done")
}
我实际上得到:
SUCCESS
SIGILL: illegal instruction
PC=0x4c20005d000
goroutine 1 [syscall]:
test_wrap._swig_wrap_TestFunc(0x400cb0, 0x400c2a)
base_go_test__wrap_gc.c:33 +0x32
test_wrap.TestFunc(0x400cb0, 0x2)
base_go_test__wrap.go:37 +0x25
main.main()
test.go:8 +0x2a
goroutine 2 [syscall]:
created by runtime.main
go/gc/src/pkg/runtime/proc.c:225
rax 0x0
rbx 0x0
rcx 0x0
rdx 0x8
rdi 0x4c200073050
rsi 0x4c20004c0f0
rbp 0x0
rsp 0x4c20004c100
r8 0x2
r9 0x4b0ae0
r10 0x4f5620
r11 0x4dbb88
r12 0x4f5530
r13 0x7fad5977f9c0
r14 0x0
r15 0x3
rip 0x4c20005d000
rflags 0x10202
cs 0x33
fs 0x0
gs 0x0
请注意它确实打印了“SUCCESS”,这意味着函数 DID 运行了,即使我将更复杂(和长)的代码放入这个函数中,它确实可以完美执行,但它没有回来:(。
请让我知道您的想法,以及如何解决这个问题。我不介意在 C++ 部分添加一些代码,但我真的希望 Go 部分看起来“干净”。
谢谢你。