Module: FFI::Library

Defined in:
lib/ffi/library.rb,
lib/ffi/callback.rb

Constant Summary collapse

DEFAULT =
FFI::DynamicLibrary.open(nil, FFI::DynamicLibrary::RTLD_LAZY)

Instance Method Summary collapse

Instance Method Details

#attach_function(mname, a3, a4, a5 = nil) ⇒ Object

Attach C function name to this module.

If you want to provide an alternate name for the module function, supply it after the name, otherwise the C function name will be used.#

After the name, the C function argument types are provided as an Array.

The C function return type is provided last.

Raises:



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
# File 'lib/ffi/library.rb', line 57

def attach_function(mname, a3, a4, a5=nil)
  cname, arg_types, ret_type = a5 ? [ a3, a4, a5 ] : [ mname.to_s, a3, a4 ]

  # Convert :foo to the native type
  arg_types.map! { |e| find_type(e) }
  has_callback = arg_types.any? {|t| t.kind_of?(FFI::CallbackInfo)}
  options = Hash.new
  options[:convention] = defined?(@ffi_convention) ? @ffi_convention : :default
  options[:type_map] = @ffi_typedefs if defined?(@ffi_typedefs)
  options[:enums] = @ffi_enums if defined?(@ffi_enums)

  # Try to locate the function in any of the libraries
  invokers = []
  ffi_libraries.each do |lib|
    begin
      invokers << FFI.create_invoker(lib, cname.to_s, arg_types, find_type(ret_type), options)
    rescue LoadError => ex
    end if invokers.empty?
  end
  invoker = invokers.compact.shift
  raise FFI::NotFoundError.new(cname.to_s, ffi_libraries.map { |lib| lib.name }) unless invoker

  # Setup the parameter list for the module function as (a1, a2)
  arity = arg_types.length
  params = (1..arity).map {|i| "a#{i}" }.join(",")

  # Always use rest args for functions with callback parameters
  if has_callback || invoker.kind_of?(FFI::VariadicInvoker)
    params = "*args, &block"
  end
  call = arity <= 3 && !has_callback && !invoker.kind_of?(FFI::VariadicInvoker)? "call#{arity}" : "call"

  #
  # Attach the invoker to this module as 'mname'.
  #
  if !has_callback && !invoker.kind_of?(FFI::VariadicInvoker)
    invoker.attach(self, mname.to_s)
  else
    self.module_eval <<-code
      @@#{mname} = invoker
      def self.#{mname}(#{params})
        @@#{mname}.#{call}(#{params})
      end
      def #{mname}(#{params})
        @@#{mname}.#{call}(#{params})
      end
    code
  end
  invoker
end

#attach_variable(mname, a1, a2 = nil) ⇒ Object

Raises:



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
# File 'lib/ffi/library.rb', line 107

def attach_variable(mname, a1, a2 = nil)
  cname, type = a2 ? [ a1, a2 ] : [ mname.to_s, a1 ]
  address = nil
  ffi_libraries.each do |lib|
    begin
      address = lib.find_variable(cname.to_s)
      break unless address.nil?
    rescue LoadError
    end
  end

  raise FFI::NotFoundError.new(cname, ffi_libraries) if address.nil? || address.null?
  s = FFI::Struct.new(address, :gvar, find_type(type))
  
  #
  # Attach to this module as mname/mname=
  #
  self.module_eval <<-code
    @@ffi_gvar_#{mname} = s
    def self.#{mname}
      @@ffi_gvar_#{mname}[:gvar]
    end
    def self.#{mname}=(value)
      @@ffi_gvar_#{mname}[:gvar] = value
    end
  code
  
  address
end

#callback(*args) ⇒ Object

Raises:

  • (ArgError)


137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# File 'lib/ffi/library.rb', line 137

def callback(*args)
  raise ArgError, "wrong number of arguments" if args.length < 2 || args.length > 3
  name, params, ret = if args.length == 3
    args
  else
    [ nil, args[0], args[1] ]
  end
  cb = FFI::CallbackInfo.new(find_type(ret), params.map { |e| find_type(e) })

  # Add to the symbol -> type map (unless there was no name)
  unless name.nil?
    @ffi_callbacks = Hash.new unless defined?(@ffi_callbacks)
    @ffi_callbacks[name] = cb
  end

  cb
end

#enum(*args) ⇒ Object



172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# File 'lib/ffi/library.rb', line 172

def enum(*args)
  #
  # enum can be called as:
  # enum :zero, :one, :two  # unnamed enum
  # enum [ :zero, :one, :two ] # equivalent to above
  # enum :foo, [ :zero, :one, :two ] create an enum named :foo
  #
  name, values = if args[0].kind_of?(Symbol) && args[1].kind_of?(Array)
    [ args[0], args[1] ]
  elsif args[0].kind_of?(Array)
    [ nil, args[0] ]
  else
    [ nil, args ]
  end
  @ffi_enums = FFI::Enums.new unless defined?(@ffi_enums)
  @ffi_enums << (e = FFI::Enum.new(values, name))

  # If called as enum :foo, [ :zero, :one, :two ], add a typedef alias
  typedef(e, name) if name
  e
end

#enum_type(name) ⇒ Object



194
195
196
# File 'lib/ffi/library.rb', line 194

def enum_type(name)
  @ffi_enums.find(name) if defined?(@ffi_enums)
end

#enum_value(symbol) ⇒ Object



198
199
200
# File 'lib/ffi/library.rb', line 198

def enum_value(symbol)
  @ffi_enums.__map_symbol(symbol)
end

#ffi_convention(convention) ⇒ Object



28
29
30
# File 'lib/ffi/library.rb', line 28

def ffi_convention(convention)
  @ffi_convention = convention
end

#ffi_lib(*names) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/ffi/library.rb', line 4

def ffi_lib(*names)
  ffi_libs = []
  errors = {}
  names.each do |name|
    [ name, FFI.map_library_name(name) ].each do |libname|
      begin
        lib = FFI::DynamicLibrary.open(libname, FFI::DynamicLibrary::RTLD_LAZY | FFI::DynamicLibrary::RTLD_GLOBAL)
        if lib
          ffi_libs << lib
          break
        end
      rescue Exception => ex
        errors[name] = ex
      end
    end
  end
  if ffi_libs.empty?
    msgs = []
    errors.each {|name, ex| msgs << "Failed to load library '#{name}': #{ex.message}" }
    raise LoadError.new(msgs.join('\n'))
  end

  @ffi_libs = ffi_libs
end

#ffi_librariesObject



32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/ffi/library.rb', line 32

def ffi_libraries
  unless defined?(@ffi_libs) or self.name.nil?
    libs = []
    # Try the exact name (e.g. User32) and all lower case (e.g. LibC -> libc)
    [ self.name, self.name.downcase ].each do |name|
      begin
        libs << FFI::DynamicLibrary.open(name, FFI::DynamicLibrary::RTLD_LAZY | FFI::DynamicLibrary::RTLD_GLOBAL)
      rescue Exception
      end
    end
    @ffi_libs = libs unless libs.empty?
  end
  defined?(@ffi_libs) ? @ffi_libs : [ DEFAULT ]
end

#find_type(name) ⇒ Object



202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'lib/ffi/library.rb', line 202

def find_type(name)
  code = if defined?(@ffi_typedefs) && @ffi_typedefs.has_key?(name)
    @ffi_typedefs[name]
  elsif defined?(@ffi_callbacks) && @ffi_callbacks.has_key?(name)
    @ffi_callbacks[name]
  elsif name.is_a?(Class) && name < FFI::Struct
    FFI::NativeType::POINTER
  elsif name.kind_of?(FFI::Type)
    name
  end
  if code.nil? || code.kind_of?(Symbol)
    FFI.find_type(name)
  else
    code
  end
end

#typedef(current, add, info = nil) ⇒ Object



155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# File 'lib/ffi/library.rb', line 155

def typedef(current, add, info=nil)
  @ffi_typedefs = Hash.new unless defined?(@ffi_typedefs)
  code = if current.kind_of?(FFI::Type)
    current
  elsif current == :enum
    if add.kind_of?(Array)
      self.enum(add)
    else
      self.enum(info, add)
    end
  else
    @ffi_typedefs[current] || FFI.find_type(current)
  end

  @ffi_typedefs[add] = code
end