/usr/lib/perl5/Class/MethodMaker/OptExt.pm is in libclass-methodmaker-perl 2.19-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 | # (X)Emacs mode: -*- cperl -*-
package Class::MethodMaker::OptExt;
=head1 NAME
Class::MethodMaker::OptExt - Constants for C::MM's option extension mechanism
=head1 SYNOPSIS
This class is internal to Class::MethodMaker and should not be used by any
clients. It is B<not> part of the public API.
=head1 DESCRIPTION
This class contains the constants used by Class::MethodMaker to determine the
names of its methods dependent upon options invoked.
=cut
# ----------------------------------------------------------------------------
# Pragmas -----------------------------
require 5.006;
use strict;
use warnings;
# Inheritance -------------------------
use base qw( Exporter );
our @EXPORT_OK = qw( OPTEXT );
# Utility -----------------------------
use Carp qw( carp croak );
# ----------------------------------------------------------------------------
# CLASS METHODS --------------------------------------------------------------
# -------------------------------------
# CLASS CONSTANTS
# -------------------------------------
=head1 CLASS CONSTANTS
Z<>
=cut
use constant COMPONENT_TYPES => qw( scalar array hash );
# Max 8 codepoints else fix dereferencing in encode, below
use constant codepoints => [qw( refer decl
postac asgnchk
predefchk defchk
reset
read store )];
# codepoint_value is a map from codepoint to a unique power of two, used to
# check for illegal combinations of options
use constant codepoint_value => +{ map({codepoints->[$_]=>2**$_}
0..$#{codepoints()})
};
use constant cv_reverse => +{ reverse %{codepoint_value()} };
=head2 OPTEXT
OPTEXT is a map from options that are implemented as method extensions to
the option parameters.
Parameter keys are:
=over 4
=item encode
code number (to allow the option combination to be encoded whilst keeping the
length of the subr name no more than 8 chars). encode is required for all
opts (for determining method extension), and must be a power of two.
=item refer
Code for referring to storage (default: '$_[0]->{$name}').
=item decl
Code for declaring storage.
=item postac
Code to execute immediately after any assignment check --- for example, to
initialize storage if necessary
=item asgnchk
Code for checking assignments.
=item defchk
Code for default checking.
=item reset
Code to execute when resetting an element
=item read
Code to execute each time an value is read
=item store
Code to execute each time a value is stored
=back
=cut
# Defines Matrix
#
# codepoint-> refer decl postac asgnchk predefchk defchk reset read store
# option
#
# static X X
# type X
# default X
# default_ctor X
# tie_class X X X
# v1_compat
# read_cb X
# store_cb X
use constant OPTEXT => { DEFAULT => { refer => '$_[0]->{$name}',
decl => '',
postac => '',
asgnchk => '',
predefchk => '',
defchk => '',
reset => '',
read => ['__VALUE__', ''],
store => '',
},
static => { encode => 1,
refer => '$store[0]',
decl => 'my @store;',
},
type => { encode => 2,
asgnchk => <<'END',
for (__FOO__) {
croak(sprintf("Incorrect type for attribute __ATTR__: %s\n" .
" : should be '%s' (or subclass thereof)\n",
(defined($_) ?
(ref($_) ? ref($_) : "plain value(-->$_<--)" ) :
'*undef*'
), $type))
unless ! defined $_ or UNIVERSAL::isa($_, $type);
}
END
},
default => { encode => 4,
defchk => <<'END',
if ( ! exists %%STORAGE%% ) {
%%ASGNCHK__SIGIL__($default)%%
%%STORAGE%% = $default
}
END
},
default_ctor => { encode => 8,
defchk => <<'END',
if ( ! exists %%STORAGE%% ) {
my $default = $dctor->($_[0]);
%%ASGNCHK__SIGIL__($default)%%
%%STORAGE%% = $default
}
END
},
tie_class => { encode => 16,
postac => <<'END',
tie %%STORAGE(__SIGIL__)%%, $tie_class, @tie_args
unless exists %%STORAGE%%;
END
predefchk => <<'END',
tie %%STORAGE(__SIGIL__)%%, $tie_class, @tie_args
unless exists %%STORAGE%%;
END
reset => <<'END',
untie %%STORAGE(__SIGIL__)%%;
END
},
v1_compat => { encode => 32,
},
read_cb => { encode => 64,
read => [(<<'END') x 2],
{ # Encapsulate scope to avoid redefined $v issues
my $v = __VALUE__;
$v = $_->($_[0], $v)
for @read_callbacks;
$v;
}
END
},
store_cb => { encode => 128,
store =><<'END',
my __NAME__ = __VALUE__;
if ( exists %%STORAGE%% ) {
my $old = %%STORAGE%%;
__NAMEREF__ = $_->($_[0], __NAMEREF__, $name, $old) %%V2ONLY%%
__NAMEREF__ = $_->($_[0], __NAMEREF__, $name, $old, __ALL__) %%V1COMPAT%%
for @store_callbacks;
} else {
__NAMEREF__ = $_->($_[0], __NAMEREF__, $name) %%V2ONLY%%
__NAMEREF__ = $_->($_[0], __NAMEREF__, $name, undef, __ALL__) %%V1COMPAT%%
for @store_callbacks;
}
END
},
typex => { encode => 256,
asgnchk => <<'END',
for (__FOO__) {
# $_ += 0;
# croak(sprintf("Incorrect type for attribute __ATTR__: %s\n" .
# " : should be '%s' (or subclass thereof)\n",
# (defined($_) ?
# (ref($_) ? ref($_) : "plain value(-->$_<--)" ) :
# '*undef*'
# ), $typex))
# unless ! defined $_ or UNIVERSAL::isa($_, $typex);
}
END
},
};
# Single value representing the codepoints defined for each option
sub optdefvalue {
my $class = shift;
my ($option) = @_;
my $code = OPTEXT->{$option};
croak "Illegal option name: '$option'\n"
unless defined $code;
my $value = 0;
for ( @{codepoints()} ) {
$value |= codepoint_value->{$_}
if exists $code->{$_};
}
# return split //, unpack "b9", chr($value >> 8) . chr($value & 255);
#print $value;
return split //, unpack "b16", chr($value >> 8) . chr($value & 255);
}
BEGIN {
croak "No encode value found for type $_\n"
for grep ! OPTEXT->{$_}->{encode}, grep $_ ne 'DEFAULT', keys %{OPTEXT()};
}
# -------------------------------------
# CLASS CONSTRUCTION
# -------------------------------------
# -------------------------------------
# CLASS COMPONENTS
# -------------------------------------
=head1 CLASS COMPONENTS
Z<>
=cut
# -------------------------------------
# CLASS HIGHER-LEVEL FUNCTIONS
# -------------------------------------
=head1 CLASS HIGHER-LEVEL FUNCTIONS
Z<>
=cut
=head2 encode
Take a set of options, return a two-letter code being the extension to add to
the method to incorporate the extensions, and a list (arrayref) of the
extensions represented.
=over 4
=item SYNOPSIS
my ($ext, $opt) =
Class::MethodMaker::OptExt->encode([qw( static type foobar )]);
=item ARGUMENTS
=over 4
=item options
The options to encode, as an arrayref of option names
=back
=item RETURNS
=over 4
=item ext
A code (string) to append to a methodname to represent the options used.
=item opts
The options represented by the ext . This is generally a subset of the of
those provided in options, for not all general options are handled by an
encoded methodname.
=back
=back
=cut
sub encode {
my $class = shift;
my ($type, $options) = @_;
{
my @check;
for my $opt (grep exists OPTEXT->{$_}, @$options) {
my @v = $class->optdefvalue($opt);
$check[$_] += $v[$_]
for 0..$#v;
}
if ( grep $_ > 1, @check ) {
local $" = ',';
return;
}
}
my $ext = '';
my @optused;
if ( grep $_ eq $type, COMPONENT_TYPES ) {
my $value = 0;
for (@$options) {
push(@optused, $_), $value += OPTEXT->{$_}->{encode}
if exists OPTEXT->{$_};
}
$ext = sprintf("%04x", $value);
}
return $ext, \@optused;
}
# -------------------------------------
sub option_names { grep $_ ne 'DEFAULT', keys %{OPTEXT()} }
sub optcode {
my $class = shift;
my ($codepoint, $options) = @_;
my $code;
for my $opt (grep exists OPTEXT->{$_}->{$codepoint}, @$options) {
$code = OPTEXT->{$opt}->{$codepoint};
}
if ( ! defined $code ) {
if ( exists OPTEXT->{DEFAULT}->{$codepoint} ) {
$code = OPTEXT->{DEFAULT}->{$codepoint};
} else {
croak "Codepoint '$codepoint' not recognized\n";
}
}
return $code;
}
# -------------------------------------
sub replace {
my $class = shift;
my ($st) = @_;
my %replace;
$replace{$_} = Class::MethodMaker::OptExt->optcode($_, $st)
for @{Class::MethodMaker::OptExt->codepoints};
return %replace;
}
# -------------------------------------
# CLASS HIGHER-LEVEL PROCEDURES
# -------------------------------------
=head1 CLASS HIGHER-LEVEL PROCEDURES
Z<>
=cut
# INSTANCE METHODS -----------------------------------------------------------
# -------------------------------------
# INSTANCE CONSTRUCTION
# -------------------------------------
=head1 INSTANCE CONSTRUCTION
Z<>
=cut
# -------------------------------------
# INSTANCE FINALIZATION
# -------------------------------------
# -------------------------------------
# INSTANCE COMPONENTS
# -------------------------------------
=head1 INSTANCE COMPONENTS
Z<>
=cut
# -------------------------------------
# INSTANCE HIGHER-LEVEL FUNCTIONS
# -------------------------------------
=head1 INSTANCE HIGHER-LEVEL FUNCTIONS
Z<>
=cut
# -------------------------------------
# INSTANCE HIGHER-LEVEL PROCEDURES
# -------------------------------------
=head1 INSTANCE HIGHER-LEVEL PROCEDURES
Z<>
=cut
# ----------------------------------------------------------------------------
=head1 EXAMPLES
Z<>
=head1 BUGS
Z<>
=head1 REPORTING BUGS
Email the development mailing list C<class-mmaker-devel@lists.sourceforge.net>.
=head1 AUTHOR
Martyn J. Pearce
=head1 COPYRIGHT
Copyright (c) 2003 Martyn J. Pearce. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
Z<>
=cut
1; # keep require happy.
__END__
|