| Data-Conveyor documentation | Contained in the Data-Conveyor distribution. |
Data::Conveyor::Ticket::Payload::Instruction::Container - Stage-based conveyor-belt-like ticket handling system
version 1.103130
FIXME
FIXME
FIXME
FIXME
See perlmodinstall for information and options on installing Perl modules.
No bugs have been reported.
Please report any bugs or feature requests through the web interface at http://rt.cpan.org/Public/Dist/Display.html?Name=Data-Conveyor.
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit http://www.perl.com/CPAN/ to find a CPAN site near you, or see http://search.cpan.org/dist/Data-Conveyor/.
The development version lives at http://github.com/hanekomu/Data-Conveyor and may be cloned from git://github.com/hanekomu/Data-Conveyor. Instead of sending patches, please fork this project using the standard git and github infrastructure.
This software is copyright (c) 2004 by Marcel Gruenauer.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Data-Conveyor documentation | Contained in the Data-Conveyor distribution. |
use 5.008; use strict; use warnings; package Data::Conveyor::Ticket::Payload::Instruction::Container; BEGIN { $Data::Conveyor::Ticket::Payload::Instruction::Container::VERSION = '1.103130'; } # ABSTRACT: Stage-based conveyor-belt-like ticket handling system # ptags: DCTPIC use parent qw( Data::Container Class::Scaffold::Storable ); # Override stringification to return an unblessed copy of the object's hash # because our items don't stringify well. sub stringify { +{%{$_[0]}} } sub check { my ($self, $exception_container, $ticket) = @_; $_->check($exception_container, $ticket) for $self->items; } sub get_item_by_type { my ($self, $type) = @_; for my $instruction ($self->items) { return $instruction if $instruction->type eq $type; } undef; } # apply_fields_to_object() only handles single values; if you expect a list, # use this method and apply the instructions yourself. sub get_items_of_type { my ($self, $type) = @_; my @retval = grep { $_->type eq $type } $self->items; wantarray ? @retval : \@retval; } sub apply_fields_to_object { my ($self, $object, %field_map) = @_; while (my ($type, $field) = each %field_map) { my $instruction = $self->get_item_by_type($type); next unless defined $instruction; $object->$field($instruction->value); } } 1; __END__