/usr/share/perl5/MooX/Struct.pm is in libmoox-struct-perl 0.013-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 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 | package MooX::Struct;
use 5.008;
use strict;
use warnings;
use utf8;
BEGIN {
$MooX::Struct::AUTHORITY = 'cpan:TOBYINK';
$MooX::Struct::VERSION = '0.013';
}
use Moo 1.000000;
use Object::ID 0 qw( );
use Scalar::Does 0 qw( does );
use overload
q[""] => 'TO_STRING',
q[bool] => sub { 1 },
q[@{}] => 'TO_ARRAY',
q[=] => 'CLONE',
fallback => 1;
METHODS: {
no warnings;
sub OBJECT_ID { goto \&Object::ID::object_id };
sub FIELDS { qw() };
sub TYPE { +undef };
sub TO_ARRAY { [ map {; $_[0]->$_ } $_[0]->FIELDS ] };
sub TO_HASH { +{ map {; $_ => $_[0]->$_ } $_[0]->FIELDS } };
sub TO_STRING { join q[ ], @{ $_[0]->TO_ARRAY } };
sub CLONE { my $s = shift; ref($s)->new(%{$s->TO_HASH}, @_) };
};
sub BUILDARGS
{
my $class = shift;
my @fields = $class->FIELDS;
if (
@_ == 1 and
does($_[0], 'ARRAY') and
not does($_[0], 'HASH')
)
{
my @values = @{ $_[0] };
Carp::confess("too many values passed to constructor (expected @fields); stopped")
unless @fields >= @values;
no warnings;
return +{
map {
$fields[$_] => $values[$_];
} 0 .. $#values
}
}
elsif (@_ == 1 and does($_[0], 'HASH') and not ref($_[0]) eq 'HASH')
{
# help Moo::Object!
@_ = +{ %{$_[0]} };
}
my $hashref = $class->SUPER::BUILDARGS(@_);
# my %tmp = map { $_ => 1 } keys %$hashref;
# delete $tmp{$_} for @fields;
# if (my @unknown = sort keys %tmp)
# {
# Carp::confess("unknown keys passed to constructor (@unknown); stopped");
# }
return $hashref;
}
sub EXTEND
{
my ($invocant, @args) = @_;
my $base = $invocant;
$base = ref $invocant if ref $invocant;
my $processor = 'MooX::Struct::Processor'->new;
while (@args) {
last unless $args[0] =~ /^-(.+)$/;
$processor->flags->{ lc($1) } = !!shift @args;
}
my $subname = undef;
$subname = ${ shift @args } if ref($args[0]) eq 'SCALAR';
my $new_class = $processor->make_sub(
$subname,
[ -extends => [$base], @args ],
)->();
return $new_class unless ref $invocant;
bless $invocant => $new_class;
}
# This could do with some improvement from a Data::Printer expert.
#
my $done = 0;
sub _data_printer
{
require Data::Printer::Filter;
require Term::ANSIColor;
my $self = shift;
my @values = map { scalar &Data::Printer::p(\$_) } @$self;
my $label = Term::ANSIColor::colored($self->TYPE||'struct', 'bright_yellow');
if (grep /\n/, @values)
{
return sprintf(
"%s[\n\t%s,\n]",
$label,
join(qq[,\n\t], map { s/\n/\n\t/gm; $_ } @values),
);
}
sprintf('%s[ %s ]', $label, join q[, ], @values);
}
BEGIN {
package MooX::Struct::Processor;
{
no warnings;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.013';
}
sub _uniq { my %seen; grep { not $seen{$_}++ } @_ };
use Moo 1.000000;
use Carp 0 qw( confess );
use Data::OptList 0 qw( );
use Sub::Install 0 qw( install_sub );
use Scalar::Does 0 qw( does blessed looks_like_number );
use namespace::clean qw( );
use B::Hooks::EndOfScope qw( on_scope_end );
has flags => (
is => 'ro',
isa => sub { die "flags must be HASH" unless does $_[0], 'HASH' },
default => sub { +{} },
);
has class_map => (
is => 'ro',
isa => sub { die "class_map must be HASH" unless does $_[0], 'HASH' },
default => sub { +{} },
);
has base => (
is => 'ro',
default => sub { 'MooX::Struct' },
);
has trace => (
is => 'lazy',
);
sub _build_trace
{
$ENV{PERL_MOOX_STRUCT_TRACE}
or shift->flags->{trace};
}
has trace_handle => (
is => 'lazy',
);
sub _build_trace_handle
{
require IO::Handle;
\*STDERR;
}
my $counter = 0;
sub create_class
{
my ($self, $opts) = @_;
my $klass;
for my $o (@$opts) {
next unless $o->[0] eq '-class';
$klass = ref($o->[1]) eq 'ARRAY' ? join('::', @{$o->[1]}) : ${$o->[1]};
last;
}
$klass = sprintf('%s::__ANON__::%04d', $self->base, ++$counter) unless defined $klass;
"Moo"->_set_superclasses($klass, $self->base);
"Moo"->_maybe_reset_handlemoose($klass);
if ($self->trace)
{
$self->trace_handle->printf(
"package %s;\nuse Moo;\n",
$klass,
);
}
return $klass;
}
sub process_meta
{
my ($self, $klass, $name, $val) = @_;
if ($name eq '-extends' or $name eq '-isa')
{
my @parents = map {
exists $self->class_map->{$_}
? $self->class_map->{$_}->()
: $_
} @$val;
"Moo"->_set_superclasses($klass, @parents);
"Moo"->_maybe_reset_handlemoose($klass);
if ($self->trace)
{
$self->trace_handle->printf(
"extends qw(%s)\n",
join(q[ ] => @parents),
);
}
return map { $_->can('FIELDS') ? $_->FIELDS : () } @parents;
}
elsif ($name eq '-with')
{
require Moo::Role;
"Moo::Role"->apply_roles_to_package($klass, @$val);
"Moo"->_maybe_reset_handlemoose($klass);
if ($self->trace)
{
$self->trace_handle->printf(
"with qw(%s)\n",
join(q[ ] => @$val),
);
}
return
# map { my $role = $_; grep { not ref $_ } @{ $Moo::Role::INFO{$role}{attributes} } }
# @$val;
}
elsif ($name eq '-class')
{
# skip; already handled by 'create_class' method (hopefully)
}
else
{
confess("option '$name' unknown");
}
return;
}
sub process_method
{
my ($self, $klass, $name, $coderef) = @_;
install_sub {
into => $klass,
as => $name,
code => $coderef,
};
if ($self->trace)
{
$self->trace_handle->printf(
"sub %s { ... }\n",
$name,
);
if ($self->flags->{deparse})
{
require B::Deparse;
my $code = "B::Deparse"->new(qw(-q -si8T))->coderef2text($coderef);
$code =~ s/^/# /mig;
$self->trace_handle->printf("$code\n");
}
}
return;
}
sub process_spec
{
my ($self, $klass, $name, $val) = @_;
my %spec = (
is => ($self->flags->{rw} ? 'rw' : 'ro'),
( does($val, 'ARRAY')
? @$val
: ( does($val,'HASH') ? %$val : () )
),
);
if ($name =~ /^(.+)\!$/)
{
$name = $1;
$spec{required} = 1;
}
if ($name =~ /^\@(.+)/)
{
$name = $1;
$spec{isa} ||= sub {
die "wrong type for '$name' (not arrayref)"
unless does($_[0], 'ARRAY');
};
}
elsif ($name =~ /^\%(.+)/)
{
$name = $1;
$spec{isa} ||= sub {
die "wrong type for '$name' (not hashref)"
unless does($_[0], 'HASH');
};
}
elsif ($name =~ /^\+(.+)/)
{
$name = $1;
$spec{isa} ||= sub {
die "wrong type for '$name' (not number)"
unless looks_like_number($_[0]);
};
$spec{default} ||= sub { 0 } unless $spec{required};
}
elsif ($name =~ /^\$(.+)/)
{
$name = $1;
$spec{isa} ||= sub {
my $ref = ref($_[0]);
die "wrong type for '$name' (should not be arrayref or hashref)"
if $ref eq 'ARRAY' || $ref eq 'HASH';
};
}
return ($name, \%spec);
}
sub process_attribute
{
my ($self, $klass, $name, $val) = @_;
my $spec;
($name, $spec) = $self->process_spec($klass, $name, $val);
if ($self->trace)
{
require Data::Dumper;
my $spec_str = "Data::Dumper"->new([$spec])->Terse(1)->Indent(0)->Sortkeys(1)->Dump;
$spec_str =~ s/(^\{)|(\}$)//g;
$self->trace_handle->printf(
"has %s => (%s);\n",
$name,
$spec_str,
);
if ($self->flags->{deparse} and $spec->{isa})
{
require B::Deparse;
my $code = "B::Deparse"->new(qw(-q -si8T))->coderef2text($spec->{isa});
$code =~ s/^/# /mig;
$self->trace_handle->printf("$code\n");
}
}
"Moo"
->_constructor_maker_for($klass)
->register_attribute_specs($name, $spec);
"Moo"
->_accessor_maker_for($klass)
->generate_method($klass, $name, $spec);
"Moo"
->_maybe_reset_handlemoose($klass);
return $name;
}
# returns a list of "fields" resulting from the argument
sub process_argument
{
my $self = shift;
my ($klass, $name, $val) = @_;
return $self->process_meta(@_) if $name =~ /^-/;
return $self->process_method(@_) if does($val, 'CODE');
return $self->process_attribute(@_);
}
sub make_sub
{
my ($self, $subname, $proto) = @_;
return sub (;$)
{
1; # bizarre, but necessary if $] < 5.014
if (ref $proto) # inflate!
{
my $opts = Data::OptList::mkopt($proto);
my $klass = $self->create_class($opts);
my $seen_extends;
my @fields = _uniq map {
++$seen_extends if $_->[0] eq '-extends';
$self->process_argument($klass, @$_);
} @$opts;
unshift @fields, $self->base->FIELDS
if !$seen_extends && $self->base->can('FIELDS');
$self->process_method($klass, FIELDS => sub { @fields });
$self->process_method($klass, TYPE => sub { $subname }) if defined $subname;
$proto = $klass;
}
return $proto->new(@_) if @_;
return $proto;
}
}
sub process
{
my $self = shift;
my $caller = shift;
while (@_ and $_[0] =~ /^-(.+)$/) {
$self->flags->{ lc($1) } = !!shift;
}
foreach my $arg (@{ Data::OptList::mkopt(\@_) })
{
my ($subname, $details) = @$arg;
$details = [] unless defined $details;
$self->class_map->{ $subname } = $self->make_sub($subname, $details);
install_sub {
into => $caller,
as => $subname,
code => $self->class_map->{ $subname },
};
}
on_scope_end {
namespace::clean->clean_subroutines(
$caller,
keys %{ $self->class_map },
);
} unless $self->flags->{ retain };
}
};
sub import
{
my $caller = caller;
my $class = shift;
"$class\::Processor"->new->process($caller, @_);
}
no Moo;
1;
__END__
=head1 NAME
MooX::Struct - make simple lightweight record-like structures that make sounds like cows
=head1 SYNOPSIS
use MooX::Struct
Point => [ 'x', 'y' ],
Point3D => [ -extends => ['Point'], 'z' ],
;
my $origin = Point3D->new( x => 0, y => 0, z => 0 );
# or...
my $origin = Point3D[ 0, 0, 0 ];
=head1 DESCRIPTION
MooX::Struct allows you to create cheap struct-like classes for your data
using L<Moo>.
While similar in spirit to L<MooseX::Struct> and L<Class::Struct>,
MooX::Struct has a somewhat different usage pattern. Rather than providing
you with a C<struct> keyword which can be used to define structs, you
define all the structs as part of the C<use> statement. This means they
happen at compile time.
A struct is just an "anonymous" Moo class. MooX::Struct creates this class
for you, and installs a lexical alias for it in your namespace. Thus your
module can create a "Point3D" struct, and some other module can too, and
they won't interfere with each other. All struct classes inherit from
MooX::Struct.
Arguments for MooX::Struct are key-value pairs, where keys are the struct
names, and values are arrayrefs.
use MooX::Struct
Person => [qw/ name address /],
Company => [qw/ name address registration_number /];
The elements in the array are the attributes for the struct (which will be
created as read-only attributes), however certain array elements are treated
specially.
=over
=item *
As per the example in the L</SYNOPSIS>, C<< -extends >> introduces a list of
parent classes for the struct. If not specified, then classes inherit from
MooX::Struct itself.
Structs can inherit from other structs, or from normal classes. If inheriting
from another struct, then you I<must> define both in the same C<use> statement.
Inheriting from a non-struct class is discouraged.
# Not like this.
use MooX::Struct Point => [ 'x', 'y' ];
use MooX::Struct Point3D => [ -extends => ['Point'], 'z' ];
# Like this.
use MooX::Struct
Point => [ 'x', 'y' ],
Point3D => [ -extends => ['Point'], 'z' ],
;
=item *
Similarly C<< -with >> consumes a list of roles.
=item *
If an attribute name is followed by a coderef, this is installed as a
method instead.
use MooX::Struct
Person => [
qw( name age sex ),
greet => sub {
my $self = shift;
CORE::say "Hello ", $self->name;
},
];
But if you're defining methods for your structs, then you've possibly missed
the point of them.
=item *
If an attribute name is followed by an arrayref, these are used to set the
options for the attribute. For example:
use MooX::Struct
Person => [ name => [ is => 'ro', required => 1 ] ];
Using the C<init_arg> option would probably break stuff. Don't do that.
=item *
Attribute names may be "decorated" with prefix and postfix "sigils". The prefix
sigils of C<< @ >> and C<< % >> specify that the attribute isa arrayref or
hashref respectively. (Blessed arrayrefs and hashrefs are accepted; as are
objects which overload C<< @{} >> and C<< %{} >>.) The prefix sigil C<< $ >>
specifies that the attribute value must not be an unblessed arrayref or hashref.
The prefix sigil C<< + >> indicates the attribute is a number, and provides
a default value of 0, unless the attribute is required. The postfix sigil
C<< ! >> specifies that the attribute is required.
use MooX::Struct
Person => [qw( $name! @children )];
Person->new(); # dies, name is required
Person->new( # dies, children should be arrayref
name => 'Bob',
children => 2,
);
=back
Prior to the key-value list, some additional flags can be given. These begin
with hyphens. The flag C<< -rw >> indicates that attributes should be
read-write rather than read-only.
use MooX::Struct -rw,
Person => [
qw( name age sex ),
greet => sub {
my $self = shift;
CORE::say "Hello ", $self->name;
},
];
The C<< -retain >> flag can be used to indicate that MooX::Struct should
B<not> use namespace::clean to enforce lexicalness on your struct class
aliases.
Flags C<< -trace >> and C<< -deparse >> may be of use debugging.
=head2 Instantiating Structs
There are two supported methods of instatiating structs. You can use a
traditional class-like constructor with named parameters:
my $point = Point->new( x => 1, y => 2 );
Or you can use the abbreviated syntax with positional parameters:
my $point = Point[ 1, 2 ];
If you know about Moo and peek around in the source code for this module,
then I'm sure you can figure out additional ways to instantiate them, but
the above are the only supported two.
When inheritance or roles have been used, it might not always be clear what
order the positional parameters come in (though see the documentation for the
C<FIELDS> below), so the traditional class-like style may be preferred.
=head2 Methods
Structs are objects and thus have methods. You can define your own methods
as described above. MooX::Struct's built-in methods will always obey the
convention of being in ALL CAPS (except in the case of C<_data_printer>).
By using lower-case letters to name your own methods, you can avoid
naming collisions.
The following methods are currently defined. Additionally all the standard
Perl (C<isa>, C<can>, etc) and Moo (C<new>, C<does>, etc) methods are
available.
=over
=item C<OBJECT_ID>
Returns a unique identifier for the object.
=item C<FIELDS>
Returns a list of fields associated with the object. For the C<Point3D> struct
in the SYNPOSIS, this would be C<< 'x', 'y', 'z' >>.
The order the fields are returned in is equal to the order they must be supplied
for the positional constructor.
Attributes inherited from roles, or from non-struct base classes are not included
in C<FIELDS>, and thus cannot be used in the positional constructor.
=item C<TYPE>
Returns the type name of the struct, e.g. C<< 'Point3D' >>.
=item C<TO_HASH>
Returns a reference to an unblessed hash where the object's fields are the
keys and the object's values are the hash values.
=item C<TO_ARRAY>
Returns a reference to an unblessed array where the object's values are the
array items, in the same order as listed by C<FIELDS>.
=item C<TO_STRING>
Joins C<TO_ARRAY> with whitespace. This is not necessarily a brilliant
stringification, but easy enough to overload:
use MooX::Struct
Point => [
qw( x y ),
TO_STRING => sub {
sprintf "(%d, %d)"), $_[0]->x, $_[0]->y;
},
]
;
=item C<CLONE>
Creates a shallow clone of the object.
=item C<EXTEND>
An exverimental feature.
Extend a class or object with additional attributes, methods, etc. This method
takes almost all the same arguments as C<use MooX::Struct>, albeit with some
slight differences.
use MooX::Struct Point => [qw/ +x +y /];
my $point = Point[2, 3];
$point->EXTEND(-rw, q/+z/); # extend an object
$point->can('z'); # true
my $new_class = Point->EXTEND('+z'); # extend a class
my $point_3d = $new_class->new( x => 1, y => 2, z => 3 );
$point_3d->TYPE; # Point !
my $point_4d = $new_class->EXTEND(\"Point4D", '+t');
$point_4d->TYPE; # Point4D
my $origin = Point[]->EXTEND(-with => [qw/ Math::Role::Origin /]);
This feature has been included mostly because it's easy to implement on top
of the existing code for processing C<use MooX::Struct>. Some subsets of
this functionality are sane, such as the ability to add traits to an object.
Others (like the ability to add a new uninitialized, read-only attribute to
an existing object) are less sensible.
=item C<BUILDARGS>
Moo internal fu.
=item C<_data_printer>
Automatic pretty printing with L<Data::Printer>.
use Data::Printer;
use MooX::Struct Point => [qw/ +x +y /];
my $origin = Point[];
p $origin;
=back
With the exception of C<FIELDS> and C<TYPE>, any of these can be overridden
using the standard way of specifying methods for structs.
=head2 Overloading
MooX::Struct overloads stringification and array dereferencing. Objects always
evaluate to true in a boolean context. (Even if they stringify to the empty
string.)
=head1 CAVEATS
Because you only get an alias for the struct class, you need to be careful
with some idioms:
my $point = Point3D->new(x => 1, y => 2, z => 3);
$point->isa("Point3D"); # false!
$point->isa( Point3D ); # true
my %args = (...);
my $class = exists $args{z} ? "Point3D" : "Point"; # wrong!
$class->new(%args);
my $class = exists $args{z} ? Point3D : Point ; # right
$class->new(%args);
=head1 BUGS
Please report any bugs to
L<http://rt.cpan.org/Dist/Display.html?Queue=MooX-Struct>.
=head1 SEE ALSO
L<Moo>, L<MooX::Struct::Util>, L<MooseX::Struct>, L<Class::Struct>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2012-2013 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|