This file is indexed.

/usr/share/perl5/Catmandu/Fix/paste.pm is in libcatmandu-perl 1.0700-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
112
113
114
package Catmandu::Fix::paste;

use Catmandu::Sane;

our $VERSION = '1.07';

use Moo;
use namespace::clean;
use Catmandu::Fix::Has;

with 'Catmandu::Fix::Base';

has path   => (fix_arg => 1);
has values => (fix_arg => 'collect');

sub emit {
    my ($self, $fixer) = @_;
    my $values = $self->values;

    my @parsed_values = ();
    my $join_char     = ' ';

    while (@$values) {
        my $val = shift @$values;
        if ($val eq 'join_char') {
            $join_char = shift @$values;
            last;
        }
        else {
            push @parsed_values, $val;
        }
    }

    $join_char = $fixer->emit_string($join_char);

    my $vals_var = $fixer->generate_var;
    my $perl = $fixer->emit_declare_vars($vals_var, '[]');

    for my $val (@parsed_values) {
        my $vals_path = $fixer->split_path($val);
        my $vals_key  = pop @$vals_path;

        if ($val =~ /^~(.*)/) {
            my $tmp = $fixer->emit_string($1);
            $perl .= "push(\@{${vals_var}}, ${tmp});";
        }
        else {
            $perl .= $fixer->emit_walk_path(
                $fixer->var,
                $vals_path,
                sub {
                    my $var = shift;
                    $fixer->emit_get_key(
                        $var,
                        $vals_key,
                        sub {
                            my $var = shift;
                            "push(\@{${vals_var}}, ${var}) if is_value(${var});";
                        }
                    );
                }
            );
        }
    }

    my $path = $fixer->split_path($self->path);

    $perl .= $fixer->emit_create_path(
        $fixer->var,
        $path,
        sub {
            my $var = shift;
            "${var} = join(${join_char}, \@{${vals_var}});";
        }
    );

    $perl;
}

1;

__END__

=pod

=head1 NAME

Catmandu::Fix::paste - concatenate path values

=head1 SYNOPSIS

   # If you data record is:
   #   a: eeny
   #   b: meeny
   #   c: miny
   #   d: moe
   paste(my.string,a,b,c,d)                 # my.string: eeny meeny miny moe

   # Use a join character
   paste(my.string,a,b,c,d,join_char:", ")  # my.string: eeny, meeny, miny, moe

   # Paste literal strings with a tilde sign
   paste(my.string,~Hi,a,~how are you?)    # my.string: Hi eeny how are you?

=head1 DESCRIPTION

Paste places a concatenation of all paths starting from the second path into the first path.
Literal values can be pasted by prefixing them with a tilde (~) sign.

=head1 SEE ALSO

L<Catmandu::Fix>

=cut