golang 通过 cgo 调用 C++ 库

思路

将 C++ 库包装成 C 库 -> golang 通过 cgo 调用 C 库

C ++ 相关文件

目录列表

  • include/
    • some.h C++ 库头文件
    • some_wrapper.h <= 用于将 C++ 库包装成 C 库的头文件
  • lib/
    • libsome.a C++ 库
  • src/
    • some_wrapper.cpp <= 用于将 C++ 库包装成 C 库的源码文件

源码示例

some.h
cpp 复制代码
#ifndef SOME_H
#define SOME_H

#include <string>
#include <utility>
#include <vector>

namespace Some {
	struct DeviceInfo {
	  std::string id;
	};

	std::vector<std::pair<std::string, std::string>> Generate(const DeviceInfo& device);
}

#endif  // SOME_H
some_wrapper.h
cpp 复制代码
#ifndef SOME_WRAPPER_H
#define SOME_WRAPPER_H

	#ifdef __cplusplus
	extern "C" {
	#endif
	    struct some_item {
	        char version[8];
	        char value[32];
	    };
	
	    struct some_result {
	        struct some_item data[1];
	        int size;
	    };
	
	    int generate(struct some_result* result, char* id);
	
	#ifdef __cplusplus
	}
	#endif

#endif // SOME_WRAPPER_H
some_wrapper.cpp
cpp 复制代码
#include <string.h>
#include "some.h"
#include "some_wrapper.h"

#ifdef __cplusplus
extern "C" {
#endif

    int generate(struct some_result* result, char* id) {
        Some::DeviceInfo deviceInfo;
        deviceInfo.id = id;

        auto v = Some::Generate(deviceInfo);
        strcpy(result->data[0].version, v.first.data());
        strcpy(result->data[0].value, v.second.data());

        result->size = 1;

        return 0;
    }

#ifdef __cplusplus
}
#endif

将 C++ 库包装成 C 库

shell 复制代码
# 编译生成 src/some_wrapper.o 临时目标文件
g++ -c -Iinclude src/some_wrapper.cpp -o src/some_wrapper.o

# 生成静态库 lib/libsomewrapper.a
ar -cr lib/libsomewrapper.a src/some_wrapper.o

# 删除临时目标文件
rm -rf src/some_wrapper.o

Golang CGO 调用 C 库

go 复制代码
package main

// #cgo CFLAGS: -I  ${SRCDIR}/include
// #cgo LDFLAGS: -L ${SRCDIR}/lib -lsomewrapper -lsome -lstdc++
// #include <stdlib.h>
// #include "some_wrapper.h"
import "C"
import (
	"unsafe"
)

type DeviceInfo struct {
	ID string `json:"id"`
}

func main() {
	di := DeviceInfo{
		ID: "123456",
     }

	cID:= C.CString(di.ID)
	defer C.free(unsafe.Pointer(cID))

	some := &C.struct_some_result{}
	C.generate(some, cId)

	if len(some.data) > 0 {
		item := some.data[0]
		version := C.GoStringN(&(item.version[0]), 8)
		value := C.GoStringN(&(item.value[0]), 32)
	
		result := make(map[string]string, someSize)
		result[version] = value
	
		someSize := int(some.size)
	
		fmt.Println(result, someSize)
	}
}
shell 复制代码
# 编译 go 文件
go install -v

# 运行
$GOPATH/bin/demo

参考

相关推荐
r***F26214 小时前
【漏洞复现】CVE-2019-11043(PHP远程代码执行漏洞)信息安全论文_含漏洞复现完整过程_含Linux环境go语言编译环境安装
linux·golang·php
夏天的味道٥14 小时前
@JsonIgnore对Date类型不生效
开发语言·python
小白学大数据15 小时前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点
java·开发语言·爬虫·python
Cinema KI15 小时前
吃透C++继承:不止是代码复用,更是面向对象设计的底层思维
c++
SEO_juper16 小时前
别再纠结LLMs.txt了!它背后的真相与最佳使用场景,一文讲透。
开发语言·ai·php·数字营销
g***B73816 小时前
JavaScript在Node.js中的模块系统
开发语言·javascript·node.js
烤麻辣烫16 小时前
黑马程序员大事件后端概览(表现效果升级版)
java·开发语言·学习·spring·intellij-idea
思密吗喽16 小时前
宠物商城系统
java·开发语言·vue·毕业设计·springboot·课程设计·宠物
csbysj202016 小时前
Lua 函数
开发语言
头发还在的女程序员16 小时前
三天搞定招聘系统!附完整源码
开发语言·python