Cocoa 脚本:接受并返回 NSData



为了在我的可编程Mac应用程序中支持二进制数据交换,如果可能的话,我希望使用AS-ObjC桥接器以NSData的形式接收和交付数据。

例如,我喜欢在AppleScript中使这段代码成为可能:

use framework "Foundation"
set theData to current application's NSData's dataWithContentsOfFile:"/some/binary/file"
tell application "MyApp"
    set raw value to theData
end tell

sdef 包含此值类型和属性:

<suite name="My Suite" code="Demo">
    <value-type name="ObjCNSData" code="NSDa">
        <cocoa class="NSData"/>
    </value-type>
    <class name="application" code="capp">
        <property name="raw data" code="rawD" type="ObjCNSData">
            <cocoa key="rawData"/>
        </property>

然后,我将转换处理程序实现为NSData的扩展,类似于 Sketch 示例如何将 NSColor 转换为值类型"RGB 颜色":

@implementation NSData(DemoScripting)
+ (NSData *)scriptingObjCNSDataWithDescriptor:(NSAppleEventDescriptor *)desc {
    id res = [desc coerceToDescriptorType:'NSDa'];
    // -> res is NULL, which is not getting me any further
}

该描述的描述是:

<NSAppleEventDescriptor: 'obj '{
  'form':'ID  ',
  'want':'ocid',
  'seld':'optr'($E0A8430080600000$),
  'from':null()
}>

同样,调用 [NSScriptObjectSpecifier _scriptingSpecifierWithDescriptor:descriptor] 也会返回 NULL。

那么,如何在我的应用程序代码中获取实际的 NSData 对象呢?

如何将 NSData 对象返回给 AppleScript?

Shane Stanley 确实知道一种方法,它甚至不需要在我的应用程序中使用额外的代码 - 相反,它都可以在 AppleScript 中完成,具有这两个转换函数:

use framework "Foundation"
set nsData1 to current application's NSData's dataWithContentsOfFile:"/etc/hosts"
set asData to my ASDataFromNSData(nsData1)
set nsData2 to my NSDataFromASData(asData)
on ASDataFromNSData(theData)
    set theCode to current application's NSHFSTypeCodeFromFileType("'rdat'")
    return (current application's NSAppleEventDescriptor's descriptorWithDescriptorType:theCode |data|:theData) as data
end ASDataFromNSData
on NSDataFromASData(asData)
    return (current application's NSArray's arrayWithObject:asData)'s firstObject()'s |data|()
end NSDataFromASData

看起来rdat是用于此目的的特殊AppleScript类型,框架会自动处理NSData的转换。不过,我找不到在 AE.framework 的标头中声明的类型。

不过,我仍然必须在应用代码中显式处理此rdat类型。但是我不需要 sdef 中的值类型,并且可以将属性更改为:

<property name="raw data" code="rawD" type="any">
    <cocoa key="rawData"/>
</property>

将数据作为rdat返回是类似的。我的-rawData方法:

return [NSAppleEventDescriptor descriptorWithDescriptorType:'rdat' data:myNSData];

不过,这仅在我将属性类型声明为"any"时才有效。如果我使用 type="rdat" ,脚本调试器将该类型显示为专用的原始数据类型,但在尝试在脚本中设置或获取属性时出现 -10000 错误。

相关内容

  • 没有找到相关文章

最新更新