mirror of
https://github.com/mappu/miqt.git
synced 2024-12-23 01:18:37 +00:00
genbindings: basic constructor support
This commit is contained in:
parent
545a819f81
commit
aaa9340808
@ -98,10 +98,26 @@ nextMethod:
|
||||
// Safe to ignore
|
||||
|
||||
case "CXXConstructorDecl":
|
||||
// panic("TODO")
|
||||
|
||||
|
||||
var mm CppMethod
|
||||
err := parseMethod(node, &mm)
|
||||
if err != nil {
|
||||
if errors.Is(err, ErrTooComplex) {
|
||||
log.Printf("Skipping method %q with complex type", mm.MethodName)
|
||||
continue nextMethod
|
||||
}
|
||||
|
||||
// Real error
|
||||
return CppClass{}, err
|
||||
}
|
||||
|
||||
|
||||
ret.Ctors = append(ret.Ctors, mm)
|
||||
|
||||
case "CXXDestructorDecl":
|
||||
// panic("TODO")
|
||||
// We don't need to expose destructors in the binding beyond offering
|
||||
// a regular delete function
|
||||
|
||||
case "CXXMethodDecl":
|
||||
if !visibility {
|
||||
@ -121,6 +137,31 @@ nextMethod:
|
||||
mm.MethodName = methodName[3:]
|
||||
}
|
||||
|
||||
err := parseMethod(node, &mm)
|
||||
if err != nil {
|
||||
if errors.Is(err, ErrTooComplex) {
|
||||
log.Printf("Skipping method %q with complex type", mm.MethodName)
|
||||
continue nextMethod
|
||||
}
|
||||
|
||||
// Real error
|
||||
return CppClass{}, err
|
||||
}
|
||||
|
||||
ret.Methods = append(ret.Methods, mm)
|
||||
|
||||
default:
|
||||
fmt.Printf("==> NOT IMPLEMENTED %q\n", kind)
|
||||
}
|
||||
}
|
||||
|
||||
return ret, nil // done
|
||||
}
|
||||
|
||||
var ErrTooComplex error = errors.New("Type declaration is too complex to parse")
|
||||
|
||||
func parseMethod(node map[string]interface{}, mm *CppMethod) error {
|
||||
|
||||
if typobj, ok := node["type"].(map[string]interface{}); ok {
|
||||
if qualType, ok := typobj["qualType"].(string); ok {
|
||||
// The qualType is the whole type of the method, including its parameter types
|
||||
@ -129,12 +170,7 @@ nextMethod:
|
||||
var err error = nil
|
||||
mm.ReturnType, mm.Parameters, err = parseTypeString(qualType)
|
||||
if err != nil {
|
||||
if errors.Is(err, ErrTooComplex) {
|
||||
log.Printf("Skipping method %q with complex type %q", mm.MethodName, qualType)
|
||||
continue nextMethod
|
||||
}
|
||||
// Real error
|
||||
return CppClass{}, err
|
||||
return err
|
||||
}
|
||||
|
||||
}
|
||||
@ -145,7 +181,7 @@ nextMethod:
|
||||
for _, methodObj := range methodInner {
|
||||
methodObj, ok := methodObj.(map[string]interface{})
|
||||
if !ok {
|
||||
return CppClass{}, errors.New("inner[] element not an object")
|
||||
return errors.New("inner[] element not an object")
|
||||
}
|
||||
|
||||
switch methodObj["kind"] {
|
||||
@ -184,23 +220,14 @@ nextMethod:
|
||||
|
||||
default:
|
||||
// Something else inside a declaration??
|
||||
fmt.Printf("==> NOT IMPLEMENTED CXXMethodDecl->%q\n", kind)
|
||||
fmt.Printf("==> NOT IMPLEMENTED CXXMethodDecl->%q\n", methodObj["kind"])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ret.Methods = append(ret.Methods, mm)
|
||||
|
||||
default:
|
||||
fmt.Printf("==> NOT IMPLEMENTED %q\n", kind)
|
||||
}
|
||||
}
|
||||
|
||||
return ret, nil // done
|
||||
return nil
|
||||
}
|
||||
|
||||
var ErrTooComplex error = errors.New("Type declaration is too complex to parse")
|
||||
|
||||
// parseTypeString converts a string like
|
||||
// - `QString (const char *, const char *, int)`
|
||||
// - `void (const QKeySequence \u0026)`
|
||||
|
@ -68,10 +68,6 @@ func emitParametersCabi(m CppMethod, selfType string) string {
|
||||
// Go: converted to native Go string
|
||||
if m.ReturnType.ParameterType == "QString" {
|
||||
tmp = append(tmp, "char** _out, size_t* _out_Strlen")
|
||||
/*
|
||||
} else if m.ReturnType.QtClassType() && !m.ReturnType.Pointer {
|
||||
tmp = append(tmp, "P"+m.ReturnType.ParameterType+" _out")
|
||||
*/
|
||||
}
|
||||
|
||||
return strings.Join(tmp, ", ")
|
||||
@ -167,7 +163,7 @@ extern "C" {
|
||||
for _, c := range src.Classes {
|
||||
|
||||
for i, ctor := range c.Ctors {
|
||||
ret.WriteString(fmt.Sprintf("P%s %s_new%s(%s);\n", c.ClassName, maybeSuffix(i), emitParametersCabi(ctor, "")))
|
||||
ret.WriteString(fmt.Sprintf("P%s %s_new%s(%s);\n", c.ClassName, c.ClassName, maybeSuffix(i), emitParametersCabi(ctor, "")))
|
||||
}
|
||||
|
||||
for _, m := range c.Methods {
|
||||
@ -208,7 +204,7 @@ func emitBindingCpp(src *CppParsedHeader, filename string) (string, error) {
|
||||
"\treturn new %s(%s);\n"+
|
||||
"}\n"+
|
||||
"\n",
|
||||
c.ClassName, maybeSuffix(i), emitParametersCabi(ctor, ""),
|
||||
c.ClassName, c.ClassName, maybeSuffix(i), emitParametersCabi(ctor, ""),
|
||||
preamble,
|
||||
c.ClassName, forwarding,
|
||||
))
|
||||
|
Loading…
Reference in New Issue
Block a user