mirror of
https://github.com/mappu/miqt.git
synced 2025-04-04 12:40:23 +00:00
genbindings/inherits: direct vs indirect inheritance
This commit is contained in:
parent
73089d5120
commit
8d1c871de3
@ -265,7 +265,7 @@ func processClassType(node map[string]interface{}, addNamePrefix string) (CppCla
|
|||||||
|
|
||||||
if typ, ok := base["type"].(map[string]interface{}); ok {
|
if typ, ok := base["type"].(map[string]interface{}); ok {
|
||||||
if qualType, ok := typ["qualType"].(string); ok {
|
if qualType, ok := typ["qualType"].(string); ok {
|
||||||
ret.Inherits = append(ret.Inherits, qualType)
|
ret.DirectInherits = append(ret.DirectInherits, qualType)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -709,7 +709,9 @@ import "C"
|
|||||||
`)
|
`)
|
||||||
|
|
||||||
// Embed all inherited types to directly allow calling inherited methods
|
// Embed all inherited types to directly allow calling inherited methods
|
||||||
for _, base := range c.Inherits {
|
// Only include the direct inherits; the recursive inherits will exist
|
||||||
|
// on these types already
|
||||||
|
for _, base := range c.DirectInherits {
|
||||||
|
|
||||||
if pkg, ok := KnownClassnames[base]; ok && pkg.PackageName != gfs.currentPackageName {
|
if pkg, ok := KnownClassnames[base]; ok && pkg.PackageName != gfs.currentPackageName {
|
||||||
// Cross-package parent class
|
// Cross-package parent class
|
||||||
|
@ -372,13 +372,13 @@ func (e CppEnum) ShortEnumName() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type CppClass struct {
|
type CppClass struct {
|
||||||
ClassName string
|
ClassName string
|
||||||
Abstract bool
|
Abstract bool
|
||||||
Ctors []CppMethod // only use the parameters
|
Ctors []CppMethod // only use the parameters
|
||||||
Inherits []string // other class names
|
DirectInherits []string // other class names. This only includes direct inheritance - use AllInherits() to find recursive inheritance
|
||||||
Methods []CppMethod
|
Methods []CppMethod
|
||||||
Props []CppProperty
|
Props []CppProperty
|
||||||
CanDelete bool
|
CanDelete bool
|
||||||
|
|
||||||
ChildTypedefs []CppTypedef
|
ChildTypedefs []CppTypedef
|
||||||
ChildClassdefs []CppClass
|
ChildClassdefs []CppClass
|
||||||
@ -431,7 +431,10 @@ func (c *CppClass) VirtualMethods() []CppMethod {
|
|||||||
retNames[m.CppCallTarget()] = struct{}{}
|
retNames[m.CppCallTarget()] = struct{}{}
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, inh := range c.Inherits {
|
// Only allow virtual overrides for direct inherits, not all inherits -
|
||||||
|
// Go will automatically allow virtual overrides for the base type because
|
||||||
|
// the parent struct is nested
|
||||||
|
for _, inh := range c.DirectInherits { // AllInherits() {
|
||||||
cinfo, ok := KnownClassnames[inh]
|
cinfo, ok := KnownClassnames[inh]
|
||||||
if !ok {
|
if !ok {
|
||||||
panic("Class " + c.ClassName + " inherits from unknown class " + inh)
|
panic("Class " + c.ClassName + " inherits from unknown class " + inh)
|
||||||
@ -481,6 +484,31 @@ func (c *CppClass) VirtualMethods() []CppMethod {
|
|||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AllInherits recursively finds and lists all the parent classes of this class.
|
||||||
|
func (c *CppClass) AllInherits() []string {
|
||||||
|
var ret []string
|
||||||
|
|
||||||
|
// FIXME prevent duplicates arising from diamond inheritance
|
||||||
|
|
||||||
|
for _, baseClass := range c.DirectInherits {
|
||||||
|
|
||||||
|
ret = append(ret, baseClass)
|
||||||
|
|
||||||
|
// And everything that class inherits - unless - we've seen it before
|
||||||
|
baseClassInfo, ok := KnownClassnames[baseClass]
|
||||||
|
if !ok {
|
||||||
|
panic("Class " + c.ClassName + " inherits from unknown class " + baseClass)
|
||||||
|
}
|
||||||
|
|
||||||
|
recurseInfo := baseClassInfo.Class.AllInherits()
|
||||||
|
for _, childClass := range recurseInfo {
|
||||||
|
ret = append(ret, childClass)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
type CppTypedef struct {
|
type CppTypedef struct {
|
||||||
Alias string
|
Alias string
|
||||||
UnderlyingType CppParameter
|
UnderlyingType CppParameter
|
||||||
|
Loading…
x
Reference in New Issue
Block a user