1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
warn "DL: This is only a partial implementation, and it's likely broken"
require 'ffi'
module DL
TypeMap = {
'0' => :void,
'C' => :char,
'H' => :short,
'I' => :int,
'L' => :long,
'F' => :float,
'D' => :double,
'S' => :string,
's' => :pointer,
'p' => :pointer,
'P' => :pointer,
'c' => :pointer,
'h' => :pointer,
'i' => :pointer,
'l' => :pointer,
'f' => :pointer,
'd' => :pointer,
}
Char2TypeName = {
'0' => 'void',
'C' => 'char',
'H' => 'short',
'I' => 'int',
'L' => 'long',
'F' => 'float',
'D' => 'double',
'S' => 'const char *',
's' => 'char *',
'p' => 'void *',
'P' => 'void *',
'c' => 'char *',
'h' => 'short *',
'i' => 'int *',
'l' => 'long *',
'f' => 'float *',
'd' => 'double *',
'A' => '[]',
'a' => '[]',
}
FFITypes = {
'c' => FFI::Type::INT8,
'h' => FFI::Type::INT16,
'i' => FFI::Type::INT32,
'l' => FFI::Type::LONG,
'f' => FFI::Type::FLOAT32,
'd' => FFI::Type::FLOAT64,
'p' => FFI::Type::POINTER,
's' => FFI::Type::STRING,
}
RTLD_LAZY = FFI::DynamicLibrary::RTLD_LAZY
RTLD_GLOBAL = FFI::DynamicLibrary::RTLD_GLOBAL
RTLD_NOW = FFI::DynamicLibrary::RTLD_NOW
class DLError < StandardError
end
class DLTypeError < DLError
end
def self.find_type(type)
ffi_type = TypeMap[type]
raise DLTypeError.new("Unknown type '#{type}'") unless ffi_type
FFI.find_type(ffi_type)
end
def self.align(offset, align)
mask = align - 1;
off = offset;
((off & mask) != 0) ? (off & ~mask) + align : off
end
def self.sizeof(type)
type = type.split(//)
i = 0
size = 0
while i < type.length
t = type[i]
i += 1
count = String.new
while i < type.length && type[i] =~ /[0123456789]/
count << type[i]
i += 1
end
n = count.empty? ? 1 : count.to_i
ffi_type = FFITypes[t.downcase]
raise DLTypeError.new("unexpected type '#{t}'") unless ffi_type
if t.upcase == t
size = align(size, ffi_type.alignment) + n * ffi_type.size
else
size += n * ffi_type.size
end
end
size
end
class Handle
def initialize(libname, flags = RTLD_LAZY | RTLD_GLOBAL)
@lib = FFI::DynamicLibrary.open(libname, flags)
raise RuntimeError, "Could not open #{libname}" unless @lib
@open = true
begin
yield(self)
ensure
self.close
end if block_given?
end
def close
raise "Closing #{self} not allowed" unless @enable_close
@open = false
end
def sym(func, prototype = "0")
raise "Closed handle" unless @open
address = @lib.find_function(func)
Symbol.new(address, prototype, func) if address && !address.null?
end
def [](func, ty = nil)
sym(func, ty || "0")
end
def enable_close
@enable_close = true
end
def disable_close
@enable_close = false
end
end
def self.find_return_type(type)
# Restrict types to the known-supported ones
raise "Unsupported return type '#{type}'" unless type =~ /[0CHILFDPS]/
DL.find_type(type)
end
def self.find_param_type(type)
# Restrict types to the known-supported ones
raise "Unsupported parameter type '#{type}'" unless type =~ /[CHILFDPS]/
DL.find_type(type)
end
class Symbol
attr_reader :name, :proto
def initialize(address, type = nil, name = nil)
@address = address
@name = name
@proto = type
rt = DL.find_return_type(type[0].chr)
arg_types = []
type[1..-1].each_byte { |t| arg_types << DL.find_param_type(t.chr) } if type.length > 1
@invoker = FFI::Invoker.new(address, arg_types, rt, "default")
if rt == FFI::NativeType::POINTER
def self.call(*args)
[ PtrData.new(@invoker.call(*args)), args ]
end
end
end
def call(*args)
[ @invoker.call(*args), args ]
end
def cproto
cproto = @proto[1..-1].split(//).map { |t| Symbol.char2type(t) }.join(', ')
"#{Symbol.char2type(@proto[0].chr)} #{@name}(#{cproto})"
end
def inspect
"#<DL::Symbol func=0x#{@address.address.to_s(16)} '#{cproto}'>"
end
def to_s
cproto
end
def to_i
@address.address.to_i
end
def self.char2type(ch)
Char2TypeName[ch]
end
end
class PtrData
def initialize(addr, size = nil, sym = nil)
@ptr = addr
end
def self.malloc(size, free = nil)
self.new(FFI::MemoryPointer.new(size))
end
def null?
@ptr.null?
end
def to_ptr
@ptr
end
def struct!(type, *members)
builder = FFI::StructLayoutBuilder.new
i = 0
members.each do |name|
t = type[i].chr
i += 1
if i < type.length && type[i] =~ /[0123456789]/
raise DLTypeError.new("array fields not supported in struct")
end
if t =~ /[CHILFDPS]/
builder.add_field(name, DL.find_type(t))
else
raise DLTypeError.new("Unsupported type '#{t}")
end
end
@layout = builder.build
self
end
def [](name)
@layout.get(@ptr, name)
end
def []=(name, value)
@layout.put(@ptr, name, value)
end
def size
@layout ? @layout.size : @ptr.total
end
end
def self.dlopen(libname)
Handle.new(libname)
end
def self.malloc(size, free = nil)
PtrData.malloc(size, free)
end
end
|