
FFI::Raw - Perl bindings to the portable FFI library (libffi)

use FFI::Raw;
my $cos = FFI::Raw -> new(
'libm.so', 'cos',
FFI::Raw::double, # return value
FFI::Raw::double # arg #1
);
say $cos -> call(2.0);

FFI::Raw provides a raw foreign function interface for Perl based on libffi. It can access and call functions exported by shared libraries without the need to write C/XS code.
Dynamic symbols can be automatically resolved at runtime so that the only information needed to use FFI::Raw is the name (or path) of the target library, the name of the function to call and its signature (though it is also possible to pass a function pointer).
Note that this module has nothing to do with FFI.

Create a new FFI::Raw object. It loads $library, finds the function $function with return type $return_type and creates a calling interface.
This function takes also a variable number of types, representing the argument of the wanted function.
Create a new FFI::Raw object from the $function_ptr function pointer.
This function takes also a variable number of types, representing the argument of the wanted function.
Execute the FFI::Raw function $self. This function takes also a variable number of arguments, which are passed to the called function. The argument types must match the types passed to new.
The FFI::Raw object can be used as a CODE reference as well. Dereferencing the object will work just like call():
$cos -> call(2.0); # normal call() call
$cos -> (2.0); # dereference as CODE ref
This works becasue FFI::Raw overloads the &{} operator.

Create a FFI::Raw::MemPtr. This is a shortcut for FFI::Raw::MemPtr->new(...).
Create a FFI::Raw::Callback. This is a shortcut for FFI::Raw::Callback->new(...).

Return a FFI::Raw void type.
Return a FFI::Raw integer type.
Return a FFI::Raw unsigned integer type.
Return a FFI::Raw short integer type.
Return a FFI::Raw unsigned short integer type.
Return a FFI::Raw char type.
Return a FFI::Raw unsigned char type.
Return a FFI::Raw float type.
Return a FFI::Raw double type.
Return a FFI::Raw string type.
Return a FFI::Raw pointer type.

Alessandro Ghedini <alexbio@cpan.org>


Copyright 2012 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.