/usr/local/CPAN/MooseX-Constructor-AllErrors/MooseX/Constructor/AllErrors/Role/Meta/Class.pm


package MooseX::Constructor::AllErrors::Role::Meta::Class;
BEGIN {
  $MooseX::Constructor::AllErrors::Role::Meta::Class::VERSION = '0.016';
}
use Moose::Role;

around _inline_BUILDALL => sub {
    my $orig = shift;
    my $self = shift;

    my @source = $self->$orig(@_);

    my @attrs = grep { defined $_->init_arg } $self->get_all_attributes;

    my $required = join '', map {
        q{'} . $_->init_arg . q{' => 1,}
    } grep { $_->is_required && !$_->has_default && !$_->has_builder } @attrs;

    my $tc = join '', map {
        q{'} . $_->init_arg . q{' => '} . $_->type_constraint->name . q{',}
    } grep { $_->has_type_constraint } @attrs;

    my $coerce = join '', map {
        q{'} . $_->init_arg . q{' => 1,}
    } grep { $_->should_coerce } @attrs;

    return (
        @source,
        'my $all_errors = MooseX::Constructor::AllErrors::Error::Constructor->new(',
            'caller => [caller(1)]',
        ');',
        'my %required_attrs = (' . $required . ');',
        'for my $required_attr (keys %required_attrs) {',
            'next if exists $params->{$required_attr};',
            '$all_errors->add_error(',
                'MooseX::Constructor::AllErrors::Error::Required->new(',
                    'attribute => Moose::Util::find_meta($instance)->get_attribute($required_attr)',
                ')',
            ');',
        '}',
        'my %tc_attrs = (' . $tc . ');',
        'my %should_coerce = (' . $coerce . ');',
        'for my $tc_attr (keys %tc_attrs) {',
            'next unless exists $params->{$tc_attr};',
            'my $tc = Moose::Util::TypeConstraints::find_type_constraint($tc_attrs{$tc_attr});',
            'my $value = $tc->has_coercion && $should_coerce{$tc_attr}',
                '? $tc->coerce($params->{$tc_attr})',
                ': $params->{$tc_attr};',
            'next if $tc->check($value);',
            '$all_errors->add_error(',
                'MooseX::Constructor::AllErrors::Error::TypeConstraint->new(',
                    'attribute => Moose::Util::find_meta($instance)->get_attribute($tc_attr),',
                    'data => $value,',
                ')',
            ');',
        '}',
        'if ($all_errors->has_errors) {',
            'Moose::Util::find_meta($instance)->throw_error(',
                '$all_errors,',
                'params => $params,',
            ')',
        '}',
    );
};

no Moose::Role;

1;