Files
llgo/chore/_xtool/llcppinfofetch/llcppinfofetch.go

194 lines
4.7 KiB
Go
Raw Normal View History

2024-07-26 13:45:08 +08:00
package main
import (
"fmt"
"os"
"strconv"
"unsafe"
2024-07-29 11:21:36 +08:00
"github.com/goplus/llgo/chore/llcppg/types"
2024-07-26 13:45:08 +08:00
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/cjson"
"github.com/goplus/llgo/c/clang"
)
type Context struct {
namespaceName string
className string
2024-07-29 11:21:36 +08:00
astInfo []types.ASTInformation
2024-07-26 17:09:26 +08:00
currentFile *c.Char
2024-07-26 13:45:08 +08:00
}
func newContext() *Context {
return &Context{
2024-07-29 11:21:36 +08:00
astInfo: make([]types.ASTInformation, 0),
2024-07-26 13:45:08 +08:00
}
}
func (c *Context) setNamespaceName(name string) {
c.namespaceName = name
}
func (c *Context) setClassName(name string) {
c.className = name
}
2024-07-26 17:09:26 +08:00
func (c *Context) setCurrentFile(filename *c.Char) {
c.currentFile = filename
2024-07-26 15:56:47 +08:00
}
2024-07-26 13:45:08 +08:00
var context = newContext()
2024-07-29 11:21:36 +08:00
func collectFuncInfo(cursor clang.Cursor) types.ASTInformation {
2024-07-26 15:56:47 +08:00
2024-07-29 11:21:36 +08:00
info := types.ASTInformation{
2024-07-26 13:45:08 +08:00
Namespace: context.namespaceName,
Class: context.className,
}
cursorStr := cursor.String()
symbol := cursor.Mangling()
info.Name = c.GoString(cursorStr.CStr())
2024-07-26 14:37:26 +08:00
2024-07-26 13:45:08 +08:00
info.Symbol = c.GoString(symbol.CStr())
2024-07-26 14:37:26 +08:00
if len(info.Symbol) >= 1 {
if info.Symbol[0] == '_' {
info.Symbol = info.Symbol[1:]
}
}
2024-07-26 13:45:08 +08:00
defer symbol.Dispose()
defer cursorStr.Dispose()
if context.namespaceName != "" {
info.Namespace = context.namespaceName
}
if context.className != "" {
info.Class = context.className
}
typeStr := cursor.ResultType().String()
defer typeStr.Dispose()
info.ReturnType = c.GoString(typeStr.CStr())
2024-07-29 11:21:36 +08:00
info.Parameters = make([]types.Parameter, cursor.NumArguments())
for i := 0; i < int(cursor.NumArguments()); i++ {
argCurSor := cursor.Argument(c.Uint(i))
argType := argCurSor.Type().String()
argName := argCurSor.String()
2024-07-29 11:21:36 +08:00
info.Parameters[i] = types.Parameter{
Name: c.GoString(argName.CStr()),
Type: c.GoString(argType.CStr()),
2024-07-26 13:45:08 +08:00
}
argType.Dispose()
argName.Dispose()
2024-07-26 13:45:08 +08:00
}
return info
}
func visit(cursor, parent clang.Cursor, clientData c.Pointer) clang.ChildVisitResult {
if cursor.Kind == clang.Namespace {
nameStr := cursor.String()
context.setNamespaceName(c.GoString(nameStr.CStr()))
clang.VisitChildren(cursor, visit, nil)
context.setNamespaceName("")
} else if cursor.Kind == clang.ClassDecl {
nameStr := cursor.String()
context.setClassName(c.GoString(nameStr.CStr()))
clang.VisitChildren(cursor, visit, nil)
context.setClassName("")
} else if cursor.Kind == clang.CXXMethod || cursor.Kind == clang.FunctionDecl || cursor.Kind == clang.Constructor || cursor.Kind == clang.Destructor {
2024-07-26 15:56:47 +08:00
loc := cursor.Location()
var file clang.File
var line, column c.Uint
loc.SpellingLocation(&file, &line, &column, nil)
filename := file.FileName()
2024-07-26 17:09:26 +08:00
if c.Strcmp(filename.CStr(), context.currentFile) == 0 {
2024-07-26 15:56:47 +08:00
info := collectFuncInfo(cursor)
info.Location = c.GoString(filename.CStr()) + ":" + strconv.Itoa(int(line)) + ":" + strconv.Itoa(int(column))
context.astInfo = append(context.astInfo, info)
}
defer filename.Dispose()
2024-07-26 13:45:08 +08:00
}
return clang.ChildVisit_Continue
}
2024-07-29 11:21:36 +08:00
func parse(filenames []*c.Char) []types.ASTInformation {
2024-07-26 13:45:08 +08:00
index := clang.CreateIndex(0, 0)
args := make([]*c.Char, 3)
args[0] = c.Str("-x")
args[1] = c.Str("c++")
args[2] = c.Str("-std=c++11")
2024-07-26 17:09:26 +08:00
for _, filename := range filenames {
unit := index.ParseTranslationUnit(
filename,
unsafe.SliceData(args), 3,
nil, 0,
clang.TranslationUnit_None,
)
if unit == nil {
fmt.Printf("Unable to parse translation unit for file: %s. Skipping.\n", c.GoString(filename))
continue
}
2024-07-26 13:45:08 +08:00
2024-07-26 17:09:26 +08:00
cursor := unit.Cursor()
context.setCurrentFile(filename)
clang.VisitChildren(cursor, visit, nil)
unit.Dispose()
}
2024-07-26 13:45:08 +08:00
index.Dispose()
return context.astInfo
}
2024-07-29 11:21:36 +08:00
func printJson(infos []types.ASTInformation) {
2024-07-26 13:45:08 +08:00
root := cjson.Array()
for _, info := range infos {
item := cjson.Object()
item.SetItem(c.Str("namespace"), cjson.String(c.AllocaCStr(info.Namespace)))
item.SetItem(c.Str("class"), cjson.String(c.AllocaCStr(info.Class)))
item.SetItem(c.Str("name"), cjson.String(c.AllocaCStr(info.Name)))
item.SetItem(c.Str("returnType"), cjson.String(c.AllocaCStr(info.ReturnType)))
item.SetItem(c.Str("location"), cjson.String(c.AllocaCStr(info.Location)))
item.SetItem(c.Str("symbol"), cjson.String(c.AllocaCStr(info.Symbol)))
params := cjson.Array()
for _, param := range info.Parameters {
paramObj := cjson.Object()
paramObj.SetItem(c.Str("name"), cjson.String(c.AllocaCStr(param.Name)))
paramObj.SetItem(c.Str("type"), cjson.String(c.AllocaCStr(param.Type)))
params.AddItem(paramObj)
}
item.SetItem(c.Str("parameters"), params)
root.AddItem(item)
}
c.Printf(c.Str("%s\n"), root.Print())
}
func main() {
if c.Argc < 2 {
2024-07-26 17:09:26 +08:00
fmt.Fprintln(os.Stderr, "Usage: <C++ header file1> [<C++ header file2> ...]\n")
2024-07-26 13:45:08 +08:00
return
} else {
2024-07-26 17:09:26 +08:00
filenames := make([]*c.Char, c.Argc-1)
for i := 1; i < int(c.Argc); i++ {
filenames[i-1] = c.Index(c.Argv, c.Int(i))
}
printJson(parse(filenames))
2024-07-26 13:45:08 +08:00
}
}