use 5.010001;
use strict;
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-02-15'; # DATE
our $DIST = 'App-CSVUtils'; # DIST
our $VERSION = '1.012'; # VERSION
gen_csv_util
compile_eval_code
eval_code
);
gen_csv_util(
name => 'csv_map',
summary => 'Return result of Perl code for every row',
description => <<'_',
This is like Perl's `map` performed over rows of CSV. In `$_`, your Perl code
will find the CSV row as an arrayref (or, if you specify `-H`, as a hashref).
`$main::row` is also set to the row (always as arrayref). `$main::rownum`
contains the row number (2 means the first data row). `$main::csv` is the
<pm:Text::CSV_XS> object. `$main::fields_idx` is also available for additional
information.
Your code is then free to return a string based on some operation against these
data. This utility will then print out the resulting string.
_
add_args => {
%App::CSVUtils::argspecopt_hash,
%App::CSVUtils::argspec_eval,
add_newline => {
summary => 'Whether to make sure each string ends with newline',
'summary.alt.bool.not' => 'Do not add newline to each output',
schema => 'bool*',
default => 1,
},
},
examples => [
{
summary => 'Create SQL insert statements (escaping is left as an exercise for users)',
argv => ['-He', '"INSERT INTO mytable (id,amount) VALUES ($_->{id}, $_->{amount});"', 'file.csv'],
test => 0,
'x.doc.show_result' => 0,
},
],
writes_csv => 0,
on_begin => sub {
my $r = shift;
# for when we are called directly as a function without wrapper to set
# defaults etc.
$r->{util_args}{add_newline} //= 1;
},
on_input_header_row => sub {
my $r = shift;
# we add the following keys to the stash
$r->{code} = compile_eval_code($r->{util_args}{eval}, 'eval');
$r->{wants_input_row_as_hashref} = 1 if $r->{util_args}{hash};
},
on_input_data_row => sub {
my $r = shift;
my $rowres = eval_code($r->{code}, $r, $r->{wants_input_row_as_hashref} ? $r->{input_row_as_hashref} : $r->{input_row}) // '';
$rowres .= "\n" if $r->{util_args}{add_newline} && $rowres !~ /\R\z/;
$r->{code_print}->($rowres);
},
);
1;
# ABSTRACT: Return result of Perl code for every row
__END__
=pod
=encoding UTF-8
=head1 NAME
App::CSVUtils::csv_map - Return result of Perl code for every row
=head1 VERSION
This document describes version 1.012 of App::CSVUtils::csv_map (from Perl distribution App-CSVUtils), released on 2023-02-15.
=head1 FUNCTIONS
=head2 csv_map
Usage:
csv_map(%args) -> [$status_code, $reason, $payload, \%result_meta]
Return result of Perl code for every row.
Examples:
=over
=item * Create SQL insert statements (escaping is left as an exercise for users):
csv_map(
input_filename => "file.csv",
eval => "\"INSERT INTO mytable (id,amount) VALUES (\$_->{id}, \$_->{amount});\"",
hash => 1
);
=back
This is like Perl's C<map> performed over rows of CSV. In C<$_>, your Perl code
will find the CSV row as an arrayref (or, if you specify C<-H>, as a hashref).
C<$main::row> is also set to the row (always as arrayref). C<$main::rownum>
contains the row number (2 means the first data row). C<$main::csv> is the
L<Text::CSV_XS> object. C<$main::fields_idx> is also available for additional
information.
Your code is then free to return a string based on some operation against these
data. This utility will then print out the resulting string.
This function is not exported.
Arguments ('*' denotes required arguments):
=over 4
=item * B<add_newline> => I<bool> (default: 1)
Whether to make sure each string ends with newline.
=item * B<eval>* => I<str|code>
Perl code.
=item * B<hash> => I<bool>
Provide row in $_ as hashref instead of arrayref.
=item * B<input_escape_char> => I<str>
Specify character to escape value in field in input CSV, will be passed to Text::CSV_XS.
Defaults to C<\\> (backslash). Overrides C<--input-tsv> option.
=item * B<input_filename> => I<filename> (default: "-")
Input CSV file.
Use C<-> to read from stdin.
Encoding of input file is assumed to be UTF-8.
=item * B<input_header> => I<bool> (default: 1)
Specify whether input CSV has a header row.
By default, the first row of the input CSV will be assumed to contain field
names (and the second row contains the first data row). When you declare that
input CSV does not have header row (C<--no-input-header>), the first row of the
CSV is assumed to contain the first data row. Fields will be named C<field1>,
C<field2>, and so on.
=item * B<input_quote_char> => I<str>
Specify field quote character in input CSV, will be passed to Text::CSV_XS.
Defaults to C<"> (double quote). Overrides C<--input-tsv> option.
=item * B<input_sep_char> => I<str>
Specify field separator character in input CSV, will be passed to Text::CSV_XS.
Defaults to C<,> (comma). Overrides C<--input-tsv> option.
=item * B<input_tsv> => I<true>
Inform that input file is in TSV (tab-separated) format instead of CSV.
Overriden by C<--input-sep-char>, C<--input-quote-char>, C<--input-escape-char>
options. If one of those options is specified, then C<--input-tsv> will be
ignored.
=back
Returns an enveloped result (an array).
First element ($status_code) is an integer containing HTTP-like status code
(200 means OK, 4xx caller error, 5xx function error). Second element
($reason) is a string containing error message, or something like "OK" if status is
200. Third element ($payload) is the actual result, but usually not present when enveloped result is an error response ($status_code is not 2xx). Fourth
element (%result_meta) is called result metadata and is optional, a hash
that contains extra information, much like how HTTP response headers provide additional metadata.
Return value: (any)
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/App-CSVUtils>.
=head1 SOURCE
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 CONTRIBUTING
To contribute, you can send patches by email/via RT, or send pull requests on
GitHub.
Most of the time, you don't need to build the distribution yourself. You can
simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally on your
system), you can install L<Dist::Zilla>,
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
that are considered a bug and can be reported to me.
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016 by perlancar <perlancar@cpan.org>.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-CSVUtils>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=cut