Add garbage collection memory mangement mode (gogc). Lots of fixes
related to pointer handling and memory management.
This commit is contained in:
parent
79bb282188
commit
e5c8e114bf
|
@ -6,6 +6,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"git.wow.st/gmp/nswrap/examples/app/ns"
|
"git.wow.st/gmp/nswrap/examples/app/ns"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
//Shortcut for literal NSStrings
|
//Shortcut for literal NSStrings
|
||||||
|
@ -31,8 +32,9 @@ func didFinishLaunching(n *ns.NSNotification) {
|
||||||
ns.NSBackingStoreBuffered,
|
ns.NSBackingStoreBuffered,
|
||||||
0,
|
0,
|
||||||
)
|
)
|
||||||
// retain win since we called Alloc and did not add it to a collection
|
// We do not need to retain this because we are in garbage collection mode
|
||||||
win.Retain()
|
// and have assigned it to a global variable.
|
||||||
|
//win.Retain()
|
||||||
|
|
||||||
win.SetTitle(nst("Hi World"))
|
win.SetTitle(nst("Hi World"))
|
||||||
win.MakeKeyAndOrderFront(win)
|
win.MakeKeyAndOrderFront(win)
|
||||||
|
@ -119,12 +121,12 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
func app() {
|
func app() {
|
||||||
//Lock OS thread because Cocoa uses thread-local storage
|
// Lock OS thread because Cocoa uses thread-local storage
|
||||||
runtime.LockOSThread()
|
runtime.LockOSThread()
|
||||||
a = ns.NSApplicationSharedApplication()
|
a = ns.NSApplicationSharedApplication()
|
||||||
a.SetActivationPolicy(ns.NSApplicationActivationPolicyRegular)
|
a.SetActivationPolicy(ns.NSApplicationActivationPolicyRegular)
|
||||||
|
|
||||||
//Set up an AppDelegate
|
// Set up an AppDelegate
|
||||||
del := ns.AppDelegateAlloc()
|
del := ns.AppDelegateAlloc()
|
||||||
del.ApplicationDidFinishLaunchingCallback(didFinishLaunching)
|
del.ApplicationDidFinishLaunchingCallback(didFinishLaunching)
|
||||||
del.ApplicationShouldTerminateAfterLastWindowClosedCallback(shouldTerminateAfterLastWindowClosed)
|
del.ApplicationShouldTerminateAfterLastWindowClosedCallback(shouldTerminateAfterLastWindowClosed)
|
||||||
|
@ -133,12 +135,20 @@ func app() {
|
||||||
|
|
||||||
a.SetDelegate(del)
|
a.SetDelegate(del)
|
||||||
|
|
||||||
//Run the app
|
// Run the app
|
||||||
a.Run()
|
a.Run()
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
//Run our app in an autorelease pool just for fun
|
// Run GC every second to ensure pointers are not being prematurely released.
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
runtime.GC()
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Run our app in an autorelease pool just for fun
|
||||||
go ns.Autoreleasepool(app)
|
go ns.Autoreleasepool(app)
|
||||||
select {}
|
select {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,4 +44,5 @@ subclasses:
|
||||||
|
|
||||||
frameworks: [ Foundation, AppKit ]
|
frameworks: [ Foundation, AppKit ]
|
||||||
pragma: [ clang diagnostic ignored "-Wformat-security" ]
|
pragma: [ clang diagnostic ignored "-Wformat-security" ]
|
||||||
autorelease: true
|
#autorelease: true
|
||||||
|
gogc: true
|
||||||
|
|
|
@ -5,6 +5,8 @@ import "C"
|
||||||
import (
|
import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"runtime"
|
||||||
|
"time"
|
||||||
"git.wow.st/gmp/nswrap/examples/bluetooth/ns"
|
"git.wow.st/gmp/nswrap/examples/bluetooth/ns"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -25,34 +27,53 @@ func updateState(c *ns.CBCentralManager) {
|
||||||
fmt.Printf(" powered on\n")
|
fmt.Printf(" powered on\n")
|
||||||
cm.ScanForPeripheralsWithServices(ns.NSArrayWithObjects(hrm_uuid), nil)
|
cm.ScanForPeripheralsWithServices(ns.NSArrayWithObjects(hrm_uuid), nil)
|
||||||
}
|
}
|
||||||
|
fmt.Printf("Go: updateState returning\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
func discoverPeripheral(c *ns.CBCentralManager, p *ns.CBPeripheral, d *ns.NSDictionary, rssi *ns.NSNumber) {
|
func discoverPeripheral(c *ns.CBCentralManager, p *ns.CBPeripheral, d *ns.NSDictionary, rssi *ns.NSNumber) {
|
||||||
fmt.Printf("Did discover peripheral\n")
|
fmt.Printf("Did discover peripheral\n")
|
||||||
c.StopScan()
|
c.StopScan()
|
||||||
if peripheral.Ptr() != nil {
|
|
||||||
|
// if we already have a pointer to a peripheral, check that this one is different,
|
||||||
|
// and if so release the old one. Be careful to check the Objective-C pointers
|
||||||
|
// here as the Go pointers will differ.
|
||||||
|
|
||||||
|
if peripheral != nil && p.Ptr() != peripheral.Ptr() {
|
||||||
peripheral.Release()
|
peripheral.Release()
|
||||||
}
|
}
|
||||||
|
|
||||||
peripheral = p
|
peripheral = p
|
||||||
|
|
||||||
|
// we need to take ownership of this peripheral so CoreBluetooth doesn't
|
||||||
|
// dealloc it.
|
||||||
|
|
||||||
peripheral.Retain()
|
peripheral.Retain()
|
||||||
c.ConnectPeripheral(peripheral, nil)
|
c.ConnectPeripheral(peripheral, nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
func connectPeripheral(c *ns.CBCentralManager, p *ns.CBPeripheral) {
|
func connectPeripheral(c *ns.CBCentralManager, p *ns.CBPeripheral) {
|
||||||
fmt.Printf("Did connect peripheral\n")
|
fmt.Printf("Did connect peripheral\n")
|
||||||
|
|
||||||
|
// set ourselves up as a peripheral delegate
|
||||||
|
|
||||||
p.SetDelegate(cd)
|
p.SetDelegate(cd)
|
||||||
|
|
||||||
|
// discover all services on this device
|
||||||
|
|
||||||
p.DiscoverServices(nil)
|
p.DiscoverServices(nil)
|
||||||
|
fmt.Printf("Go: discoverPeripheral returning\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
func discoverServices(p *ns.CBPeripheral, e *ns.NSError) {
|
func discoverServices(p *ns.CBPeripheral, e *ns.NSError) {
|
||||||
fmt.Printf("Did discover services\n")
|
fmt.Printf("Did discover services\n")
|
||||||
p.Services().ObjectEnumerator().ForIn(func(o *ns.Id) bool {
|
p.Services().ObjectEnumerator().ForIn(func(o *ns.Id) bool {
|
||||||
serv := o.CBService()
|
serv := o.CBService()
|
||||||
|
uuid := serv.UUID()
|
||||||
switch {
|
switch {
|
||||||
case serv.UUID().IsEqualTo(hrm_uuid):
|
case uuid.IsEqualTo(hrm_uuid):
|
||||||
fmt.Printf("--heart rate monitor service\n")
|
fmt.Printf("--heart rate monitor service\n")
|
||||||
p.DiscoverCharacteristics(nil, serv)
|
p.DiscoverCharacteristics(nil, serv)
|
||||||
case serv.UUID().IsEqualTo(ns.CBUUIDWithGoString("180A")):
|
case uuid.IsEqualTo(info_uuid):
|
||||||
fmt.Printf("--device information service\n")
|
fmt.Printf("--device information service\n")
|
||||||
p.DiscoverCharacteristics(nil, serv)
|
p.DiscoverCharacteristics(nil, serv)
|
||||||
default:
|
default:
|
||||||
|
@ -60,6 +81,7 @@ func discoverServices(p *ns.CBPeripheral, e *ns.NSError) {
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
})
|
})
|
||||||
|
fmt.Printf("Go: discoverServices returning\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
func hr(d *ns.NSData) int {
|
func hr(d *ns.NSData) int {
|
||||||
|
@ -77,12 +99,14 @@ func hr(d *ns.NSData) int {
|
||||||
|
|
||||||
func discoverCharacteristics(p *ns.CBPeripheral, s *ns.CBService, e *ns.NSError) {
|
func discoverCharacteristics(p *ns.CBPeripheral, s *ns.CBService, e *ns.NSError) {
|
||||||
fmt.Printf("Did discover characteristics\n")
|
fmt.Printf("Did discover characteristics\n")
|
||||||
fmt.Printf("----%s\n", s.UUID().UUIDString().UTF8String())
|
uuid := s.UUID()
|
||||||
if s.UUID().IsEqualTo(hrm_uuid) {
|
fmt.Printf("----%s\n", uuid.UUIDString().UTF8String())
|
||||||
|
if uuid.IsEqualTo(hrm_uuid) {
|
||||||
s.Characteristics().ObjectEnumerator().ForIn(func(o *ns.Id) bool {
|
s.Characteristics().ObjectEnumerator().ForIn(func(o *ns.Id) bool {
|
||||||
chr := o.CBCharacteristic()
|
chr := o.CBCharacteristic()
|
||||||
fmt.Printf("------%s\n", chr.UUID().UUIDString().UTF8String())
|
chuuid := chr.UUID()
|
||||||
if chr.UUID().IsEqualTo(hrv_uuid) {
|
fmt.Printf("------%s\n", chuuid.UUIDString().UTF8String())
|
||||||
|
if chuuid.IsEqualTo(hrv_uuid) {
|
||||||
p.SetNotifyValue(1, chr)
|
p.SetNotifyValue(1, chr)
|
||||||
v := chr.Value()
|
v := chr.Value()
|
||||||
fmt.Println(hr(v))
|
fmt.Println(hr(v))
|
||||||
|
@ -90,6 +114,7 @@ func discoverCharacteristics(p *ns.CBPeripheral, s *ns.CBService, e *ns.NSError)
|
||||||
return true
|
return true
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
fmt.Printf("Go: discoverCharacteristics returning\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
func updateValue(p *ns.CBPeripheral, chr *ns.CBCharacteristic, e *ns.NSError) {
|
func updateValue(p *ns.CBPeripheral, chr *ns.CBCharacteristic, e *ns.NSError) {
|
||||||
|
@ -97,11 +122,13 @@ func updateValue(p *ns.CBPeripheral, chr *ns.CBCharacteristic, e *ns.NSError) {
|
||||||
v := chr.Value()
|
v := chr.Value()
|
||||||
fmt.Printf("Heart rate: %d\n", hr(v))
|
fmt.Printf("Heart rate: %d\n", hr(v))
|
||||||
}
|
}
|
||||||
|
fmt.Printf("Go: updateValue returning\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
hrm_uuid *ns.CBUUID
|
hrm_uuid *ns.CBUUID
|
||||||
hrv_uuid *ns.CBUUID
|
hrv_uuid *ns.CBUUID
|
||||||
|
info_uuid *ns.CBUUID
|
||||||
cd *ns.CBDelegate
|
cd *ns.CBDelegate
|
||||||
cm *ns.CBCentralManager
|
cm *ns.CBCentralManager
|
||||||
peripheral *ns.CBPeripheral
|
peripheral *ns.CBPeripheral
|
||||||
|
@ -121,9 +148,18 @@ func main() {
|
||||||
|
|
||||||
hrm_uuid = ns.CBUUIDWithGoString("180D")
|
hrm_uuid = ns.CBUUIDWithGoString("180D")
|
||||||
hrv_uuid = ns.CBUUIDWithGoString("2A37")
|
hrv_uuid = ns.CBUUIDWithGoString("2A37")
|
||||||
|
info_uuid = ns.CBUUIDWithGoString("180A")
|
||||||
|
|
||||||
//We defined our own queue because this won't work on the main queue.
|
// We defined our own queue because this won't work on the main queue.
|
||||||
cm = ns.CBCentralManagerAlloc().InitWithDelegateQueue(cd, queue)
|
cm = ns.CBCentralManagerAlloc().InitWithDelegateQueue(cd, queue)
|
||||||
|
|
||||||
|
// For debugging purposes, run GC every second to make sure things are not
|
||||||
|
// over-released.
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
runtime.GC()
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
}
|
||||||
|
}()
|
||||||
select {}
|
select {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,7 @@ classes:
|
||||||
- NSDictionary
|
- NSDictionary
|
||||||
- NSEnumerator
|
- NSEnumerator
|
||||||
- NSString
|
- NSString
|
||||||
|
- NSAutoreleasePool
|
||||||
|
|
||||||
functions: [ NSMakeRange, dispatch_queue_create ]
|
functions: [ NSMakeRange, dispatch_queue_create ]
|
||||||
enums: [ CB.* ]
|
enums: [ CB.* ]
|
||||||
|
@ -38,4 +39,4 @@ delegates:
|
||||||
- peripheralDidUpdateValueForCharacteristic
|
- peripheralDidUpdateValueForCharacteristic
|
||||||
|
|
||||||
pragma: [ clang diagnostic ignored "-Wformat-security" ]
|
pragma: [ clang diagnostic ignored "-Wformat-security" ]
|
||||||
#gogc: true
|
gogc: true
|
||||||
|
|
|
@ -15,6 +15,7 @@ func releaseX(x int) func (ns.MyClassSupermethods) {
|
||||||
super.Release() // comment out for leak
|
super.Release() // comment out for leak
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func memtest1() {
|
func memtest1() {
|
||||||
fmt.Println("memtest1 started")
|
fmt.Println("memtest1 started")
|
||||||
for {
|
for {
|
||||||
|
@ -33,7 +34,7 @@ func memtest1() {
|
||||||
// in a real program.
|
// in a real program.
|
||||||
runtime.GC()
|
runtime.GC()
|
||||||
time.Sleep(time.Second/50)
|
time.Sleep(time.Second/50)
|
||||||
fmt.Printf("Loop complete\n")
|
//fmt.Printf("Loop complete\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,18 +53,35 @@ func memtest2() {
|
||||||
o4 := ns.NSStringAlloc()
|
o4 := ns.NSStringAlloc()
|
||||||
_ = o4
|
_ = o4
|
||||||
|
|
||||||
//arr := ns.NSArrayAlloc().InitWithObjects(o1,o1)
|
a1 := ns.NSArrayAlloc()
|
||||||
arr := ns.NSArrayWithObjects(o1,o2,o3,o4)
|
|
||||||
_ = arr
|
// init methods in Objective-C always return a retained object.
|
||||||
|
// init may or may not return the same object that was sent in.
|
||||||
|
|
||||||
|
a1 = a1.InitWithObjects(o1,o2,o3,o4)
|
||||||
|
|
||||||
|
a2 := ns.NSArrayWithObjects(o1,o2,o3,o4)
|
||||||
|
|
||||||
|
// you can always nest alloc and init.
|
||||||
|
|
||||||
|
a3 := ns.NSMutableArrayAlloc().Init()
|
||||||
|
a3.AddObject(o1)
|
||||||
|
a3.AddObject(o2)
|
||||||
|
a3.AddObject(o3)
|
||||||
|
a3.AddObject(o4)
|
||||||
|
_ = a1
|
||||||
|
_ = a2
|
||||||
|
_ = a3
|
||||||
|
|
||||||
//o1.Release()
|
|
||||||
//o1.Release()
|
|
||||||
runtime.GC()
|
runtime.GC()
|
||||||
time.Sleep(time.Second/50)
|
time.Sleep(time.Second/50)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func addStr(arr *ns.NSMutableArray) {
|
func addStr(arr *ns.NSMutableArray) {
|
||||||
|
// temporary strings made by the 'WithGoString' methods should be released
|
||||||
|
// automatically by the GC.
|
||||||
|
|
||||||
s1 := ns.NSStringAlloc().InitWithGoString("a string")
|
s1 := ns.NSStringAlloc().InitWithGoString("a string")
|
||||||
arr.AddObject(s1)
|
arr.AddObject(s1)
|
||||||
|
|
||||||
|
@ -75,24 +93,35 @@ func addStr(arr *ns.NSMutableArray) {
|
||||||
func memtest3() {
|
func memtest3() {
|
||||||
fmt.Println("memtest3 started")
|
fmt.Println("memtest3 started")
|
||||||
|
|
||||||
arr := ns.NSMutableArrayAlloc().Init() // arr will be garbage collected by Go
|
for {
|
||||||
|
// arr will be garbage collected by Go
|
||||||
|
arr := ns.NSMutableArrayAlloc().Init()
|
||||||
addStr(arr)
|
addStr(arr)
|
||||||
runtime.GC()
|
runtime.GC()
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
|
|
||||||
|
// check that our string was retained.
|
||||||
|
|
||||||
s1 := arr.ObjectAtIndex(0)
|
s1 := arr.ObjectAtIndex(0)
|
||||||
fmt.Println(s1.NSString().UTF8String())
|
gstr := s1.NSString().UTF8String().String()
|
||||||
fmt.Println("memtest3 done")
|
_ = gstr
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func memtest4() {
|
func memtest4() {
|
||||||
fmt.Println("memtest4 started")
|
fmt.Println("memtest4 started")
|
||||||
for {
|
for {
|
||||||
o1 := ns.NSStringAlloc().InitWithGoString("four string")
|
o1 := ns.NSStringAlloc().InitWithGoString("red string")
|
||||||
|
|
||||||
|
// conversions to UTF8String internally create autoreleased strings
|
||||||
|
// in the Objective-C runtime. NSWrap runs these in a mini-
|
||||||
|
// @autoreleasepool block.
|
||||||
|
|
||||||
c1 := o1.UTF8String()
|
c1 := o1.UTF8String()
|
||||||
_ = o1
|
_ = o1
|
||||||
_ = c1
|
_ = c1
|
||||||
runtime.GC()
|
runtime.GC()
|
||||||
time.Sleep(time.Second/10)
|
time.Sleep(time.Second/50)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -100,12 +129,21 @@ func memtest5() {
|
||||||
fmt.Println("memtest5 started")
|
fmt.Println("memtest5 started")
|
||||||
i := 0
|
i := 0
|
||||||
for {
|
for {
|
||||||
str := ns.NSStringWithGoString(fmt.Sprintf("five string %d",i))
|
// by incrementing i we can ensure that Objective-C needs to create
|
||||||
_ = str
|
// a new NSString object at each loop iteration and cannot be reusing
|
||||||
|
// the same string object.
|
||||||
|
|
||||||
|
str := ns.NSStringWithGoString(fmt.Sprintf("blue string %d",i))
|
||||||
|
|
||||||
|
// SubstringFromIndex should be returning a newly allocated NSString,
|
||||||
|
// which is getting retained by NSWrap and released by a Go GC
|
||||||
|
// finalizer.
|
||||||
|
|
||||||
sub := str.SubstringFromIndex(5)
|
sub := str.SubstringFromIndex(5)
|
||||||
_ = sub
|
_ = sub
|
||||||
fmt.Printf("sub = %s\n",sub)
|
u := sub.UTF8String()
|
||||||
time.Sleep(time.Second/10)
|
_ = u
|
||||||
|
time.Sleep(time.Second/50)
|
||||||
runtime.GC()
|
runtime.GC()
|
||||||
i++
|
i++
|
||||||
}
|
}
|
||||||
|
@ -117,5 +155,12 @@ func main() {
|
||||||
go memtest3()
|
go memtest3()
|
||||||
go memtest4()
|
go memtest4()
|
||||||
go memtest5()
|
go memtest5()
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
// print a progress indicator
|
||||||
|
fmt.Printf("t = %s\n",time.Now())
|
||||||
|
time.Sleep(time.Second * 10)
|
||||||
|
}
|
||||||
|
}()
|
||||||
select {}
|
select {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -246,10 +246,10 @@ func (t *Type) _CType(attrib bool) string {
|
||||||
return ct
|
return ct
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *Type) GoTypeDecl() string {
|
func (t *Type) GoTypeDecl(fin bool) string {
|
||||||
gt := t.GoType()
|
gt := t.GoType()
|
||||||
if wrapped[gt] {
|
if wrapped[gt] {
|
||||||
return t.GoInterfaceDecl()
|
return t.GoInterfaceDecl(fin)
|
||||||
}
|
}
|
||||||
if t.Node.IsId() {
|
if t.Node.IsId() {
|
||||||
return ""
|
return ""
|
||||||
|
@ -286,7 +286,7 @@ type %s %s
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *Type) GoInterfaceDecl() string {
|
func (t *Type) GoInterfaceDecl(fin bool) string {
|
||||||
ct := t.CType()
|
ct := t.CType()
|
||||||
gt := t.GoType()
|
gt := t.GoType()
|
||||||
if Debug {
|
if Debug {
|
||||||
|
@ -384,7 +384,7 @@ func (t *Type) CToGo(cval string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Call a C function from Go with a given return type and parameter types
|
// Call a C function from Go with a given return type and parameter types
|
||||||
func GoToC(name string, pnames, snames []string, rtype *Type, ptypes []*Type, fun, fin bool) string {
|
func GoToC(name string, pnames, snames []string, rtype *Type, ptypes []*Type, fun, fin bool, cm bool) string {
|
||||||
if rtype == nil {
|
if rtype == nil {
|
||||||
//fmt.Println("nil sent to GoToC")
|
//fmt.Println("nil sent to GoToC")
|
||||||
return ""
|
return ""
|
||||||
|
@ -495,10 +495,24 @@ func GoToC(name string, pnames, snames []string, rtype *Type, ptypes []*Type, fu
|
||||||
}
|
}
|
||||||
if rt != "void" {
|
if rt != "void" {
|
||||||
if fin {
|
if fin {
|
||||||
|
cmp := ""
|
||||||
|
if !cm {
|
||||||
|
cmp = fmt.Sprintf(`if ret.ptr == o.ptr { return (%s)(unsafe.Pointer(o)) }
|
||||||
|
`,rtgt)
|
||||||
|
}
|
||||||
|
dbg := ""
|
||||||
|
dbg2 := ""
|
||||||
|
if Debug {
|
||||||
|
dbg = fmt.Sprintf(`fmt.Printf("Setting finalizer (%s): %%p -> %%p\n", ret, ret.ptr)
|
||||||
|
`, rtgt)
|
||||||
|
dbg2 = fmt.Sprintf(`fmt.Printf("Finalizer (%s): release %%p -> %%p\n", o, o.ptr)
|
||||||
|
`, rtgt)
|
||||||
|
}
|
||||||
ret.WriteString(fmt.Sprintf(`
|
ret.WriteString(fmt.Sprintf(`
|
||||||
runtime.SetFinalizer(ret, func(o %s) {
|
if ret.ptr == nil { return ret }
|
||||||
o.Release()
|
%s%sruntime.SetFinalizer(ret, func(o %s) {
|
||||||
})`,rtgt))
|
%so.Release()
|
||||||
|
})`, cmp, dbg, rtgt, dbg2))
|
||||||
}
|
}
|
||||||
ret.WriteString(`
|
ret.WriteString(`
|
||||||
return ret`)
|
return ret`)
|
||||||
|
|
|
@ -177,14 +177,14 @@ func TestType(t *testing.T) {
|
||||||
chk(tp.PointsTo(), tp2)
|
chk(tp.PointsTo(), tp2)
|
||||||
chk(tp2.PointsTo(), nil)
|
chk(tp2.PointsTo(), nil)
|
||||||
|
|
||||||
chk(tp.GoTypeDecl(), `
|
chk(tp.GoTypeDecl(false), `
|
||||||
type MyTypedef **C.NSObject
|
type MyTypedef **C.NSObject
|
||||||
`)
|
`)
|
||||||
str = "void"
|
str = "void"
|
||||||
n = &Node{"TypeName", "", []*Node{
|
n = &Node{"TypeName", "", []*Node{
|
||||||
&Node{"TypeSpecifier", "void", []*Node{}}}}
|
&Node{"TypeSpecifier", "void", []*Node{}}}}
|
||||||
chk_newtype()
|
chk_newtype()
|
||||||
chk(tp.GoTypeDecl(), "")
|
chk(tp.GoTypeDecl(false), "")
|
||||||
void := tp
|
void := tp
|
||||||
|
|
||||||
str = "BOOL"
|
str = "BOOL"
|
||||||
|
@ -206,14 +206,14 @@ type MyTypedef **C.NSObject
|
||||||
chk(tp.GoType(), "*NSObject")
|
chk(tp.GoType(), "*NSObject")
|
||||||
|
|
||||||
Wrap("NSString")
|
Wrap("NSString")
|
||||||
chk(nso.GoTypeDecl(), `
|
chk(nso.GoTypeDecl(false), `
|
||||||
type NSObject interface {
|
type NSObject interface {
|
||||||
Ptr() unsafe.Pointer
|
Ptr() unsafe.Pointer
|
||||||
}
|
}
|
||||||
`)
|
`)
|
||||||
chk(nso.GoType(), "NSObject")
|
chk(nso.GoType(), "NSObject")
|
||||||
|
|
||||||
chk(nst.GoTypeDecl(), `
|
chk(nst.GoTypeDecl(false), `
|
||||||
type NSString struct { Id }
|
type NSString struct { Id }
|
||||||
func (o *NSString) Ptr() unsafe.Pointer { if o == nil { return nil }; return o.ptr }
|
func (o *NSString) Ptr() unsafe.Pointer { if o == nil { return nil }; return o.ptr }
|
||||||
func (o *Id) NSString() *NSString {
|
func (o *Id) NSString() *NSString {
|
||||||
|
@ -276,8 +276,7 @@ func (o *Id) NSString() *NSString {
|
||||||
snames := []string{"", "", "", ""}
|
snames := []string{"", "", "", ""}
|
||||||
|
|
||||||
chk_gotoc := func(expected string) {
|
chk_gotoc := func(expected string) {
|
||||||
fmt.Printf("chk_gotoc\n")
|
chk(GoToC("myFun", pnames, snames, rtype, ptypes, false, false, false), expected)
|
||||||
chk(GoToC("myFun", pnames, snames, rtype, ptypes, false, false), expected)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
chk_gotoc("")
|
chk_gotoc("")
|
||||||
|
@ -352,7 +351,7 @@ func (o *Id) NSString() *NSString {
|
||||||
}
|
}
|
||||||
return ret`)
|
return ret`)
|
||||||
|
|
||||||
chk(GoToC("myFun", pnames, snames, rtype, ptypes, true, false),
|
chk(GoToC("myFun", pnames, snames, rtype, ptypes, true, false, false),
|
||||||
`ret := &Id{}
|
`ret := &Id{}
|
||||||
ret.ptr = unsafe.Pointer(C.myFun(p1.Ptr(), p2.Ptr(), unsafe.Pointer(&p3p[0]), p4))
|
ret.ptr = unsafe.Pointer(C.myFun(p1.Ptr(), p2.Ptr(), unsafe.Pointer(&p3p[0]), p4))
|
||||||
(*p3) = (*p3)[:cap(*p3)]
|
(*p3) = (*p3)[:cap(*p3)]
|
||||||
|
|
227
wrap/main.go
227
wrap/main.go
|
@ -52,6 +52,7 @@ type Wrapper struct {
|
||||||
|
|
||||||
func NewWrapper(debug bool) *Wrapper {
|
func NewWrapper(debug bool) *Wrapper {
|
||||||
Debug = debug
|
Debug = debug
|
||||||
|
types.Debug = Debug
|
||||||
if Debug {
|
if Debug {
|
||||||
fmt.Println("// Debug mode")
|
fmt.Println("// Debug mode")
|
||||||
}
|
}
|
||||||
|
@ -135,6 +136,7 @@ type Subclass struct {
|
||||||
type Property struct {
|
type Property struct {
|
||||||
Name, Attr string
|
Name, Attr string
|
||||||
Type *types.Type
|
Type *types.Type
|
||||||
|
retained, notretained bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type Parameter struct {
|
type Parameter struct {
|
||||||
|
@ -155,9 +157,34 @@ func (m *Method) ShouldFinalize() bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func shouldFinalize (grtype, name string) bool {
|
func shouldFinalize (grtype, name string) bool {
|
||||||
return Gogc && grtype != "NSAutoreleasePool" && (types.ShouldWrap(grtype) || grtype == "Id") && (len(name) < 4 || name[:4] != "init")
|
return Gogc && grtype != "*NSAutoreleasePool" &&
|
||||||
|
(types.PtrShouldWrap(grtype) || grtype == "*Id") &&
|
||||||
|
(len(name) < 6 || name != "retain")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsRetained returns true if the name matches a retained property for the
|
||||||
|
// given interface.
|
||||||
|
func (i *Interface) IsRetained(name string) bool {
|
||||||
|
if p, ok := i.Properties[name]; ok {
|
||||||
|
if p.retained {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
if p.notretained {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
attrs := strings.Split(p.Attr," ")
|
||||||
|
for _, a := range attrs {
|
||||||
|
if a == "retain" {
|
||||||
|
p.retained = true // cache this result
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.notretained = true // cache this result
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//Fully disambiguated method name (m.GoName + all parameter names)
|
//Fully disambiguated method name (m.GoName + all parameter names)
|
||||||
func (m *Method) LongName() string {
|
func (m *Method) LongName() string {
|
||||||
ret := m.GoName
|
ret := m.GoName
|
||||||
|
@ -184,13 +211,14 @@ type Protocol struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type MethodCollection struct {
|
type MethodCollection struct {
|
||||||
Class string
|
Class, GoClass string
|
||||||
Methods []*Method
|
Methods []*Method
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewMethodCollection(class string) *MethodCollection {
|
func NewMethodCollection(class string) *MethodCollection {
|
||||||
ret := &MethodCollection{
|
ret := &MethodCollection{
|
||||||
Class: class,
|
Class: class,
|
||||||
|
GoClass: strings.Title(class),
|
||||||
Methods: []*Method{},
|
Methods: []*Method{},
|
||||||
}
|
}
|
||||||
return ret
|
return ret
|
||||||
|
@ -564,7 +592,7 @@ func (w *Wrapper) AddEnum(n *ast.EnumDecl, rs []string) {
|
||||||
func (w *Wrapper) addIntCat(name string, ns []ast.Node) {
|
func (w *Wrapper) addIntCat(name string, ns []ast.Node) {
|
||||||
var i *Interface
|
var i *Interface
|
||||||
var ok bool
|
var ok bool
|
||||||
goname := strings.Title(types.NewTypeFromString(name, name).GoType())
|
goname := strings.Title(name)
|
||||||
types.Wrap(goname)
|
types.Wrap(goname)
|
||||||
if i, ok = w.Interfaces[name]; !ok {
|
if i, ok = w.Interfaces[name]; !ok {
|
||||||
i = &Interface{}
|
i = &Interface{}
|
||||||
|
@ -572,6 +600,7 @@ func (w *Wrapper) addIntCat(name string, ns []ast.Node) {
|
||||||
i.GoName = goname
|
i.GoName = goname
|
||||||
i.InstanceMethods = NewMethodCollection(name)
|
i.InstanceMethods = NewMethodCollection(name)
|
||||||
i.ClassMethods = NewMethodCollection(name)
|
i.ClassMethods = NewMethodCollection(name)
|
||||||
|
i.Properties = map[string]*Property{}
|
||||||
i.Protocols = []string{}
|
i.Protocols = []string{}
|
||||||
i.ProcessedInstanceMethods = map[string]bool{}
|
i.ProcessedInstanceMethods = map[string]bool{}
|
||||||
}
|
}
|
||||||
|
@ -582,19 +611,15 @@ func (w *Wrapper) addIntCat(name string, ns []ast.Node) {
|
||||||
for _, c := range ns {
|
for _, c := range ns {
|
||||||
switch x := c.(type) {
|
switch x := c.(type) {
|
||||||
case *ast.ObjCPropertyDecl:
|
case *ast.ObjCPropertyDecl:
|
||||||
//FIXME: Properties are not supported, typically there
|
|
||||||
//will be setter/getter methods you can use instead
|
|
||||||
if Debug {
|
if Debug {
|
||||||
fmt.Printf("ObjCPropertyDecl: %s\n", x.Name)
|
fmt.Printf("ObjCPropertyDecl: %s\n", x.Name)
|
||||||
}
|
}
|
||||||
//p := &Property{
|
p := &Property{
|
||||||
// Name: x.Name,
|
Name: x.Name,
|
||||||
// Type: types.NewTypeFromString(x.Type,name),
|
Type: types.NewTypeFromString(x.Type,name),
|
||||||
//}
|
Attr: x.Attr,
|
||||||
//_,avail = w.GetParms(x,name) // TODO
|
}
|
||||||
//if avail {
|
i.Properties[x.Name] = p
|
||||||
// i.Properties[p.Name] = p
|
|
||||||
//}
|
|
||||||
case *ast.ObjCMethodDecl:
|
case *ast.ObjCMethodDecl:
|
||||||
if Debug {
|
if Debug {
|
||||||
fmt.Printf("ObjCMethodDecl: %s (%s) %s\n", x.Type, name, x.Name)
|
fmt.Printf("ObjCMethodDecl: %s (%s) %s\n", x.Type, name, x.Name)
|
||||||
|
@ -765,7 +790,6 @@ func (w *Wrapper) AddTypedef(n, t string) {
|
||||||
}
|
}
|
||||||
types.Wrap(n)
|
types.Wrap(n)
|
||||||
types.SetSuper(n, gt)
|
types.SetSuper(n, gt)
|
||||||
//w._processType(tp, n)
|
|
||||||
w._processType(tp)
|
w._processType(tp)
|
||||||
} else {
|
} else {
|
||||||
cgt := tp.CGoType()
|
cgt := tp.CGoType()
|
||||||
|
@ -785,8 +809,6 @@ func (w *Wrapper) processTypes(tps []*types.Type) {
|
||||||
|
|
||||||
func (w *Wrapper) processType(tp *types.Type) {
|
func (w *Wrapper) processType(tp *types.Type) {
|
||||||
bt := tp.BaseType()
|
bt := tp.BaseType()
|
||||||
//gt := bt.GoType()
|
|
||||||
//w._processType(bt, gt)
|
|
||||||
w._processType(bt)
|
w._processType(bt)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -804,8 +826,10 @@ func (w *Wrapper) _processType(bt *types.Type) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if w.ProcessedTypes[gt] {
|
if w.ProcessedTypes[gt] {
|
||||||
|
if Debug { fmt.Printf(" -- already seen\n") }
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if Debug { fmt.Printf(" -- not yet seen\n") }
|
||||||
w.ProcessedTypes[gt] = true
|
w.ProcessedTypes[gt] = true
|
||||||
if gt == "Char" {
|
if gt == "Char" {
|
||||||
w.CharHelpers()
|
w.CharHelpers()
|
||||||
|
@ -828,7 +852,7 @@ func (w *Wrapper) _processType(bt *types.Type) {
|
||||||
if Debug {
|
if Debug {
|
||||||
fmt.Printf("Writing go type for %s -> %s\n",bt.CType(),gt)
|
fmt.Printf("Writing go type for %s -> %s\n",bt.CType(),gt)
|
||||||
}
|
}
|
||||||
w.goTypes.WriteString(bt.GoTypeDecl())
|
w.goTypes.WriteString(bt.GoTypeDecl(Gogc))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *Wrapper) CharHelpers() {
|
func (w *Wrapper) CharHelpers() {
|
||||||
|
@ -860,13 +884,19 @@ func (o *NSString) String() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *Wrapper) EnumeratorHelpers() {
|
func (w *Wrapper) EnumeratorHelpers() {
|
||||||
w.goHelpers.WriteString(`
|
var re1, re2 string
|
||||||
|
if Gogc && false { // FIXME: don't need this
|
||||||
|
re1 = "o.Release(); "
|
||||||
|
re2 = `
|
||||||
|
o.Release()`
|
||||||
|
}
|
||||||
|
w.goHelpers.WriteString(fmt.Sprintf(`
|
||||||
func (e *NSEnumerator) ForIn(f func(*Id) bool) {
|
func (e *NSEnumerator) ForIn(f func(*Id) bool) {
|
||||||
for o := e.NextObject(); o.Ptr() != nil; o = e.NextObject() {
|
for o := e.NextObject(); o.Ptr() != nil; o = e.NextObject() {
|
||||||
if !f(o) { break }
|
if !f(o) { %sbreak }%s
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`)
|
`, re1, re2))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *Wrapper) AutoreleaseHelpers() {
|
func (w *Wrapper) AutoreleaseHelpers() {
|
||||||
|
@ -898,12 +928,13 @@ func (w *Wrapper) ProcessMethod(m *Method) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *Wrapper) ProcessMethodForClass(m *Method, class string) {
|
func (w *Wrapper) ProcessMethodForClass(m *Method, class string) {
|
||||||
goclass := strings.Title(types.NewTypeFromString(class, class).GoType())
|
goclass := strings.Title(class)
|
||||||
m2 := &Method{
|
m2 := &Method{
|
||||||
Name: m.Name, GoName: m.GoName, Class: class, GoClass: goclass,
|
Name: m.Name, GoName: m.GoName, Class: class, GoClass: goclass,
|
||||||
Type: m.Type.CloneToClass(class),
|
Type: m.Type.CloneToClass(class),
|
||||||
ClassMethod: m.ClassMethod,
|
ClassMethod: m.ClassMethod,
|
||||||
Parameters: make([]*Parameter, len(m.Parameters)),
|
Parameters: make([]*Parameter, len(m.Parameters)),
|
||||||
|
Unavailable: m.Unavailable,
|
||||||
}
|
}
|
||||||
for i, p := range m.Parameters {
|
for i, p := range m.Parameters {
|
||||||
m2.Parameters[i] = &Parameter{
|
m2.Parameters[i] = &Parameter{
|
||||||
|
@ -1004,21 +1035,23 @@ func (w *Wrapper) _processMethod(m *Method, fun bool) {
|
||||||
if gname == grtype { // avoid name conflicts between methods and types
|
if gname == grtype { // avoid name conflicts between methods and types
|
||||||
gname = "Get" + gname
|
gname = "Get" + gname
|
||||||
}
|
}
|
||||||
|
var inter *Interface
|
||||||
if m.ClassMethod {
|
if m.ClassMethod {
|
||||||
if w.ProcessedClassMethods[gname] {
|
if w.ProcessedClassMethods[gname] {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
w.ProcessedClassMethods[gname] = true
|
w.ProcessedClassMethods[gname] = true
|
||||||
} else {
|
} else {
|
||||||
i, ok := w.Interfaces[m.Class]
|
var ok bool
|
||||||
|
inter,ok = w.Interfaces[m.Class]
|
||||||
if !ok {
|
if !ok {
|
||||||
fmt.Printf("Can't find interface %s for method %s\n", m.Class, m.Name)
|
fmt.Printf("Can't find interface %s for method %s\n", m.Class, m.Name)
|
||||||
os.Exit(-1)
|
os.Exit(-1)
|
||||||
}
|
}
|
||||||
if i.ProcessedInstanceMethods[gname] {
|
if inter.ProcessedInstanceMethods[gname] {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
i.ProcessedInstanceMethods[gname] = true
|
inter.ProcessedInstanceMethods[gname] = true
|
||||||
}
|
}
|
||||||
|
|
||||||
w.goCode.WriteString(fmt.Sprintf(`
|
w.goCode.WriteString(fmt.Sprintf(`
|
||||||
|
@ -1048,7 +1081,7 @@ func %s%s(%s) %s {
|
||||||
`, snames[i], n, n, snames[i], n))
|
`, snames[i], n, n, snames[i], n))
|
||||||
}
|
}
|
||||||
w.goCode.WriteString(` ` +
|
w.goCode.WriteString(` ` +
|
||||||
types.GoToC(cname, ns, snames, m.Type, tps, fun, m.ShouldFinalize()) + "\n}\n")
|
types.GoToC(cname, ns, snames, m.Type, tps, fun, m.ShouldFinalize() && (m.ClassMethod || !inter.IsRetained(m.Name)), m.ClassMethod) + "\n}\n")
|
||||||
|
|
||||||
cret := ""
|
cret := ""
|
||||||
if !m.isVoid() {
|
if !m.isVoid() {
|
||||||
|
@ -1088,12 +1121,24 @@ func %s%s(%s) %s {
|
||||||
default:
|
default:
|
||||||
if Gogc && !m.isVoid() {
|
if Gogc && !m.isVoid() {
|
||||||
rtn := ""
|
rtn := ""
|
||||||
//if m.ClassMethod && types.ShouldWrap(m.Type.GoType()) {
|
if types.PtrShouldWrap(m.Type.GoType()) {
|
||||||
if types.ShouldWrap(m.Type.GoType()) {
|
switch {
|
||||||
if m.ClassMethod {
|
case m.ClassMethod:
|
||||||
|
if grtype != "*NSAutoreleasePool" {
|
||||||
|
// retain objects returned by class methods
|
||||||
rtn = `
|
rtn = `
|
||||||
[ret retain];`
|
[ret retain];`
|
||||||
} else {
|
}
|
||||||
|
|
||||||
|
case len(m.Name) >= 4 && m.Name[:4] == "init":
|
||||||
|
// init always returns a retained object
|
||||||
|
|
||||||
|
case inter.IsRetained(m.Name):
|
||||||
|
// some methods relate to retained properties
|
||||||
|
// do not retain these again
|
||||||
|
|
||||||
|
default:
|
||||||
|
// by default, retain if returning a new object
|
||||||
rtn = `
|
rtn = `
|
||||||
if (o != ret) { [ret retain]; }`
|
if (o != ret) { [ret retain]; }`
|
||||||
}
|
}
|
||||||
|
@ -1111,6 +1156,28 @@ func %s%s(%s) %s {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// create SetFinalizer methods when we see an alloc function:
|
||||||
|
if Gogc && m.Name == "alloc" {
|
||||||
|
cls := m.GoClass
|
||||||
|
if types.IsGoInterface(cls) {
|
||||||
|
cls = "Id"
|
||||||
|
}
|
||||||
|
dbg := ""
|
||||||
|
dbg2 := ""
|
||||||
|
if Debug {
|
||||||
|
dbg = fmt.Sprintf(`fmt.Printf("Setting GC finalizer (%s): %%p -> %%p\n", o, o.ptr)
|
||||||
|
`,cls)
|
||||||
|
dbg2 = fmt.Sprintf(`fmt.Printf("GC finalizer (%s): release %%p -> %%p\n", o, o.ptr)`, cls)
|
||||||
|
}
|
||||||
|
w.goCode.WriteString(fmt.Sprintf(`
|
||||||
|
func (o *%s) GC() {
|
||||||
|
if o.ptr == nil { return }
|
||||||
|
%sruntime.SetFinalizer(o, func(o *%s) {
|
||||||
|
%so.Release()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
`, cls, dbg, cls, dbg2))
|
||||||
|
}
|
||||||
// create GoString helper method
|
// create GoString helper method
|
||||||
if ok, _ := regexp.MatchString("WithString$", m.Name); ok {
|
if ok, _ := regexp.MatchString("WithString$", m.Name); ok {
|
||||||
if Debug {
|
if Debug {
|
||||||
|
@ -1143,21 +1210,12 @@ func %s%s(%s) %s {
|
||||||
obj = "o."
|
obj = "o."
|
||||||
ns = ns[1:]
|
ns = ns[1:]
|
||||||
}
|
}
|
||||||
finalizer := ""
|
|
||||||
if m.ShouldFinalize() && false {
|
|
||||||
w.goImports["runtime"] = true
|
|
||||||
finalizer = fmt.Sprintf(
|
|
||||||
`runtime.SetFinalizer(ret, func(o *%s) {
|
|
||||||
o.Release()
|
|
||||||
})
|
|
||||||
`, grtype)
|
|
||||||
}
|
|
||||||
w.goCode.WriteString(fmt.Sprintf(`
|
w.goCode.WriteString(fmt.Sprintf(`
|
||||||
func %s%s(%s) %s {
|
func %s%s(%s) %s {
|
||||||
%sret := %s%s(%s)
|
%sret := %s%s(%s)
|
||||||
%sreturn ret
|
return ret
|
||||||
}
|
}
|
||||||
`, receiver, gname2, gplist, grtype, cvts, obj, gname, strings.Join(ns, ", "), finalizer))
|
`, receiver, gname2, gplist, grtype, cvts, obj, gname, strings.Join(ns, ", ")))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1246,7 +1304,40 @@ func (w *Wrapper) MethodFromSig(sig, class string) *Method {
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (mc *MethodCollection) AddMethod(m *Method) {
|
||||||
|
m2 := &Method{
|
||||||
|
Name: m.Name,
|
||||||
|
GoName: m.GoName,
|
||||||
|
Class: mc.Class,
|
||||||
|
GoClass: mc.GoClass,
|
||||||
|
Type: m.Type.CloneToClass(mc.Class),
|
||||||
|
ClassMethod: m.ClassMethod,
|
||||||
|
Parameters: []*Parameter{},
|
||||||
|
Unavailable: m.Unavailable,
|
||||||
|
}
|
||||||
|
for _, p := range m.Parameters {
|
||||||
|
p2 := &Parameter{
|
||||||
|
Pname: p.Pname,
|
||||||
|
Vname: p.Vname,
|
||||||
|
Type: p.Type.CloneToClass(mc.Class),
|
||||||
|
}
|
||||||
|
m2.Parameters = append(m2.Parameters, p2)
|
||||||
|
}
|
||||||
|
mc.Methods = append(mc.Methods, m2)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mc *MethodCollection) AddMethods(smc *MethodCollection) {
|
||||||
|
for _, m := range smc.Methods {
|
||||||
|
mc.AddMethod(m)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (w *Wrapper) ProcessSubclass(sname string, sc *Subclass) {
|
func (w *Wrapper) ProcessSubclass(sname string, sc *Subclass) {
|
||||||
|
i := &Interface{
|
||||||
|
ProcessedInstanceMethods: map[string]bool{},
|
||||||
|
Properties: map[string]*Property{},
|
||||||
|
}
|
||||||
|
w.Interfaces[sname] = i
|
||||||
gname := strings.Title(sname)
|
gname := strings.Title(sname)
|
||||||
types.Wrap(gname)
|
types.Wrap(gname)
|
||||||
types.SetSuper(gname, sc.Super)
|
types.SetSuper(gname, sc.Super)
|
||||||
|
@ -1257,12 +1348,17 @@ func (w *Wrapper) ProcessSubclass(sname string, sc *Subclass) {
|
||||||
nms[i] = w.MethodFromSig(sig, sname)
|
nms[i] = w.MethodFromSig(sig, sname)
|
||||||
}
|
}
|
||||||
if Debug {
|
if Debug {
|
||||||
fmt.Println("ProcessSubclass(%s)\n",sname)
|
fmt.Printf("ProcessSubclass(%s)\n",sname)
|
||||||
}
|
}
|
||||||
w._ProcessDelSub(sname, ps, nms, true)
|
w._ProcessDelSub(sname, ps, nms, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *Wrapper) ProcessDelegate(dname string, ps map[string][]string) {
|
func (w *Wrapper) ProcessDelegate(dname string, ps map[string][]string) {
|
||||||
|
i := &Interface{
|
||||||
|
ProcessedInstanceMethods: map[string]bool{},
|
||||||
|
Properties: map[string]*Property{},
|
||||||
|
}
|
||||||
|
w.Interfaces[dname] = i
|
||||||
w._ProcessDelSub(dname, ps, nil, false)
|
w._ProcessDelSub(dname, ps, nil, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1276,6 +1372,7 @@ func (w *Wrapper) _ProcessDelSub(dname string, ps map[string][]string, nms []*Me
|
||||||
//5. Go constructor
|
//5. Go constructor
|
||||||
//6. Go dispatch database for callbacks
|
//6. Go dispatch database for callbacks
|
||||||
//7. Go superclass dispatch function
|
//7. Go superclass dispatch function
|
||||||
|
//8. Methods inherited from parent class
|
||||||
//To create (per method):
|
//To create (per method):
|
||||||
//1. ObjC function prototypes for go exports
|
//1. ObjC function prototypes for go exports
|
||||||
//2. Go callback registration functions
|
//2. Go callback registration functions
|
||||||
|
@ -1290,6 +1387,7 @@ func (w *Wrapper) _ProcessDelSub(dname string, ps map[string][]string, nms []*Me
|
||||||
sms := 0 // the number of methods that have super-methods
|
sms := 0 // the number of methods that have super-methods
|
||||||
gnames := []string{} // go names for methods
|
gnames := []string{} // go names for methods
|
||||||
pnames := make([]string, len(ps))
|
pnames := make([]string, len(ps))
|
||||||
|
supmeths := []*Method{}
|
||||||
var supr string
|
var supr string
|
||||||
i := 0
|
i := 0
|
||||||
for pname, pats := range ps {
|
for pname, pats := range ps {
|
||||||
|
@ -1364,6 +1462,8 @@ func (w *Wrapper) _ProcessDelSub(dname string, ps map[string][]string, nms []*Me
|
||||||
fmt.Printf("--Method: %s\n", m.Name)
|
fmt.Printf("--Method: %s\n", m.Name)
|
||||||
}
|
}
|
||||||
if !matches(string(m.Name[0])+m.GoName[1:], pats) {
|
if !matches(string(m.Name[0])+m.GoName[1:], pats) {
|
||||||
|
//methods from superclass that we are not overriding
|
||||||
|
supmeths = append(supmeths,m)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if m.HasUnsupportedType() {
|
if m.HasUnsupportedType() {
|
||||||
|
@ -1606,19 +1706,29 @@ void*
|
||||||
}
|
}
|
||||||
|
|
||||||
//4. Go type
|
//4. Go type
|
||||||
|
if !w.ProcessedTypes[gname] {
|
||||||
gotypes.WriteString(
|
gotypes.WriteString(
|
||||||
types.NewTypeFromString(gname, supr).GoInterfaceDecl())
|
types.NewTypeFromString(gname, supr).GoInterfaceDecl(Gogc))
|
||||||
|
|
||||||
//5. Go constructor
|
//5. Go constructor
|
||||||
var finalizer string
|
var finalizer string
|
||||||
if shouldFinalize(gname,"") {
|
dbg := ""
|
||||||
|
dbg2 := ""
|
||||||
|
if Debug {
|
||||||
|
dbg = fmt.Sprintf(`fmt.Printf("Setting finalizer (%s): %%p -> %%p\n", ret, ret.ptr)
|
||||||
|
`, gname)
|
||||||
|
dbg2 = fmt.Sprintf(`fmt.Printf("Finalizer (%s): release %%p -> %%p\n", o, o.ptr)
|
||||||
|
`, gname)
|
||||||
|
}
|
||||||
|
if Gogc {
|
||||||
w.goImports["runtime"] = true
|
w.goImports["runtime"] = true
|
||||||
|
if Debug { w.goImports["fmt"] = true }
|
||||||
finalizer = fmt.Sprintf(
|
finalizer = fmt.Sprintf(
|
||||||
`runtime.SetFinalizer(ret,func(o *%s) {
|
`if ret.ptr == nil { return ret }
|
||||||
o.Release()
|
%sruntime.SetFinalizer(ret,func(o *%s) {
|
||||||
|
%so.Release()
|
||||||
})
|
})
|
||||||
`,gname)
|
`, dbg, gname, dbg2)
|
||||||
}
|
}
|
||||||
gocode.WriteString(fmt.Sprintf(`
|
gocode.WriteString(fmt.Sprintf(`
|
||||||
func %sAlloc() *%s {
|
func %sAlloc() *%s {
|
||||||
|
@ -1627,6 +1737,18 @@ func %sAlloc() *%s {
|
||||||
%sreturn ret
|
%sreturn ret
|
||||||
}
|
}
|
||||||
`, gname, gname, gname, dname, finalizer))
|
`, gname, gname, gname, dname, finalizer))
|
||||||
|
if Gogc {
|
||||||
|
gocode.WriteString(fmt.Sprintf(`
|
||||||
|
func (o *%s) GC() {
|
||||||
|
if o.ptr == nil { return }
|
||||||
|
%sruntime.SetFinalizer(o,func(o *%s) {
|
||||||
|
%so.Release()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
`, gname, dbg, gname, dbg2))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
w.ProcessedTypes[gname] = true
|
||||||
|
|
||||||
//6. Go dispatch database for callbacks
|
//6. Go dispatch database for callbacks
|
||||||
dispitems := make([]string, len(gnames))
|
dispitems := make([]string, len(gnames))
|
||||||
|
@ -1790,7 +1912,7 @@ func (o *%s) Super%s(%s) %s {
|
||||||
}
|
}
|
||||||
`, vn, w.Vaargs, vn, vn))
|
`, vn, w.Vaargs, vn, vn))
|
||||||
}
|
}
|
||||||
gocode.WriteString("\t" + types.GoToC(dname+"_super_"+m.Name, ns, snames, m.Type, tps, false, m.ShouldFinalize()) + "\n}\n")
|
gocode.WriteString("\t" + types.GoToC(dname+"_super_"+m.Name, ns, snames, m.Type, tps, false, m.ShouldFinalize(), m.ClassMethod) + "\n}\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
w.cCode.WriteString(cprotos.String())
|
w.cCode.WriteString(cprotos.String())
|
||||||
|
@ -1798,6 +1920,11 @@ func (o *%s) Super%s(%s) %s {
|
||||||
w.goTypes.WriteString(gotypes.String())
|
w.goTypes.WriteString(gotypes.String())
|
||||||
w.goCode.WriteString(gocode.String())
|
w.goCode.WriteString(gocode.String())
|
||||||
w.goExports.WriteString(goexports.String())
|
w.goExports.WriteString(goexports.String())
|
||||||
|
|
||||||
|
// add methods from parent class that we are not overriding
|
||||||
|
for _,m := range supmeths {
|
||||||
|
w.ProcessMethodForClass(m,dname)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Add class and instance methods from super class
|
//Add class and instance methods from super class
|
||||||
|
@ -1808,8 +1935,8 @@ func (w *Wrapper) AddSupermethods(i *Interface) {
|
||||||
m2 := &Method{
|
m2 := &Method{
|
||||||
Name: m.Name,
|
Name: m.Name,
|
||||||
GoName: m.GoName,
|
GoName: m.GoName,
|
||||||
Class: i.Name,
|
Class: mc.Class,
|
||||||
GoClass: i.GoName,
|
GoClass: mc.GoClass,
|
||||||
Type: m.Type.CloneToClass(i.Name),
|
Type: m.Type.CloneToClass(i.Name),
|
||||||
ClassMethod: m.ClassMethod,
|
ClassMethod: m.ClassMethod,
|
||||||
Parameters: []*Parameter{},
|
Parameters: []*Parameter{},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user