模块 Fiddle::Importer
一个 DSL,提供动态加载库并围绕它们构建模块的方法,包括调用已加载的 C 库中的外部函数。
示例¶ ↑
require 'fiddle' require 'fiddle/import' module LibSum extend Fiddle::Importer dlload './libsum.so' extern 'double sum(double*, int)' extern 'double split(double)' end
属性
公共实例方法
返回映射到 name
的函数,该函数由 Fiddle::Importer.extern
或 Fiddle::Importer.bind
创建。
# File fiddle/lib/fiddle/import.rb, line 237 def [](name) @func_map[name] end
使用给定的 opts
作为绑定参数,使用给定的块从给定的 C signature
创建一个全局方法。
# File fiddle/lib/fiddle/import.rb, line 193 def bind(signature, *opts, &blk) name, ctype, argtype = parse_signature(signature, type_alias) h = parse_bind_options(opts) case h[:callback_type] when :bind, nil f = bind_function(name, ctype, argtype, h[:call_type], &blk) else raise(RuntimeError, "unknown callback type: #{h[:callback_type]}") end @func_map[name] = f #define_method(name){|*args,&block| f.call(*args,&block)} begin /^(.+?):(\d+)/ =~ caller.first file, line = $1, $2.to_i rescue file, line = __FILE__, __LINE__+3 end module_eval(<<-EOS, file, line) def #{name}(*args,&block) @func_map['#{name}'].call(*args,&block) end EOS module_function(name) f end
返回 name
函数的新闭包包装器。
-
ctype
是函数的返回类型 -
argtype
是传递给回调函数的参数数组 -
call_type
是闭包的 abi -
block
传递给回调
# File fiddle/lib/fiddle/import.rb, line 313 def bind_function(name, ctype, argtype, call_type = nil, &block) abi = CALL_TYPE_TO_ABI[call_type] closure = Class.new(Fiddle::Closure) { define_method(:call, block) }.new(ctype, argtype, abi) Function.new(closure, argtype, ctype, abi, name: name) end
创建一个类来包装具有值 ty
的 C 结构体
# File fiddle/lib/fiddle/import.rb, line 244 def create_value(ty, val=nil) s = struct([ty + " value"]) ptr = s.malloc() if( val ) ptr.value = val end return ptr end
为给定的 libs
创建一个句柄数组,可以是 Fiddle::Handle
、Fiddle::Importer
的实例,或者使用 Fiddle.dlopen
创建一个新的 Fiddle::Handle
实例。
如果无法加载库,则会引发 DLError
错误。
# File fiddle/lib/fiddle/import.rb, line 76 def dlload(*libs) handles = libs.collect{|lib| case lib when nil nil when Handle lib when Importer lib.handlers else Fiddle.dlopen(lib) end }.flatten() @handler = CompositeHandler.new(handles) @func_map = {} @type_alias = {} end
根据给定的 C signature
创建一个全局方法。
# File fiddle/lib/fiddle/import.rb, line 169 def extern(signature, *opts) symname, ctype, argtype = parse_signature(signature, type_alias) opt = parse_bind_options(opts) f = import_function(symname, ctype, argtype, opt[:call_type]) name = symname.gsub(/@.+/,'') @func_map[name] = f # define_method(name){|*args,&block| f.call(*args,&block)} begin /^(.+?):(\d+)/ =~ caller.first file, line = $1, $2.to_i rescue file, line = __FILE__, __LINE__+3 end module_eval(<<-EOS, file, line) def #{name}(*args, &block) @func_map['#{name}'].call(*args,&block) end EOS module_function(name) f end
如果没有任何句柄打开,则会引发错误。
# File fiddle/lib/fiddle/import.rb, line 266 def handler (@handler ||= nil) or raise "call dlload before importing symbols and functions" end
返回一个新的 Fiddle::Function
实例,该实例位于给定 name
函数的内存地址。
如果 name
不存在,则会引发 DLError
错误。
-
argtype
是一个参数数组,传递给name
函数。 -
ctype
是函数的返回类型 -
call_type
是函数的 ABI。
另请参见 Fiddle:Function.new
参见 Fiddle::CompositeHandler.sym
和 Fiddle::Handler.sym
# File fiddle/lib/fiddle/import.rb, line 296 def import_function(name, ctype, argtype, call_type = nil) addr = handler.sym(name) if( !addr ) raise(DLError, "cannot find the function: #{name}()") end Function.new(addr, argtype, ctype, CALL_TYPE_TO_ABI[call_type], name: name) end
返回一个新的 Fiddle::Pointer
实例,该实例位于给定 name
符号的内存地址。
如果 name
不存在,则会引发 DLError
错误。
参见 Fiddle::CompositeHandler.sym
和 Fiddle::Handle.sym
# File fiddle/lib/fiddle/import.rb, line 276 def import_symbol(name) addr = handler.sym(name) if( !addr ) raise(DLError, "cannot find the symbol: #{name}") end Pointer.new(addr) end
返回一个新的 C 结构实例,该实例具有 addr
地址处的 ty
值。
# File fiddle/lib/fiddle/import.rb, line 256 def import_value(ty, addr) s = struct([ty + " value"]) ptr = s.new(addr) return ptr end
返回 ty
的大小,使用 Fiddle::Importer.parse_ctype
确定 C 类型和相应的 Fiddle
常量。
# File fiddle/lib/fiddle/import.rb, line 101 def sizeof(ty) case ty when String ty = parse_ctype(ty, type_alias).abs() case ty when TYPE_CHAR return SIZEOF_CHAR when TYPE_SHORT return SIZEOF_SHORT when TYPE_INT return SIZEOF_INT when TYPE_LONG return SIZEOF_LONG when TYPE_FLOAT return SIZEOF_FLOAT when TYPE_DOUBLE return SIZEOF_DOUBLE when TYPE_VOIDP return SIZEOF_VOIDP when TYPE_CONST_STRING return SIZEOF_CONST_STRING when TYPE_BOOL return SIZEOF_BOOL else if defined?(TYPE_LONG_LONG) and ty == TYPE_LONG_LONG return SIZEOF_LONG_LONG else raise(DLError, "unknown type: #{ty}") end end when Class if( ty.instance_methods().include?(:to_ptr) ) return ty.size() end end return Pointer[ty].size() end
创建一个类来包装 signature
描述的 C 结构。
MyStruct = struct ['int i', 'char c']
# File fiddle/lib/fiddle/import.rb, line 222 def struct(signature) tys, mems = parse_struct_signature(signature, type_alias) Fiddle::CStructBuilder.create(CStruct, tys, mems) end
将 alias_type
的类型别名设置为 orig_type
# File fiddle/lib/fiddle/import.rb, line 95 def typealias(alias_type, orig_type) @type_alias[alias_type] = orig_type end
创建一个类来包装由 signature
描述的 C 联合体。
MyUnion = union ['int i', 'char c']
# File fiddle/lib/fiddle/import.rb, line 230 def union(signature) tys, mems = parse_struct_signature(signature, type_alias) Fiddle::CStructBuilder.create(CUnion, tys, mems) end
私有实例方法
# File fiddle/lib/fiddle/import.rb, line 140 def parse_bind_options(opts) h = {} while( opt = opts.shift() ) case opt when :stdcall, :cdecl h[:call_type] = opt when :carried, :temp, :temporal, :bind h[:callback_type] = opt h[:carrier] = opts.shift() else h[opt] = true end end h end