NAME
Text::Parser::AutoSplit - A role that adds the ability to auto-split a line into fields
VERSION
version 0.919
SYNOPSIS
package MyNewParser;
use parent 'Text::Parser';
sub new {
my $pkg = shift;
$pkg->SUPER::new(
auto_split => 1,
FS => qr/\s+\(*|\s*\)/,
@_,
);
}
sub save_record {
my $self = shift;
return $self->abort_reading if $self->NF > 0 and $self->field(0) eq 'STOP_READING';
$self->SUPER::save_record(@_) if $self->NF > 0 and $self->field(0) !~ /^[#]/;
}
package main;
my $parser = MyNewParser->new();
$parser->read(shift);
print $parser->get_records(), "\n";
DESCRIPTION
Text::Parser::AutoSplit
is a role that gets automatically composed into an object of Text::Parser if the auto_split
attribute is set during object construction. It is useful for writing complex parsers as derived classes of Text::Parser, because one has access to the fields. The field separator is controlled by another attribute FS
, which can be accessed via an accessor method of the same name. When the auto_split
attribute is set to a true value, the object of Text::Parser
will be able to use methods described in this role.
METHODS AVAILABLE ON AUTO-SPLIT
These methods become available when auto_split
attribute is true. A runtime error will be thrown if they are called without auto_split
being set. They can used inside the subclass implementation of save_record
.
NF
The name of this method comes from the NF
variable in the popular GNU Awk program. Takes no arguments, and returns the number of fields.
sub save_record {
my $self = shift;
$self->save_record(@_) if $self->NF > 0;
}
fields
Takes no argument and returns all the fields as an array.
## Inside your own save_record method ...
foreach my $fld ($self->fields) {
# do something ...
}
field
Takes an integer argument and returns the field whose index is passed as argument.
sub save_record {
my $self = shift;
$self->abort if $self->field(0) eq 'END';
}
You can specify negative elements to start counting from the end. For example index -1
is the last element, -2
is the penultimate one, etc. Let's say the following is the text on a line in a file:
THIS IS SOME TEXT
field(0) field(1) field(2) field(3)
field(-4) field(-3) field(-2) field(-1)
field_range
Takes two optional integers $i
and $j
as arguments and returns an array, where the first element is field($i)
, the second field($i+1)
, and so on, till field($j)
.
## returns 4 elements starting with field(3) upto field(6)
my (@flds) = $self->field_range(3, 6);
Both $i
and $j
can be negative, as is allowed by the field()
method. So, for example:
$self->field_range(-2, -1); # Returns the last two elements
If $j
argument is omitted or set to undef
, it will be treated as -1
and if $i
is omitted, it is treated as 0
. For example:
$self->field_range(1); # Returns all elements omitting the first
$self->field_range(); # same as fields()
$self->field_range(undef, -2); # Returns all elements omitting the last
find_field
This method finds an element matching a given criterion. The match is done by a subroutine reference passed as argument to this method. The subroutine will be called against each field on the line, until one matches or all elements have been checked. Each field will be available in the subroutine as $_
. Its behavior is the same as the first
function of List::Util.
sub save_record {
my $self = shift;
my $param = $self->find_field(
sub { $_ =~ /[=]/ }
);
}
find_field_index
This is similar to the find_field
method above, except that it returns the index of the element instead of the element itself.
sub save_record {
my $self = shift;
my $idx = $self->find_field_index(
sub { $_ =~ /[=]/ }
);
}
splice_fields
Just like Perl's built-in splice
function.
## Inside your own save_record method ...
my (@removed1) = $self->splice_fields($offset, $length, @values);
my (@removed2) = $self->splice_fields($offset, $length);
my (@removed3) = $self->splice_fields($offset);
The offset above is a required argument and can be negative.
WARNING: This is a destructive function. It will remove elements just like Perl's built-in splice
does, and the removed will be returned. If you only want to get the elements in a specific range of indices, try the field_range
method instead.
SEE ALSO
BUGS
Please report any bugs or feature requests on the bugtracker website http://github.com/balajirama/Text-Parser/issues
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.
AUTHOR
Balaji Ramasubramanian <balajiram@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2018-2019 by Balaji Ramasubramanian.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.