我在 Ruby 中设置 FFI 结构时遇到了一些初学者问题。我想要做的是通过在 FFI::Struct 对象中设置字符串属性来传递指向 C 字符串的指针:
class SpSessionConfig < FFI::Struct
layout :api_version, :int,
:cache_location, :string,
:settings_location, :string,
:application_key, :pointer,
:application_key_size, :int,
:user_agent, :string,
:sp_session_callbacks, :pointer,
:user_data, :pointer
end
end
sessionConf = SpotifyLibrary::SpSessionConfig.new()
puts sessionConf # => '#<SpotifyLibrary::SpSessionConfig:0x9acc00c>'
sessionConf[:api_version] = 1
puts "Api Version: #{sessionConf[:api_version]}"
myTempDir = "tmp"
sessionConf[:cache_location] = myTempDir # !Error!
但是当我运行代码时,我得到了这个错误:
jukebox.rb:44:in `[]=': Cannot set :string fields (ArgumentError)
from jukebox.rb:44:in `<main>'
所以我真的不知道从这里去哪里。
此外,如果您知道有关此主题的任何好的文档或教程,请留下回复!到目前为止,我发现关于Project Kenai的 wiki 文档 非常有用,但越多越好!
谢谢!
我试图将字符串数据成员声明为 [:char, 5] 但这给出了另一个错误:
jukebox.rb:44:in `put': put not supported for FFI::StructLayoutBuilder::ArrayField_Signed8_3 (ArgumentError)
from jukebox.rb:44:in `[]='
from jukebox.rb:44:in `<main>
有一个很好的建议来尝试内存指针类型,我会在今天下班后尝试。