X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FCDBICompat%2FAccessorMapping.pm;h=b7945b093ab2156727e9b691e6274b73d84a7352;hb=1327f05075385498a3e6213c068d2f4e765fb0a4;hp=71ca2531f718ae77d342815adf7066ba39207fae;hpb=701da8c4d6f0b78ffc015085aa410a6cacfcdb40;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/CDBICompat/AccessorMapping.pm b/lib/DBIx/Class/CDBICompat/AccessorMapping.pm index 71ca253..b7945b0 100644 --- a/lib/DBIx/Class/CDBICompat/AccessorMapping.pm +++ b/lib/DBIx/Class/CDBICompat/AccessorMapping.pm @@ -1,44 +1,68 @@ -package DBIx::Class::CDBICompat::AccessorMapping; +package # hide from PAUSE Indexer + DBIx::Class::CDBICompat::AccessorMapping; use strict; use warnings; sub mk_group_accessors { - my ($class, $group, @cols) = @_; - unless ($class->can('accessor_name') || $class->can('mutator_name')) { - return $class->next::method($group => @cols); - } - foreach my $col (@cols) { - my $ro_meth = ($class->can('accessor_name') - ? $class->accessor_name($col) - : $col); - my $wo_meth = ($class->can('mutator_name') - ? $class->mutator_name($col) - : $col); - #warn "$col $ro_meth $wo_meth"; - if ($ro_meth eq $wo_meth) { - $class->next::method($group => [ $ro_meth => $col ]); - } else { - $class->mk_group_ro_accessors($group => [ $ro_meth => $col ]); - $class->mk_group_wo_accessors($group => [ $wo_meth => $col ]); + my ($class, $group, @cols) = @_; + + foreach my $col (@cols) { + my($accessor, $col) = ref $col ? @$col : (undef, $col); + + my($ro_meth, $wo_meth); + if( defined $accessor and ($accessor ne $col)) { + $ro_meth = $wo_meth = $accessor; + } + else { + $ro_meth = $class->accessor_name_for($col); + $wo_meth = $class->mutator_name_for($col); + } + + # warn "class: $class / col: $col / ro: $ro_meth / wo: $wo_meth\n"; + if ($ro_meth eq $wo_meth or # they're the same + $wo_meth eq $col) # or only the accessor is custom + { + $class->next::method($group => [ $ro_meth => $col ]); + } + else { + $class->mk_group_ro_accessors($group => [ $ro_meth => $col ]); + $class->mk_group_wo_accessors($group => [ $wo_meth => $col ]); + } } - } } -sub new { - my ($class, $attrs, @rest) = @_; - $class->throw_exception( "create needs a hashref" ) unless ref $attrs eq 'HASH'; - foreach my $col ($class->columns) { - if ($class->can('accessor_name')) { - my $acc = $class->accessor_name($col); - $attrs->{$col} = delete $attrs->{$acc} if exists $attrs->{$acc}; + +sub accessor_name_for { + my ($class, $column) = @_; + if ($class->can('accessor_name')) { + return $class->accessor_name($column) } - if ($class->can('mutator_name')) { - my $mut = $class->mutator_name($col); - $attrs->{$col} = delete $attrs->{$mut} if exists $attrs->{$mut}; + + return $column; +} + +sub mutator_name_for { + my ($class, $column) = @_; + if ($class->can('mutator_name')) { + return $class->mutator_name($column) + } + + return $column; +} + + +sub new { + my ($class, $attrs, @rest) = @_; + $class->throw_exception( "create needs a hashref" ) unless ref $attrs eq 'HASH'; + foreach my $col ($class->columns) { + my $acc = $class->accessor_name_for($col); + $attrs->{$col} = delete $attrs->{$acc} if exists $attrs->{$acc}; + + my $mut = $class->mutator_name_for($col); + $attrs->{$col} = delete $attrs->{$mut} if exists $attrs->{$mut}; } - } - return $class->next::method($attrs, @rest); + return $class->next::method($attrs, @rest); } 1;