Module: FFI
Overview
Copyright © 2008-2010 Wayne Meissner Copyright © 2008, 2009 Andrea Fazzi Copyright © 2008, 2009 Luc Heinrich
This file is part of ruby-ffi.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
Redistributions in binary form must reproduce the above copyright notice this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
Neither the name of the Ruby FFI project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Constant Summary
-
CURRENT_PROCESS =
# File 'lib/ffi/library.rb', line 34USE_THIS_PROCESS_AS_LIBRARY = FFI.make_shareable(Object.new)
-
CallbackInfo =
# File 'ext/ffi_c/FunctionInfo.c', line 306rbffi_FunctionTypeClass
-
FunctionInfo =
# File 'ext/ffi_c/FunctionInfo.c', line 310rbffi_FunctionTypeClass
-
NativeLibrary =
Backward compatibility for
::FFI::DynamicLibrary
-
TypeDefs =
# File 'ext/ffi_c/Type.c', line 319Document-constant
-
VERSION =
# File 'lib/ffi/version.rb', line 2'1.17.0'
Class Attribute Summary
- .errno rw
- .errno=(error) rw
Class Method Summary
- .__typedef(old, add)
-
._async_cb_dispatcher_atfork_child
Ruby code will call this method in a
Process._fork
patch. -
.add_typedef(old, add) ⇒ Type
Add a definition type to type definitions.
-
.find_type(name, type_map = nil) ⇒ Type
Find a type in
type_map
(TypeDefs, by default) from a type objet, a type name (symbol). -
.make_shareable(obj)
This is for
FFI
internal use only. -
.map_library_name(lib) ⇒ String
Transform a generic library name to a platform library name.
-
.type_size(type) ⇒ Integer
Get
type
size, in bytes. -
.typedef(old, add) ⇒ Type
Add a definition type to type definitions.
-
.custom_typedefs
mod_func
Truffleruby and JRuby don’t support Ractor so far.
Instance Method Summary
::FFI::LegacyForkTracking::IOExt
- Included
::FFI::LegacyForkTracking::KernelExt
- Included
ModernForkTracking
- Included
Class Attribute Details
.errno (rw)
[ GitHub ].errno=(error) (rw)
Class Method Details
.__typedef(old, add)
[ GitHub ]._async_cb_dispatcher_atfork_child
Ruby code will call this method in a Process._fork
patch
# File 'ext/ffi_c/Function.c', line 255
static VALUE async_cb_dispatcher_atfork_child(VALUE self) { struct async_cb_dispatcher *ctx = async_cb_dispatcher_get(); if (ctx) { async_cb_dispatcher_initialize(ctx); } return Qnil; }
.add_typedef(old, add) ⇒ Type
Add a definition type to type definitions.
The type definition is local per Ractor.
# File 'lib/ffi/types.rb', line 62
def add_typedef(old, add) typedef old, add end
.custom_typedefs (mod_func)
Truffleruby and JRuby don’t support Ractor so far. So they don’t need separation between builtin and custom types.
# File 'ext/ffi_c/Type.c', line 258
static VALUE custom_typedefs(VALUE self) { #if HAVE_RB_EXT_RACTOR_SAFE VALUE hash = rb_ractor_local_storage_value(custom_typedefs_key); if (hash == Qnil) { hash = rb_hash_new(); rb_ractor_local_storage_value_set(custom_typedefs_key, hash); } #else static VALUE hash = Qundef; if (hash == Qundef) { rb_global_variable(&hash); hash = rb_hash_new(); } #endif return hash; }
.find_type(name, type_map = nil) ⇒ Type
Find a type in type_map
(TypeDefs, by default) from a type objet, a type name (symbol). If name
is a ::FFI::DataConverter
, a new ::FFI::Type::Mapped
is created.
# File 'lib/ffi/types.rb', line 76
def find_type(name, type_map = nil) if name.is_a?(Type) name elsif type_map&.has_key?(name) type_map[name] elsif (tm=custom_typedefs).has_key?(name) tm[name] elsif TypeDefs.has_key?(name) TypeDefs[name] elsif name.is_a?(DataConverter) # Add a typedef so next time the converter is used, it hits the cache tm = (type_map || custom_typedefs) tm[name] = Type::Mapped.new(name) else raise TypeError, "unable to resolve type '#{name}'" end end
.map_library_name(lib) ⇒ String
Transform a generic library name to a platform library name
# File 'lib/ffi/library.rb', line 46
def self.map_library_name(lib) # Mangle the library name to reflect the native library naming conventions LibraryPath.wrap(lib).to_s end
.type_size(type) ⇒ Integer
Get type
size, in bytes.
# File 'lib/ffi/types.rb', line 101
def type_size(type) find_type(type).size end
.typedef(old, add) ⇒ Type
Add a definition type to type definitions.
The type definition is local per Ractor.
# File 'lib/ffi/types.rb', line 56
def typedef(old, add) tm = custom_typedefs tm[add] = find_type(old) end