尝试熟悉Go / C互操作,我想使用git2go / libgit2使用Redis backend读取git存储库的数据。
所以我提出了这个代码(剥离了错误处理等),它输出了一个我无法解决的编译错误:
./git.go:30: cannot use odbBackendC (type *C.struct_git_odb_backend) as type *git.C.struct_git_odb_backend in argument to git.NewOdbBackendFromC
显然编译器认为git.C.struct_git_odb_backend
和C.struct_git_odb_backend
是不同的类型,尽管它们是相同的 - 毕竟系统上只有一个libgit2。我该怎么做才能解决这个问题?
以下是完整列表:
package main
/*
#cgo LDFLAGS: -L ./libgit2-backends/redis -lgit2 -lhiredis -lgit2-redis
#include <git2.h>
extern int git_odb_backend_hiredis(git_odb_backend **backend_out, const char* prefix, const char* path, const char *host, int port, char* password);
extern int git_refdb_backend_hiredis(git_refdb_backend **backend_out, const char* prefix, const char* path, const char *host, int port, char* password);
*/
import "C"
import (
git "gopkg.in/libgit2/git2go.v23"
)
func ImportRepo(url string) {
odb, err := git.NewOdb();
var odbBackendC *C.git_odb_backend = nil
C.git_odb_backend_hiredis(&odbBackendC, C.CString("prefix_"), C.CString("path"), C.CString("localhost"), 6379, C.CString(""))
backend := git.NewOdbBackendFromC(odbBackendC)
odb.AddBackend(backend)
}
答案 0 :(得分:2)
尝试将git2go拆分为子包时遇到了同样的问题。据我所知,这是Go编译器试图将Go作用域规则用于C代码。我认为有两种方法可以解决这个问题:
git_odb
接口,这样您就可以运行任意Go代码;或