Class: GirFFI::CallbackBase
- Inherits:
-
Proc
- Object
- Proc
- GirFFI::CallbackBase
show all
- Extended by:
- FFI::DataConverter, TypeBase
- Defined in:
- lib/gir_ffi/callback_base.rb
Overview
Base module for callbacks and vfuncs. NOTE: Another option would be to derive this class from FFI::Function, allowing a more natural implementation of from_native, to_native and wrap.
Constant Summary
collapse
- CALLBACKS =
{}
Class Method Summary
collapse
Instance Method Summary
collapse
Methods included from TypeBase
gir_ffi_builder, gir_info
Class Method Details
.copy_value_to_pointer(value, pointer) ⇒ Object
82
83
84
|
# File 'lib/gir_ffi/callback_base.rb', line 82
def self.copy_value_to_pointer(value, pointer)
pointer.put_pointer 0, to_native(value, nil)
end
|
.drop_callback(prc) ⇒ Object
42
43
44
|
# File 'lib/gir_ffi/callback_base.rb', line 42
def self.drop_callback(prc)
CALLBACKS.delete prc.object_id
end
|
.from(prc) ⇒ Object
Create Callback from a Proc. Makes sure arguments are properly wrapped, and the callback is stored to prevent garbage collection.
48
49
50
51
52
|
# File 'lib/gir_ffi/callback_base.rb', line 48
def self.from(prc)
wrap_proc(prc).tap do |cb|
store_callback cb
end
end
|
.from_native(value, _context) ⇒ Object
TODO: Return instance of this class
17
18
19
20
21
|
# File 'lib/gir_ffi/callback_base.rb', line 17
def self.from_native(value, _context)
return nil if !value || value.null?
FFI::Function.new(gir_ffi_builder.return_ffi_type,
gir_ffi_builder.argument_ffi_types, value)
end
|
.get_value_from_pointer(pointer, offset) ⇒ Object
86
87
88
|
# File 'lib/gir_ffi/callback_base.rb', line 86
def self.get_value_from_pointer(pointer, offset)
from_native pointer.get_pointer(offset), nil
end
|
.native_type ⇒ Object
12
13
14
|
# File 'lib/gir_ffi/callback_base.rb', line 12
def self.native_type
FFI::Type::POINTER
end
|
.store_callback(prc) ⇒ Object
38
39
40
|
# File 'lib/gir_ffi/callback_base.rb', line 38
def self.store_callback(prc)
CALLBACKS[prc.object_id] = prc
end
|
.to_ffi_type ⇒ Object
66
67
68
|
# File 'lib/gir_ffi/callback_base.rb', line 66
def self.to_ffi_type
self
end
|
.to_native(value, _context) ⇒ Object
23
24
25
26
27
28
29
30
|
# File 'lib/gir_ffi/callback_base.rb', line 23
def self.to_native(value, _context)
case value
when CallbackBase
value.to_native
when FFI::Function
value
end
end
|
.wrap(ptr) ⇒ Object
32
33
34
|
# File 'lib/gir_ffi/callback_base.rb', line 32
def self.wrap(ptr)
from_native ptr, nil
end
|
.wrap_proc(prc) ⇒ Object
54
55
56
57
58
59
60
61
62
63
64
|
# File 'lib/gir_ffi/callback_base.rb', line 54
def self.wrap_proc(prc)
return unless prc
new do |*args|
begin
call_with_argument_mapping(prc, *args)
rescue => e
GLib::MainLoop.handle_exception e
end
end
end
|
Instance Method Details
#to_native ⇒ Object
70
71
72
73
74
75
76
|
# File 'lib/gir_ffi/callback_base.rb', line 70
def to_native
@to_native ||= begin
builder = self.class.gir_ffi_builder
FFI::Function.new(builder.return_ffi_type,
builder.argument_ffi_types, self)
end
end
|
#to_ptr ⇒ Object
78
79
80
|
# File 'lib/gir_ffi/callback_base.rb', line 78
def to_ptr
to_native.to_ptr
end
|