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
|
package Catmandu::Fix::sort_field;
use Catmandu::Sane;
our $VERSION = '1.2024';
use List::SomeUtils qw(uniq);
use Catmandu::Util::Path qw(as_path);
use Moo;
use namespace::clean;
use Catmandu::Fix::Has;
with 'Catmandu::Fix::Builder';
has path => (fix_arg => 1);
has uniq => (fix_opt => 1);
has reverse => (fix_opt => 1);
has numeric => (fix_opt => 1);
has undef_position => (fix_opt => 1, default => sub {'last'});
sub _build_fixer {
my ($self) = @_;
my $uniq = $self->uniq;
my $reverse = $self->reverse;
my $numeric = $self->numeric;
my $undef_position = $self->undef_position;
as_path($self->path)->updater(
if_array_ref => sub {
my $val = $_[0];
#filter out undef
my $undefs = [grep {!defined($_)} @$val];
$val = [grep {defined($_)} @$val];
#uniq
if ($uniq) {
$val = [uniq(@$val)];
}
#sort
if ($reverse && $numeric) {
$val = [sort {$b <=> $a} @$val];
}
elsif ($numeric) {
$val = [sort {$a <=> $b} @$val];
}
elsif ($reverse) {
$val = [sort {$b cmp $a} @$val];
}
else {
$val = [sort {$a cmp $b} @$val];
}
#insert undef at the end
if ($undef_position eq 'first') {
if ($uniq) {
unshift @$val, undef if @$undefs;
}
else {
unshift @$val, @$undefs;
}
}
elsif ($undef_position eq 'last') {
if ($uniq) {
push @$val, undef if @$undefs;
}
else {
push @$val, @$undefs;
}
}
$val;
}
);
}
1;
__END__
=pod
=head1 NAME
Catmandu::Fix::sort_field - sort the values of an array
=head1 SYNOPSIS
# e.g. tags => ["foo", "bar","bar"]
sort_field(tags) # tags => ["bar","bar","foo"]
sort_field(tags, uniq: 1) # tags => ["bar","foo"]
sort_field(tags, uniq: 1, reverse: 1) # tags => ["foo","bar"]
# e.g. nums => [ 100, 1 , 10]
sort_field(nums, numeric: 1) # nums => [ 1, 10, 100]
#push undefined values to the end of the list (default)
#beware: reverse has no effect on this!
sort_field(tags,undef_position: last)
#push undefined values to the beginning of the list
#beware: reverse has no effect on this!
sort_field(tags,undef_position: first)
#remove undefined values from the list
sort_field(tags,undef_position: delete)
=head1 SEE ALSO
L<Catmandu::Fix>
=cut
|