dongyuelian9602 2018-01-30 17:34
浏览 99
已采纳

cgo godefs和Objective-C

I write a program on GoLang with inclusion Objective-C code (call some OSX API) via C GoLang's package and I need to pass variable of type T from Go code to Objective-C code and vice versa. T is structure (or other type). So I need to create compatible (in terms of memory layout) type/variable in GoLang and pass it to Objective-C via unsafe.Pointer casting. For generic C code I use godefs in such cases, but I unable to use godefs for Objective-C. If I try go tool cgo -godefs cgodefs.go

// This is "cgodefs.go" file
package tmp

/*
#cgo CFLAGS: -x objective-c
#cgo LDFLAGS: -framework Cocoa
#import <Cocoa/Cocoa.h>
*/
import "C"

type CGPoint C.CGPoint

I receive tons of errors:

In file included from /Users/unsacrificed/go/src/gui/cgodefs.go:10:
In file included from /System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h:12:
In file included from /System/Library/Frameworks/Foundation.framework/Headers/Foundation.h:8:
/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h:503:1: error: expected identifier or '('
@class NSString, Protocol;
^
/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h:505:9: error: unknown type name 'NSString'
typedef NSString * NSExceptionName NS_EXTENSIBLE_STRING_ENUM;
        ^
/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h:506:9: error: unknown type name 'NSString'
typedef NSString * NSRunLoopMode NS_EXTENSIBLE_STRING_ENUM;
... (100000+ lines of errors)

Interested thing is that I can compile and run GoLang apps with Objective-C via C GoLang's package.

I report to GoLang but he says that

The cgo tool works with C, not Objective-C.

Is there any way to get GoLang equivalent (memory compatible) type for Objective-C type?

  • 写回答

1条回答 默认 最新

  • dongtang1966 2018-03-11 13:12
    关注

    Finally I found a solution. It is possible to do what I want. The only thing I missed: godefs ignores #cgo CFLAGS: -x objective-c line. Solution - pass required CFLAGS to go binary as arguments (-- -x objective-c). Working example:

    // +build ignore
    
    package tmp
    
    //go:generate go tool cgo -godefs -- -x objective-c cgodefs.go
    
    //#import <Cocoa/Cocoa.h>
    import "C"
    
    type CGPoint C.CGPoint
    

    output:

    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -x objective-c cgodefs.go
    
    package tmp
    
    type CGPoint struct {
        X   float64
        Y   float64
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)
  • ¥20 matlab yalmip kkt 双层优化问题