Data::Conveyor::Ticket::Payload::Instruction::Factory - Stage-based conveyor-belt-like ticket handling system


Data-Conveyor documentation Contained in the Data-Conveyor distribution.

Index


Code Index:

NAME

Top

Data::Conveyor::Ticket::Payload::Instruction::Factory - Stage-based conveyor-belt-like ticket handling system

VERSION

Top

version 1.103130

METHODS

Top

gen_instruction

FIXME

INSTALLATION

Top

See perlmodinstall for information and options on installing Perl modules.

BUGS AND LIMITATIONS

Top

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.

AVAILABILITY

Top

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.

AUTHORS

Top

COPYRIGHT AND LICENSE

Top


Data-Conveyor documentation Contained in the Data-Conveyor distribution.

use 5.008;
use strict;
use warnings;

package Data::Conveyor::Ticket::Payload::Instruction::Factory;
BEGIN {
  $Data::Conveyor::Ticket::Payload::Instruction::Factory::VERSION = '1.103130';
}
# ABSTRACT: Stage-based conveyor-belt-like ticket handling system

# ptags: DCTPIF
use Error::Hierarchy::Util 'assert_defined';
use parent 'Class::Scaffold::Factory';
use constant INSTRUCTION_CLASS_FOR_NAME =>
  (clear => 'Data::Conveyor::Ticket::Payload::Instruction::Clear',);

sub gen_instruction {
    my ($self, $name, %args) = @_;
    assert_defined $name, 'instruction name';

    # Some instruction classes have a generic structure, they're called
    # Data::Conveyor::Ticket::Payload::Instruction::value_person_organization
    # and such. They're generated in Data::Conveyor::Environment, so they're
    # not in file, so we don't need to load_class() them.
    if (grep { $_ eq $name } $self->delegate->generic_instruction_classes) {
        my $class = $self->delegate->INSTRUCTION_CLASS_BASE() . '::' . $name;
        return $class->new(
            storage_type => $self->storage_type,
            %args
        );
    } else {

        # If it is not a generic value object instruction, go through the
        # normal way of generatic an object.
        return $self->gen_handler(INSTRUCTION_CLASS_FOR_NAME => [$name], %args);
    }
}
1;


__END__