The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Catmandu::Importer::Text;

use namespace::clean;
use Catmandu::Sane;
use Moo;

with 'Catmandu::Importer';

has pattern => (
    is => 'ro',
    coerce => sub { 
        $_[0] =~ /\n/m ? qr{$_[0]}x : qr{$_[0]} 
    },
);

has split => (
    is => 'ro',
    coerce => sub {
        length $_[0] == 1 ? $_[0] : qr{$_[0]}
    } 
);

sub generator {
    my ($self) = @_;
    sub {
        state $pattern = $self->pattern;
        state $split   = $self->split;
        state $count   = 0;
        state $line;

        while ( defined($line = $self->readline) ) {
            chomp $line;
            next if $pattern and $line !~ $pattern;

            my $data = { _id => ++$count };

            if (@+ < 2) {       # no capturing groups
                $data->{text} = $line;
            } elsif (%+) {      # named capturing groups
                $data->{match} = { %+ };
            } else {            # numbered capturing groups
                no strict 'refs';
                $data->{match} = [ map { $$_ } 1..@+-1 ]; 
            }
            
            if ($split) {
                $data->{text} = [ split $split, $line ];
            }

            return $data;
        }

        return;
    };
}

1;
__END__

=head1 NAME

Catmandu::Importer::Text - Package that imports textual data

=head1 SYNOPSIS

    use Catmandu::Importer::Text;

    my $importer = Catmandu::Importer::text->new(file => "/foo/bar.yaml");

    my $n = $importer->each(sub {
        my $hashref = $_[0];
        
        printf "line %d: text: %s" , $hashref->{_id} , $hashref->{text};  
    });

=head1 DESCRIPTION

This L<Catmandu::Importer> reads each line of input as an item with line number
in field C<_id> and text content in field C<text>. Line separators are not
included. A regular expression can be specified to only import selected lines
and parts of lines that match a given pattern. 

=head1 CONFIGURATION

=over

=item file

Read input from a local file given by its path. Alternatively a scalar
reference can be passed to read from a string.

=item fh

Read input from an L<IO::Handle>. If not specified, L<Catmandu::Util::io> is used to
create the input stream from the C<file> argument or by using STDIN.

=item encoding

Binmode of the input stream C<fh>. Set to C<:utf8> by default.

=item fix

An ARRAY of one or more fixes or file scripts to be applied to imported items.

=item split

Character or regular expression, given as string, to split each line. Imported
field C<text> will contain an array.

=item pattern

An regular expression, given as string, to only import matching lines.
Whitespaces in patterns are ignored or must be escaped if patterns consists of
multiple lines. If the pattern contains capturing groups, captured values are
imported in field C<match> instead of C<text>.

For instance dates in C<YYYY-MM-DD> format can be imported as named fields with

   (?<year>\d\d\d\d)-(?<month>\d\d)-(?<day>\d\d)

or as array with

   (\d\d\d\d)-  # year
   (\d\d)-      # month
   (\d\d)       # day

=back

=head1 METHODS

Every L<Catmandu::Importer> is a L<Catmandu::Iterable> all its methods are
inherited. The Catmandu::Importer::YAML methods are not idempotent: YAML feeds
can only be read once.

=head1 SEE ALSO

L<Catmandu::Exporter::Text>

L<awk|https://en.wikipedia.org/wiki/AWK> and
L<sed|https://en.wikipedia.org/wiki/Sed>

=cut