1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 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 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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
NAME
FFI::Platypus::Type::Enum - Custom platypus type for dealing with C
enumerated types
VERSION
version 0.06
SYNOPSIS
C:
enum {
DEFAULT,
BETTER,
BEST = 12
} foo_t;
foo_t
f(foo_t arg)
{
return foo_t;
}
Perl with strings:
use FFI::Platypus 1.00;
my $ffi = FFI::Platypus->new( api => 1 );
$ffi->load_custom_type('::Enum', 'foo_t',
'default',
'better',
['best' => 12],
);
$ffi->attach( f => ['foo_t'] => 'foo_t' );
f("default") eq 'default'; # true
f("default") eq 'better'; # false
print f("default"), "\n"; # default
print f("better"), "\n"; # better
print f("best"), "\n"; # best
Perl with constants:
use FFI::Platypus 1.00;
my $ffi = FFI::Platypus->new( api => 1 );
$ffi->load_custom_type('::Enum', 'foo_t',
{ rev => 'int', package => 'Foo', prefix => 'FOO_' },
'default',
'better',
['best' => 12],
);
$ffi->attach( f => ['foo_t'] => 'foo_t' );
f(Foo::FOO_DEFAULT) == Foo::FOO_DEFAULT; # true
f(Foo::FOO_DEFAULT) == Foo::FOO_BETTER; # false
DESCRIPTION
This type plugin is a helper for making enumerated types. It makes the
most sense to use this when you have an enumerated type with a small
number of possible values. For a large set of enumerated values or
constants, see FFI::Platypus::Constant.
This type plugin has two modes:
string
In string mode, string representations of the enum values are
converted into the integer enum values when passed into C, and the
enums are converted back into strings when coming from C back into
Perl. You can also pass in the integer values.
constant
In constant mode, constants are defined in the specified package, and
with the optional prefix. The string representation or integer
constants can be passed into C, but the integer constants are
returned from C back into Perl.
In both modes, if you attempt to pass in a value that isn't one of the
possible enum values, an exception will be thrown.
OPTIONS
The general form of the custom type load is:
$ffi->load_custom_type('::Enum', $name, \%options, @values);
$ffi->load_custom_type('::Enum', $name, @values);
The enumerated values are specified as a list of strings and array
references.
string
$ffi->load_custom_type('::Enum', $name, $string1, $string2, ... );
For strings the constant value starts at zero (0) and increases by
one for each possible value.
array reference
$ffi->load_custom_type('::Enum', $name, [ $value_name, $value, %options ]);
$ffi->load_custom_type('::Enum', $name, [ $value_name, %options ]);
You can use an array reference to include an explicit integer value,
rather than using the implicit incremented value. You can also use
the array reference for value options. If the value isn't included
(that is if there are an odd number of values in the array
reference), then the implicit incremented value will be used.
Value options:
alias
$ffi->load_custom_type('::Enum, $name, [ $value_name, $value, alias => \@aliases ]);
$ffi->load_custom_type('::Enum, $name, [ $value_name, alias => \@aliases ]);
The alias option lets you specify value aliases. For example,
suppose you have an enum definition like:
enum {
FOO,
BAR,
BAZ=BAR,
ABC,
XYZ
} foo_t;
The Perl definition would be:
$ffi->load_custom_type('::Enum', 'foo_t',
'foo',
['bar', alias => ['baz']],
'abc',
'xyz',
);
Type options may be passed in as a hash reference after the type name.
Type options:
maps
my @maps;
$ffi->load_custom_type('::Enum', $name, { maps => \@maps }, ... );
my($str,$int,$type) = @maps;
If set to an empty array reference, this will be filled with the
string, integer and native type for the enum.
package
$ffi->load_custom_type('::Enum', $name, { package => $package }, ... );
$ffi->load_custom_type('::Enum', $name, { package => \@package }, ... ); # version 0.05
This option specifies the Perl package where constants will be
defined. If not specified, then no constants will be generated.
Unless otherwise specified (see 'casing' below), the constants will
be the upper case of the value names as per the usual convention.
[version 0.05]
As of version 0.05, you can specify multiple packages to create the
constants via an array reference.
prefix
$ffi->load_custom_type('::Enum', $name, { prefix => $prefix }, ... );
This specifies an optional prefix to give each constant. If not
specified, then no prefix will be used.
rev
$ffi->load_custom_type('::Enum', $name, { rev => 'int' }, ... );
$ffi->load_custom_type('::Enum', $name, { rev => 'str' }, ... );
$ffi->load_custom_type('::Enum', $name, { rev => 'dualvar' }, ... ); # version 0.05
This specifies what should be returned for C functions that return
the enumerated type. For strings, use str, and for integer constants
use int.
(rev is short for "reverse")
[version 0.05]
As of version 0.05, dualvar can be specified to return a
string/integer dualvar.
type
$ffi->load_custom_type('::Enum', $name, { type => $type }, ... );
This specifies the integer type that should be used for the
enumerated type. The default is to use enum for types that only have
positive possible values and senum for types that have possible
negative values. (Note that on some platforms these two types may
actually be the same).
You can also use other integer types, which is useful if the enum is
only used to define constants, and the values are stored in a type
smaller than the default for enum or senum. For example:
C:
enum {
DEFAULT,
BETTER,
BEST = 12
} foo_enum;
typedef uint8_t foo_t;
/*
* you are expected to use the constants from foo_enum,
* but the signature actually uses a uint8_t
*/
void f(foo_t);
Perl:
$ffi->load_custom_type('::Enum', 'foo_t',
{ type => 'uint8' },
'default',
'better',
[best => 12],
);
$ffi->attach( f => [ 'foo_t' ] => 'void' );
casing
[version 0.06]
$ffi->load_custom_type('::Enum', $name, { casing => 'upper' }, ... );
$ffi->load_custom_type('::Enum', $name, { casing => 'keep' }, ... );
When in constant mode, all constant names are by default generated in
uppercase as is conventional. However, some libraries will on
occasion define constant names in mixed case. For these cases, the
casing option, added in version 0.06, can be set to keep to prevent
the names from being modified. The only other allowed value is upper,
which is the default.
SEE ALSO
FFI::Platypus
FFI::C
AUTHOR
Author: Graham Ollis <plicease@cpan.org>
Contributors:
José Joaquín Atria (JJATRIA)
COPYRIGHT AND LICENSE
This software is copyright (c) 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.
|