3

您好,我正在尝试将 google admboads 更新到 V6,但我在绑定以下内容并将其公开给托管世界时遇到了一些麻烦

我有以下结构

typedef struct GADAdSize {
  CGSize size;
  NSUInteger flags;
} GADAdSize;

我在单点触控方面做到了这一点

[StructLayout(LayoutKind.Sequential)]
public struct GADAdSize
{
    public SizeF size;
    public uint flags;
}

我有以下代码

extern GADAdSize const kGADAdSizeBanner;
extern GADAdSize const kGADAdSizeMediumRectangle;

我无法使用 [Field] 属性绑定它,因为文档指定 Field 属性只能用于

  • NSString 引用
  • NSArray 引用
  • 32 位整数 (System.Int32)
  • 32 位浮点数 (System.Single)
  • 64 位浮点数 (System.Double)

所以我尝试了以下两种我能想到的方法

[DllImport ("__Internal")]
    extern static IntPtr kGADAdSizeMediumRectangle ();

public static GADAdSize MediumRectangle 
{
    get 
    {
        object obj = Marshal.PtrToStructure(kGADAdSizeMediumRectangle(), typeof(GADAdSize));
        return (GADAdSize) obj;
    }
}

public static GADAdSize Banner 
{
    get 
    {
        var handle = Dlfcn.dlopen ("libGoogleAdMobAds", 0);
        IntPtr ptr = Dlfcn.GetIntPtr(handle, "kGADAdSizeBanner");   
        Dlfcn.dlclose (handle);     
        object obj = Marshal.PtrToStructure(ptr, typeof(GADAdSize));
        return (GADAdSize) obj;
    }
}

在这两种方式上它都会崩溃

使用 DLLImport 调用 Marshal.PtrToStructure() 时出现空参数异常,第二个异常引发DLLNotFoundException System.ArgumentNullException

提前感谢您的帮助

亚历克斯


编辑:

抱歉@Poupou 我的错,它抛出一个 System.ArgumentNullException 句柄值它的 0 以及 ptr 值它的 0

堆栈跟踪是:

System.ArgumentNullException: Argument cannot be null.
Parameter name: src
  at (wrapper managed-to-native) System.Runtime.InteropServices.Marshal:PtrToStructure (intptr,System.Type)
  at AlexTouch.GoogleAdMobAds.GADAdSizeConstants.get_Banner () [0x00000] in <filename unknown>:0
  at MobclixText.MobclixTextViewController.ViewDidLoad () [0x00006] in /Users/Alex/Projects/MobclixText/MobclixText/MobclixTextViewController.cs:33
  at (wrapper managed-to-native) MonoTouch.ObjCRuntime.Messaging:void_objc_msgSend (intptr,intptr)
  at MonoTouch.UIKit.UIWindow.MakeKeyAndVisible () [0x00010] in /Developer/MonoTouch/Source/monotouch/src/UIKit/UIWindow.g.cs:98
  at MobclixText.AppDelegate.FinishedLaunching (MonoTouch.UIKit.UIApplication app, MonoTouch.Foundation.NSDictionary options) [0x00031] in /Users/Alex/Projects/MobclixText/MobclixText/AppDelegate.cs:44
  at (wrapper managed-to-native) MonoTouch.UIKit.UIApplication:UIApplicationMain (int,string[],intptr,intptr)
  at MonoTouch.UIKit.UIApplication.Main (System.String[] args, System.String principalClassName, System.String delegateClassName) [0x0004c] in /Developer/MonoTouch/Source/monotouch/src/UIKit/UIApplication.cs:38
  at MobclixText.Application.Main (System.String[] args) [0x00000] in /Users/Alex/Projects/MobclixText/MobclixText/Main.cs:17

我想这是由于句柄为0。

关于您的评论

将 dlsym 与特殊标志之一(man dlsym)一起使用可能会有所帮助。

你能给我一个如何使用它的例子吗=)?

亚历克斯


编辑2:

您好@Poupou,感谢您的回答,但是

IntPtr RTLD_MAIN_ONLY = (IntPtr) (-5);
IntPtr ptr = Dlfcn.GetIntPtr (RTLD_MAIN_ONLY, "kGADAdSizeBanner");

我仍然得到ptr等于0任何其他想法?

亚历克斯


编辑3:

好的,我现在尝试以下

IntPtr RTLD_MAIN_ONLY = Dlfcn.dlopen (null, 0);
IntPtr ptr = Dlfcn.dlsym (RTLD_MAIN_ONLY, "kGADAdSizeBanner");              
Console.WriteLine("RTLD_MAIN_ONLY: " + RTLD_MAIN_ONLY);
Console.WriteLine("ptr: " + ptr);

Dlfcn.dlopen (null, 0);正如它现在在这里完成的那样,我得到了一个句柄值-2,但我猜本机链接器现在正在删除符号,我怎样才能防止这种情况发生?

非常感谢您的时间@Poupou

亚历克斯

4

2 回答 2

4

所以我找到了一种获取值的方法。第一部分是说服链接器导出符号(不隐藏任何现有符号)。这可以通过创建(本地)符号的别名(默认为全局)来完成。例如

-gcc_flags="-Xlinker -alias -Xlinker _kGADAdSizeBanner -Xlinker _MTAdSizeBanner"

之后的代码:

IntPtr RTLD_MAIN_ONLY = Dlfcn.dlopen (null, 0);
IntPtr ptr = Dlfcn.dlsym (RTLD_MAIN_ONLY, "MTAdSizeBanner");
object obj2 = Marshal.PtrToStructure(ptr, typeof(GADAdSize));

将为您GADAdSize提供一个值为 320x50 的实例。

您需要重新导出您需要的每个符号 (yuck),但这应该可以将其包含在[LinkWith]属性 (iirc) 中,因此最终用户不需要它。

于 2012-05-17T18:49:41.457 回答
1

您的第二个解决方案是通常使用的解决方案。它从指定的中动态加载符号。OTOH 这适用于 iOS 上的系统库。

为什么 ?因为您自己提供的库将与您的主要可执行文件静态链接。[DllImport("__Internal")这与正常 p/invoke 必须使用的原因相同。

回到符号,dldym有一些选项可以处理主要的可执行文件(或所有加载的代码)。man dlsym在终端窗口上执行以查看它们。这可能(没有尝试过)使用:

 IntPtr RTLD_MAIN_ONLY = (IntPtr) -5;
 IntPtr ptr = Dlfcn.GetIntPtr (RTLD_MAIN_ONLY, "kGADAdSizeBanner"); 

注1:Dlfcn.GetIntPtr是一种实用方法,基本上是dlsym;

注意 2:也请查看其他选项 :-) 如果您得到一个非空(非IntPtr.Zero)指针,那么您可以尝试将其编组为一个SizeF结构。

于 2012-05-10T13:15:37.413 回答