This project depends on LLGO's C ecosystem integration capability, and some components of this tool must be compiled with LLGO. For LLGO installation, please refer to: https://github.com/goplus/llgo?tab=readme-ov-file#how-to-install
brew install cjson # macos
apt-get install libcjson-dev # linux
llgo install ./_xtool/llcppsymg
llgo install ./_xtool/llcppsigfetch
go install ./cmd/llcppcfg
go install ./cmd/gogensig
go install .
llcppcfg [libname]
llcppcfg tool is used to generate llcppg.cfg file. llcppg.cfg file is a configure file used by llcppg. Once llcppg.cfg is generated then you can run llcppg command to generate go pacakge for the c/c++ lib.
llcppg [config-file]
If config-file
is not specified, a llcppg.cfg
file is used in current directory.
Here's a demo configuration to generate LLGO bindings for cjson library:
{
"name": "cjson",
"cflags": "$(pkg-config --cflags libcjson)",
"include": ["cJSON.h","cJSON_Utils.h"],
"libs": "$(pkg-config --libs libcjson libcjson_utils)",
"trimPrefixes": ["cJSONUtils_","cJSON_"]
}
After creating the configuration file, run:
llcppg llcppg.cfg
After execution, a Go project will be generated in a directory named after the config name (which is also the package name). For example, with the cjson configuration above, you'll see:
cjson/
├── cJSON.go
├── cJSON_Utils.go
├── cjson_autogen_link.go
├── go.mod
└── go.sum
Import the generated cjson package and try this demo:
package main
import (
"cjson"
"github.com/goplus/llgo/c"
)
func main() {
mod := cjson.CreateObject()
mod.AddItemToObject(c.Str("hello"), cjson.CreateString(c.Str("llgo")))
mod.AddItemToObject(c.Str("hello"), cjson.CreateString(c.Str("llcppg")))
cstr := mod.PrintUnformatted()
c.Printf(c.Str("%s\n"), cstr)
}
Run the demo with llgo run .
, you will see the following output:
{"hello":"llgo","hello":"llcppg"}
You can see that functions from the C header files have been automatically mapped and converted to corresponding LLGO binding functions.
Original C function:
CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void);
Converted to LLGO binding function:
//go:linkname CreateObject C.cJSON_CreateObject
func CreateObject() *CJSON
The types defined in the header file are also converted, for example the cJSON struct:
Original C struct:
typedef struct cJSON
{
struct cJSON *next;
struct cJSON *prev;
struct cJSON *child;
int type;
char *valuestring;
int valueint;
double valuedouble;
char *string;
} cJSON;
Converted to Go struct:
type CJSON struct {
Next *CJSON
Prev *CJSON
Child *CJSON
Type c.Int
Valuestring *int8
Valueint c.Int
Valuedouble float64
String *int8
}
Notably, to make the API more idiomatic in Go, when a C function's first parameter is a converted type (like cJSON *), the function is automatically converted into a method of that type.
Original C function:
CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item);
Converted to Go method:
// llgo:link (*CJSON).AddItemToObject C.cJSON_AddItemToObject
func (p *CJSON) AddItemToObject(string *int8, item *CJSON) CJSONBool {
return 0
}
When you run llcppg directly with the above configuration, it will generate function names according to the configuration. After execution, you'll find a llcppg.symb.json
file in the current directory.
[
{
"mangle": "cJSON_CreateObject",
"c++": "cJSON_CreateObject()",
"go": "CreateObject"
},
{
"mangle": "cJSON_AddItemToObject",
"c++": "cJSON_AddItemToObject(cJSON *, const char *, cJSON *)",
"go": "(*CJSON).AddItemToObject"
},
{
"mangle": "cJSON_PrintUnformatted",
"c++": "cJSON_PrintUnformatted(const cJSON *)",
"go": "(*CJSON).PrintUnformatted"
},
]
-
mangle
field contains the symbol name of function -
c++
field shows the function prototype from the header file -
go
field displays the function name that will be generated in LLGO binding.You can customize this field to:
- Change function names (e.g. "CreateObject" to "Object" for simplicity)
- Remove the method receiver prefix to generate a function instead of a method
For example, to convert (*CJSON).PrintUnformatted
from a method to a function, simply remove the (*CJSON).
prefix in the configuration file:
[
{
"mangle": "cJSON_PrintUnformatted",
"c++": "cJSON_PrintUnformatted(const cJSON *)",
"go": "PrintUnformatted"
},
]
This will generate a function instead of a method in the Go code:
//go:linkname PrintUnformatted C.cJSON_PrintUnformatted
func PrintUnformatted(item *CJSON) *int8
You can customize the generated bindings by modifying the llcppg.symb.json
file.
After modifying the file, run llcppg again to apply your customized bindings.
The symbol table is generated by llcppsymg, which is internally called by llcppg to generate the symbol table as input for Go code generation. You can also run llcppsymg separately to customize the symbol table before running llcppg.
See llcppg Design.