2024-08-06 01:03:23 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-08-07 06:51:51 +00:00
|
|
|
"go/format"
|
|
|
|
"log"
|
2024-08-06 02:29:12 +00:00
|
|
|
"strings"
|
2024-08-06 01:03:23 +00:00
|
|
|
)
|
|
|
|
|
2024-08-08 06:54:13 +00:00
|
|
|
func (p CppParameter) RenderTypeGo() string {
|
|
|
|
if p.Pointer && p.ParameterType == "char" {
|
|
|
|
return "string"
|
|
|
|
}
|
|
|
|
if p.ParameterType == "QString" {
|
|
|
|
return "string"
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := ""
|
|
|
|
if p.ByRef || p.Pointer {
|
|
|
|
ret += "*"
|
|
|
|
}
|
|
|
|
ret += p.ParameterType
|
|
|
|
return ret // ignore const
|
|
|
|
}
|
|
|
|
|
2024-08-07 06:56:14 +00:00
|
|
|
func emitParametersGo(params []CppParameter) string {
|
2024-08-06 02:29:12 +00:00
|
|
|
tmp := make([]string, 0, len(params))
|
|
|
|
for _, p := range params {
|
2024-08-08 05:51:29 +00:00
|
|
|
tmp = append(tmp, p.ParameterName+" "+p.RenderTypeGo())
|
2024-08-06 02:29:12 +00:00
|
|
|
}
|
|
|
|
return strings.Join(tmp, ", ")
|
|
|
|
}
|
|
|
|
|
2024-08-08 06:54:13 +00:00
|
|
|
func emitParametersGo2CABIForwarding(params []CppParameter) (preamble string, fowarding string) {
|
|
|
|
tmp := make([]string, 0, len(params))
|
|
|
|
for _, p := range params {
|
|
|
|
if p.ParameterType == "QString" {
|
|
|
|
// Go: convert string -> char* and len
|
|
|
|
// CABI: convert char* and len -> real QString
|
|
|
|
preamble += p.ParameterName + "_Cstring := C.CString(" + p.ParameterName + ")\n"
|
|
|
|
preamble += "defer C.free(" + p.ParameterName + "_Cstring)\n"
|
|
|
|
tmp = append(tmp, p.ParameterName+"_Cstring, len("+p.ParameterName+")")
|
|
|
|
|
|
|
|
// TODO handle the return type as a pointer parameter
|
|
|
|
|
|
|
|
} else if p.Pointer && p.ParameterType == "char" {
|
|
|
|
// Single char* argument
|
|
|
|
preamble += p.ParameterName + "_Cstring := C.CString(" + p.ParameterName + ")\n"
|
|
|
|
preamble += "defer C.free(" + p.ParameterName + "_Cstring)\n"
|
|
|
|
tmp = append(tmp, p.ParameterName+"_Cstring")
|
|
|
|
|
2024-08-08 07:06:14 +00:00
|
|
|
} else if (p.Pointer || p.ByRef) && p.QtClassType() {
|
2024-08-08 06:54:13 +00:00
|
|
|
// The C++ type is a pointer to Qt class
|
|
|
|
// We want our functions to accept the Go wrapper type, and forward as cPointer()
|
|
|
|
tmp = append(tmp, p.ParameterName+".cPointer()")
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// Default
|
|
|
|
tmp = append(tmp, p.ParameterName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return preamble, strings.Join(tmp, ", ")
|
|
|
|
}
|
|
|
|
|
2024-08-08 06:54:36 +00:00
|
|
|
func emitGo(src *CppParsedHeader, headerName string) (string, error) {
|
2024-08-07 06:51:51 +00:00
|
|
|
|
2024-08-06 02:29:12 +00:00
|
|
|
ret := strings.Builder{}
|
2024-08-07 06:51:51 +00:00
|
|
|
ret.WriteString(`package miqt
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
/*
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
#cgo CFLAGS: -fPIC
|
|
|
|
#cgo pkg-config: Qt5Widgets
|
2024-08-08 06:54:36 +00:00
|
|
|
#include "gen_` + headerName + `"
|
|
|
|
#include <stdlib.h>
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
*/
|
|
|
|
import "C"
|
2024-08-06 02:29:12 +00:00
|
|
|
|
|
|
|
`)
|
|
|
|
|
2024-08-07 06:56:14 +00:00
|
|
|
for _, c := range src.Classes {
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
ret.WriteString(`
|
2024-08-07 06:56:14 +00:00
|
|
|
type ` + c.ClassName + ` struct {
|
|
|
|
h C.P` + c.ClassName + `
|
2024-08-07 06:51:51 +00:00
|
|
|
}
|
|
|
|
|
2024-08-07 06:56:14 +00:00
|
|
|
func (this *` + c.ClassName + `) cPointer() C.P` + c.ClassName + ` {
|
2024-08-07 06:51:51 +00:00
|
|
|
if this == nil {
|
|
|
|
return nil
|
2024-08-06 02:29:12 +00:00
|
|
|
}
|
2024-08-07 06:51:51 +00:00
|
|
|
return this.h
|
2024-08-06 02:29:12 +00:00
|
|
|
}
|
2024-08-07 06:51:51 +00:00
|
|
|
|
|
|
|
`)
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-07 06:56:14 +00:00
|
|
|
for i, ctor := range c.Ctors {
|
2024-08-08 06:54:13 +00:00
|
|
|
preamble, forwarding := emitParametersGo2CABIForwarding(ctor.Parameters)
|
2024-08-07 06:51:51 +00:00
|
|
|
ret.WriteString(`
|
2024-08-07 06:56:14 +00:00
|
|
|
// New` + c.ClassName + maybeSuffix(i) + ` constructs a new ` + c.ClassName + ` object.
|
|
|
|
func New` + c.ClassName + maybeSuffix(i) + `(` + emitParametersGo(ctor.Parameters) + `) {
|
2024-08-08 06:54:13 +00:00
|
|
|
` + preamble + ` ret := C.` + c.ClassName + `_new` + maybeSuffix(i) + `(` + forwarding + `)
|
2024-08-07 06:56:14 +00:00
|
|
|
return &` + c.ClassName + `{h: ret}
|
2024-08-07 06:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
`)
|
2024-08-06 02:29:12 +00:00
|
|
|
}
|
|
|
|
|
2024-08-07 06:56:14 +00:00
|
|
|
for _, m := range c.Methods {
|
2024-08-07 06:51:51 +00:00
|
|
|
// TODO for any known pointer type, call its cPointer() method instead of passing it directly
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
shouldReturn := "return "
|
2024-08-08 05:51:29 +00:00
|
|
|
returnTypeDecl := m.ReturnType.ParameterType // FIXME handle byRef/const here too
|
2024-08-07 06:51:51 +00:00
|
|
|
if returnTypeDecl == "void" {
|
|
|
|
shouldReturn = ""
|
|
|
|
returnTypeDecl = ""
|
|
|
|
}
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-08 06:54:13 +00:00
|
|
|
preamble, forwarding := emitParametersGo2CABIForwarding(m.Parameters)
|
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
ret.WriteString(`
|
2024-08-08 05:51:29 +00:00
|
|
|
func (this *` + c.ClassName + `) ` + m.SafeMethodName() + `(` + emitParametersGo(m.Parameters) + `) ` + returnTypeDecl + ` {
|
2024-08-08 06:54:13 +00:00
|
|
|
` + preamble + shouldReturn + ` C.` + c.ClassName + `_` + m.SafeMethodName() + `(` + forwarding + `)
|
2024-08-07 06:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
`)
|
|
|
|
}
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
}
|
2024-08-06 02:29:12 +00:00
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
// Run gofmt over the result
|
|
|
|
formattedSrc, err := format.Source([]byte(ret.String()))
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("gofmt failure: %v", err)
|
|
|
|
formattedSrc = []byte(ret.String())
|
2024-08-06 02:29:12 +00:00
|
|
|
}
|
|
|
|
|
2024-08-07 06:51:51 +00:00
|
|
|
return string(formattedSrc), nil
|
2024-08-06 01:03:23 +00:00
|
|
|
}
|