GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
FFI::Probe(3) User Contributed Perl Documentation FFI::Probe(3)

FFI::Probe - System detection and probing for FFI extensions.

version 1.56

 use FFI::Probe;
 
 my $probe = FFI::Probe->new;
 $probe->check_header('foo.h');
 ...

This class provides an interface for probing for system capabilities. It is used internally as part of the FFI::Platypus build process, but it may also be useful for extensions that use Platypus as well.

 my $probe = FFI::Probe->new(%args);

Creates a new instance.

log
Path to a log or file handle to write to.
data_filename
Path to a file which will be used to store/cache results.

 my $bool = $probe->check_header($header);

Checks that the given C header file is available. Stores the result, and returns a true/false value.

 my $bool = $probe>check_eval(%args);
headers
Any additional headers.
decl
Any C declarations that need to be made before the "dlmain" function.
stmt
Any C statements that should be made before the evaluation.
eval
Any evaluations that should be returned.

 my $type = $probe->check_type_int($type);

 my $type = $probe->check_type_enum;

 my $type = $probe->check_type_enum;

 my $type = $probe->check_type_float($type);

 my $type = $probe->check_type_pointer;

 $probe->set(@key, $value);

Used internally to store a value.

 $probe->save;

Saves the values already detected.

 my $data = $probe->data;

Returns a hashref of the data already detected.

 $probe->log($string);

Sends the given string to the log.

 $prbe->log_code($string);

Sends the given multi-line code block to the log.

 my $template = $probe->template;

Returns the C code template used for "check_eval" and other "check_" methods.

Author: Graham Ollis <plicease@cpan.org>

Contributors:

Bakkiaraj Murugesan (bakkiaraj)

Dylan Cali (calid)

pipcet

Zaki Mughal (zmughal)

Fitz Elliott (felliott)

Vickenty Fesunov (vyf)

Gregor Herrmann (gregoa)

Shlomi Fish (shlomif)

Damyan Ivanov

Ilya Pavlov (Ilya33)

Petr Písař (ppisar)

Mohammad S Anwar (MANWAR)

Håkon Hægland (hakonhagland, HAKONH)

Meredith (merrilymeredith, MHOWARD)

Diab Jerius (DJERIUS)

Eric Brine (IKEGAMI)

szTheory

José Joaquín Atria (JJATRIA)

Pete Houston (openstrike, HOUSTON)

This software is copyright (c) 2015,2016,2017,2018,2019,2020 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2021-10-28 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.