package HTML::TableParser;
# ABSTRACT: HTML::TableParser - Extract data from an HTML table
require 5.8.1;
use strict;
use warnings;
our $VERSION = '0.43';
use Carp ();
use HTML::Parser;
use HTML::TableParser::Table;
## no critic ( ProhibitAccessOfPrivateData )
our @ISA = qw(HTML::Parser);
# Preloaded methods go here.
our %Attr = ( Trim => 0,
Decode => 1,
Chomp => 0,
MultiMatch => 0,
DecodeNBSP => 0,
);
our @Attr = keys %Attr;
our $Verbose = 0;
sub new
{
my $class = shift;
my $reqs = shift;
my $self = $class->SUPER::new
(
api_version => 3,
unbroken_text => 1,
start_h => [ '_start', 'self, tagname, attr, line' ],
end_h => [ '_end', 'self, tagname, attr, line' ],
);
Carp::croak( __PACKAGE__, ": must specify a table request" )
unless defined $reqs and 'ARRAY' eq ref $reqs;
my $attr = shift || {};
my @notvalid = grep { ! exists $Attr{$_} } keys %$attr;
Carp::croak ( __PACKAGE__, ": Invalid attribute(s): '",
join(" ,'", @notvalid ), "'" )
if @notvalid;
my %attr = ( %Attr, %$attr );
$self->{reqs} = _tidy_reqs( $reqs, \%attr );
$self->{Tables} = [ HTML::TableParser::Table->new() ];
# by default we're not processing anything
$self->_process(0);
$self;
}
our @ReqAttr = ( qw( cols colre id idre class obj start end
hdr row warn udata ),
keys %Attr );
our %ReqAttr = map { $_ => 1 } @ReqAttr;
# convert table requests into something that HTML::TableParser::Table can
# handle
sub _tidy_reqs
{
my ( $reqs, $attr ) = @_;
my @reqs;
my $nreq = 0;
for my $req ( @$reqs )
{
my %req;
$nreq++;
my @notvalid = grep { ! exists $ReqAttr{$_} } keys %$req;
Carp::croak (__PACKAGE__, ": table request $nreq: invalid attribute(s): '",
join(" ,'", @notvalid ), "'" )
if @notvalid;
my $req_id = 0;
# parse cols and id the same way
for my $what ( qw( cols id ) )
{
$req{$what} = [];
if ( exists $req->{$what} && defined $req->{$what} )
{
my @reqs;
my $ref = ref $req->{$what};
if ( 'ARRAY' eq $ref )
{
@reqs = @{$req->{$what}};
}
elsif ( 'Regexp' eq $ref ||
'CODE' eq $ref ||
! $ref )
{
@reqs = ( $req->{$what} );
}
else
{
Carp::croak( __PACKAGE__,
": table request $nreq: $what must be a scalar, arrayref, or coderef" );
}
# now, check that we have legal things in there
my %attr = ();
for my $match ( @reqs )
{
my $ref = ref $match;
Carp::croak( __PACKAGE__,
": table request $nreq: illegal $what `$match': must be a scalar, regexp, or coderef" )
unless defined $match && ! $ref || 'Regexp' eq $ref
|| 'CODE' eq $ref ;
if ( ! $ref && $match eq '-' )
{
%attr = ( exclude => 1 );
next;
}
if ( ! $ref && $match eq '--' )
{
%attr = ( skip => 1 );
next;
}
if ( ! $ref && $match eq '+' )
{
%attr = ();
next;
}
push @{$req{$what}}, { %attr, match => $match };
%attr = ();
$req_id++;
}
}
}
# colre is now obsolete, but keep backwards compatibility
# column regular expression match?
if ( defined $req->{colre} )
{
my $colre;
if ( 'ARRAY' eq ref $req->{colre} )
{
$colre = $req->{colre};
}
elsif ( ! ref $req->{colre} )
{
$colre = [ $req->{colre} ];
}
else
{
Carp::croak( __PACKAGE__,
": table request $nreq: colre must be a scalar or arrayref" );
}
for my $re ( @$colre )
{
my $ref = ref $re;
Carp::croak( __PACKAGE__, ": table request $nreq: colre must be a scalar" )
unless ! $ref or 'Regexp' eq $ref;
push @{$req{cols}}, { include => 1,
match => 'Regexp' eq $ref ? $re : qr/$re/ };
$req_id++;
}
}
Carp::croak( __PACKAGE__,
": table request $nreq: must specify at least one id method" )
unless $req_id;
$req{obj} = $req->{obj}
if exists $req->{obj};
$req{class} = $req->{class}
if exists $req->{class};
for my $method ( qw( start end hdr row warn new ) )
{
if ( exists $req->{$method} && 'CODE' eq ref $req->{$method} )
{
$req{$method} = $req->{$method};
}
elsif ( exists $req{obj} || exists $req{class})
{
my $thing = exists $req{obj} ? $req{obj} : $req{class};
if ( exists $req->{$method} )
{
if ( defined $req->{$method} )
{
Carp::croak( __PACKAGE__,
": table request $nreq: can't have object & non-scalar $method" )
if ref $req->{$method};
my $call = $req->{$method};
Carp::croak( __PACKAGE__,
": table request $nreq: class doesn't have method $call" )
if ( exists $req->{obj} && ! $req->{obj}->can( $call ) )
|| !UNIVERSAL::can( $thing, $call );
}
# if $req->{$method} is undef, user must have explicitly
# set it so, which is a signal to NOT call that method.
}
else
{
$req{$method} = $method
if UNIVERSAL::can( $thing, $method );
}
}
elsif( exists $req->{$method} )
{
Carp::croak( __PACKAGE__, ": invalid callback for $method" );
}
}
# last minute cleanups for things that don't fit in the above loop
Carp::croak( __PACKAGE__, ": must specify valid constructor for class $req->{class}" )
if exists $req{class} && ! exists $req{new};
$req{udata} = undef;
$req{udata} = exists $req->{udata} ? $req->{udata} : undef;
$req{match} = 0;
@req{@Attr} = @Attr{@Attr};
$req{$_} = $attr->{$_}
foreach grep { defined $attr->{$_} } @Attr;
$req{$_} = $req->{$_}
foreach grep { defined $req->{$_} } @Attr;
push @reqs, \%req;
}
\@reqs;
}
sub _process
{
my ($self, $state) = @_;
my $ostate = $self->{process} || 0;
if ( $state )
{
$self->report_tags( qw( table th td tr ) );
$self->handler( 'text' => '_text', 'self, text, line' );
}
else
{
$self->report_tags( qw( table ) );
$self->handler( 'text' => '' );
}
$self->{process} = $state;
$ostate;
}
our %trans = ( tr => 'row',
th => 'header',
td => 'column' );
sub _start
{
my $self = shift;
my $tagname = shift;
print STDERR __PACKAGE__, "::start : $_[1] : $tagname \n"
if $HTML::TableParser::Verbose;
if ( 'table' eq $tagname )
{
$self->_start_table( @_ );
}
else
{
my $method = 'start_' . $trans{$tagname};
$self->{Tables}[-1]->$method(@_);
}
}
sub _end
{
my $self = shift;
my $tagname = shift;
print STDERR __PACKAGE__, "::_end : $_[1]: $tagname \n"
if $HTML::TableParser::Verbose;
if ( 'table' eq $tagname )
{
$self->_end_table( @_ );
}
else
{
my $method = 'end_' . $trans{$tagname};
$self->{Tables}[-1]->$method(@_);
}
}
sub _start_table
{
my ( $self, $attr, $line ) = @_;
my $tbl = HTML::TableParser::Table->new( $self,
$self->{Tables}[-1]->ids,
$self->{reqs}, $line );
print STDERR __PACKAGE__, "::_start_table : $tbl->{id}\n"
if $HTML::TableParser::Verbose;
$self->_process( $tbl->process );
push @{$self->{Tables}}, $tbl;
}
sub _end_table
{
my ( $self, $attr, $line ) = @_;
my $tbl = pop @{$self->{Tables}};
print STDERR __PACKAGE__, "::_end_table : $tbl->{id}\n"
if $HTML::TableParser::Verbose;
# the first table in the list is our sentinel table. if we're about
# to delete it, it means that we've hit one too many tags
# we delay the croak until after the pop so that the verbose error
# message prints something nice. no harm anyway as we're about to
# keel over and croak.
Carp::croak( __PACKAGE__,
": $line: unbalanced
tags; too many tags" )
if 0 == @{$self->{Tables}};
undef $tbl;
$self->_process( $self->{Tables}[-1]->process );
}
sub _text
{
my ( $self, $text, $line ) = @_;
$self->{Tables}[-1]->text( $text );
}
1;
#
# This file is part of HTML-TableParser
#
# This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory.
#
# This is free software, licensed under:
#
# The GNU General Public License, Version 3, June 2007
#
=pod
=head1 NAME
HTML::TableParser - HTML::TableParser - Extract data from an HTML table
=head1 VERSION
version 0.43
=head1 SYNOPSIS
use HTML::TableParser;
@reqs = (
{
id => 1.1, # id for embedded table
hdr => \&header, # function callback
row => \&row, # function callback
start => \&start, # function callback
end => \&end, # function callback
udata => { Snack => 'Food' }, # arbitrary user data
},
{
id => 1, # table id
cols => [ 'Object Type',
qr/object/ ], # column name matches
obj => $obj, # method callbacks
},
);
# create parser object
$p = HTML::TableParser->new( \@reqs,
{ Decode => 1, Trim => 1, Chomp => 1 } );
$p->parse_file( 'foo.html' );
# function callbacks
sub start {
my ( $id, $line, $udata ) = @_;
#...
}
sub end {
my ( $id, $line, $udata ) = @_;
#...
}
sub header {
my ( $id, $line, $cols, $udata ) = @_;
#...
}
sub row {
my ( $id, $line, $cols, $udata ) = @_;
#...
}
=head1 DESCRIPTION
B uses B to extract data from an HTML
table. The data is returned via a series of user defined callback
functions or methods. Specific tables may be selected either by a
matching a unique table id or by matching against the column names.
Multiple (even nested) tables may be parsed in a document in one pass.
=head2 Table Identification
Each table is given a unique id, relative to its parent, based upon its
order and nesting. The first top level table has id C<1>, the second
C<2>, etc. The first table nested in table C<1> has id C<1.1>, the
second C<1.2>, etc. The first table nested in table C<1.1> has id
C<1.1.1>, etc. These, as well as the tables' column names, may
be used to identify which tables to parse.
=head2 Data Extraction
As the parser traverses a selected table, it will pass data to user
provided callback functions or methods after it has digested
particular structures in the table. All functions are passed the
table id (as described above), the line number in the HTML source
where the table was found, and a reference to any table specific user
provided data.
=over 8
=item Table Start
The B callback is invoked when a matched table has been found.
=item Table End
The B callback is invoked after a matched table has been parsed.
=item Header
The B callback is invoked after the table header has been read in.
Some tables do not use the BthE> tag to indicate a header, so this
function may not be called. It is passed the column names.
=item Row
The B callback is invoked after a row in the table has been read.
It is passed the column data.
=item Warn
The B callback is invoked when a non-fatal error occurs during
parsing. Fatal errors croak.
=item New
This is the class method to call to create a new object when
B is supposed to create new objects upon table
start.
=back
=head2 Callback API
Callbacks may be functions or methods or a mixture of both.
In the latter case, an object must be passed to the constructor.
(More on that later.)
The callbacks are invoked as follows:
start( $tbl_id, $line_no, $udata );
end( $tbl_id, $line_no, $udata );
hdr( $tbl_id, $line_no, \@col_names, $udata );
row( $tbl_id, $line_no, \@data, $udata );
warn( $tbl_id, $line_no, $message, $udata );
new( $tbl_id, $udata );
=head2 Data Cleanup
There are several cleanup operations that may be performed automatically:
=over 8
=item Chomp
B the data
=item Decode
Run the data through B.
=item DecodeNBSP
Normally B changes a non-breaking space into
a character which doesn't seem to be matched by Perl's whitespace
regexp. Setting this attribute changes the HTML C character to
a plain 'ol blank.
=item Trim
remove leading and trailing white space.
=back
=head2 Data Organization
Column names are derived from cells delimited by the BthE> and
B/thE> tags. Some tables have header cells which span one or
more columns or rows to make things look nice. B
determines the actual number of columns used and provides column
names for each column, repeating names for spanned columns and
concatenating spanned rows and columns. For example, if the
table header looks like this:
+----+--------+----------+-------------+-------------------+
| | | Eq J2000 | | Velocity/Redshift |
| No | Object |----------| Object Type |-------------------|
| | | RA | Dec | | km/s | z | Qual |
+----+--------+----------+-------------+-------------------+
The columns will be:
No
Object
Eq J2000 RA
Eq J2000 Dec
Object Type
Velocity/Redshift km/s
Velocity/Redshift z
Velocity/Redshift Qual
Row data are derived from cells delimited by the BtdE> and
B/tdE> tags. Cells which span more than one column or row are
handled correctly, i.e. the values are duplicated in the appropriate
places.
=head1 METHODS
=over 8
=item new
$p = HTML::TableParser->new( \@reqs, \%attr );
This is the class constructor. It is passed a list of table requests
as well as attributes which specify defaults for common operations.
Table requests are documented in L.
The C<%attr> hash provides default values for some of the table
request attributes, namely the data cleanup operations ( C,
C, C ), and the multi match attribute C,
i.e.,
$p = HTML::TableParser->new( \@reqs, { Chomp => 1 } );
will set B on for all of the table requests, unless overridden
by them. The data cleanup operations are documented above; C
is documented in L.
B defaults to on; all of the others default to off.
=item parse_file
This is the same function as in B.
=item parse
This is the same function as in B.
=back
=head1 Table Requests
A table request is a hash used by B to determine
which tables are to be parsed, the callbacks to be invoked, and any
data cleanup. There may be multiple requests processed by one call to
the parser; each table is associated with a single request (even if
several requests match the table).
A single request may match several tables, however unless the
B attribute is specified for that request, it will be used
for the first matching table only.
A table request which matches a table id of C will be used as
a catch-all request, and will match all tables not matched by other
requests. Please note that tables are compared to the requests in the
order that the latter are passed to the B method; place the
B method last for proper behavior.
=head2 Identifying tables to parse
B needs to be told which tables to parse. This can
be done by matching table ids or column names, or a combination of
both. The table request hash elements dedicated to this are:
=over 8
=item id
This indicates a match on table id. It can take one of these forms:
=over 8
=item exact match
id => $match
id => '1.2'
Here C<$match> is a scalar which is compared directly to the table id.
=item regular expression
id => $re
id => qr/1\.\d+\.2/
C<$re> is a regular expression, which must be constructed with the
C operator.
=item subroutine
id => \&my_match_subroutine
id => sub { my ( $id, $oids ) = @_ ;
$oids[0] > 3 && $oids[1] < 2 }
Here C is assigned a coderef to a subroutine which returns
true if the table matches, false if not. The subroutine is passed
two arguments: the table id as a scalar string ( e.g. C<1.2.3>) and the
table id as an arrayref (e.g. C<$oids = [ 1, 2, 3]>).
=back
C may be passed an array containing any combination of the
above:
id => [ '1.2', qr/1\.\d+\.2/, sub { ... } ]
Elements in the array may be preceded by a modifier indicating
the action to be taken if the table matches on that element.
The modifiers and their meanings are:
=over 8
=item C<->
If the id matches, it is explicitly excluded from being processed
by this request.
=item C<-->
If the id matches, it is skipped by B requests.
=item C<+>
If the id matches, it will be processed by this request. This
is the default action.
=back
An example:
id => [ '-', '1.2', 'DEFAULT' ]
indicates that this request should be used for all tables,
except for table 1.2.
id => [ '--', '1.2' ]
Table 2 is just plain skipped altogether.
=item cols
This indicates a match on column names. It can take one of these forms:
=over 8
=item exact match
cols => $match
cols => 'Snacks01'
Here C<$match> is a scalar which is compared directly to the column names.
If any column matches, the table is processed.
=item regular expression
cols => $re
cols => qr/Snacks\d+/
C<$re> is a regular expression, which must be constructed with the
C operator. Again, a successful match against any column name
causes the table to be processed.
=item subroutine
cols => \&my_match_subroutine
cols => sub { my ( $id, $oids, $cols ) = @_ ;
... }
Here C is assigned a coderef to a subroutine which returns
true if the table matches, false if not. The subroutine is passed
three arguments: the table id as a scalar string ( e.g. C<1.2.3>), the
table id as an arrayref (e.g. C<$oids = [ 1, 2, 3]>), and the column
names, as an arrayref (e.g. C<$cols = [ 'col1', 'col2' ]>). This
option gives the calling routine the ability to make arbitrary
selections based upon table id and columns.
=back
C may be passed an arrayref containing any combination of the
above:
cols => [ 'Snacks01', qr/Snacks\d+/, sub { ... } ]
Elements in the array may be preceded by a modifier indicating
the action to be taken if the table matches on that element.
They are the same as the table id modifiers mentioned above.
=item colre
B
An arrayref containing the regular expressions to match, or a scalar
containing a single reqular expression
=back
More than one of these may be used for a single table request. A
request may match more than one table. By default a request is used
only once (even the C id match!). Set the C
attribute to enable multiple matches per request.
When attempting to match a table, the following steps are taken:
=over 8
=item 1
The table id is compared to the requests which contain an id match.
The first such match is used (in the order given in the passed array).
=item 2
If no explicit id match is found, column name matches are attempted.
The first such match is used (in the order given in the passed array)
=item 3
If no column name match is found (or there were none requested),
the first request which matches an B of C is used.
=back
=head2 Specifying the data callbacks
Callback functions are specified with the callback attributes
C, C, C, C, and C. They should be set to
code references, i.e.
%table_req = ( ..., start => \&start_func, end => \&end_func )
To use methods, specify the object with the C key, and
the method names via the callback attributes, which should be set
to strings. If you don't specify method names they will default to (you
guessed it) C, C, C, C, and C.
$obj = SomeClass->new();
# ...
%table_req_1 = ( ..., obj => $obj );
%table_req_2 = ( ..., obj => $obj, start => 'start',
end => 'end' );
You can also have B create a new object for you
for each table by specifying the C attribute. By default
the constructor is assumed to be the class B method; if not,
specify it using the C attribute:
use MyClass;
%table_req = ( ..., class => 'MyClass', new => 'mynew' );
To use a function instead of a method for a particular callback,
set the callback attribute to a code reference:
%table_req = ( ..., obj => $obj, end => \&end_func );
You don't have to provide all the callbacks. You should not use both
C and C in the same table request.
B automatically determines if your object
or class has one of the required methods. If you wish it I
to use a particular method, set it equal to C. For example
%table_req = ( ..., obj => $obj, end => undef )
indicates the object's B method should not be called, even
if it exists.
You can specify arbitrary data to be passed to the callback functions
via the C attribute:
%table_req = ( ..., udata => \%hash_of_my_special_stuff )
=head2 Specifying Data cleanup operations
Data cleanup operations may be specified uniquely for each table. The
available keys are C, C, C. They should be
set to a non-zero value if the operation is to be performed.
=head2 Other Attributes
The C key is used when a request is capable of handling
multiple tables in the document. Ordinarily, a request will process
a single table only (even C requests).
Set it to a non-zero value to allow the request to handle more than
one table.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
L or by
email to
L.
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.
=head1 SOURCE
The development version is on github at L
and may be cloned from L
=head1 AUTHOR
Diab Jerius
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory.
This is free software, licensed under:
The GNU General Public License, Version 3, June 2007
=cut
__END__
#pod =head1 SYNOPSIS
#pod
#pod use HTML::TableParser;
#pod
#pod @reqs = (
#pod {
#pod id => 1.1, # id for embedded table
#pod hdr => \&header, # function callback
#pod row => \&row, # function callback
#pod start => \&start, # function callback
#pod end => \&end, # function callback
#pod udata => { Snack => 'Food' }, # arbitrary user data
#pod },
#pod {
#pod id => 1, # table id
#pod cols => [ 'Object Type',
#pod qr/object/ ], # column name matches
#pod obj => $obj, # method callbacks
#pod },
#pod );
#pod
#pod # create parser object
#pod $p = HTML::TableParser->new( \@reqs,
#pod { Decode => 1, Trim => 1, Chomp => 1 } );
#pod $p->parse_file( 'foo.html' );
#pod
#pod
#pod # function callbacks
#pod sub start {
#pod my ( $id, $line, $udata ) = @_;
#pod #...
#pod }
#pod
#pod sub end {
#pod my ( $id, $line, $udata ) = @_;
#pod #...
#pod }
#pod
#pod sub header {
#pod my ( $id, $line, $cols, $udata ) = @_;
#pod #...
#pod }
#pod
#pod sub row {
#pod my ( $id, $line, $cols, $udata ) = @_;
#pod #...
#pod }
#pod
#pod =head1 DESCRIPTION
#pod
#pod B uses B to extract data from an HTML
#pod table. The data is returned via a series of user defined callback
#pod functions or methods. Specific tables may be selected either by a
#pod matching a unique table id or by matching against the column names.
#pod Multiple (even nested) tables may be parsed in a document in one pass.
#pod
#pod =head2 Table Identification
#pod
#pod Each table is given a unique id, relative to its parent, based upon its
#pod order and nesting. The first top level table has id C<1>, the second
#pod C<2>, etc. The first table nested in table C<1> has id C<1.1>, the
#pod second C<1.2>, etc. The first table nested in table C<1.1> has id
#pod C<1.1.1>, etc. These, as well as the tables' column names, may
#pod be used to identify which tables to parse.
#pod
#pod =head2 Data Extraction
#pod
#pod As the parser traverses a selected table, it will pass data to user
#pod provided callback functions or methods after it has digested
#pod particular structures in the table. All functions are passed the
#pod table id (as described above), the line number in the HTML source
#pod where the table was found, and a reference to any table specific user
#pod provided data.
#pod
#pod =over 8
#pod
#pod =item Table Start
#pod
#pod The B callback is invoked when a matched table has been found.
#pod
#pod =item Table End
#pod
#pod The B callback is invoked after a matched table has been parsed.
#pod
#pod =item Header
#pod
#pod The B callback is invoked after the table header has been read in.
#pod Some tables do not use the BthE> tag to indicate a header, so this
#pod function may not be called. It is passed the column names.
#pod
#pod =item Row
#pod
#pod The B callback is invoked after a row in the table has been read.
#pod It is passed the column data.
#pod
#pod =item Warn
#pod
#pod The B callback is invoked when a non-fatal error occurs during
#pod parsing. Fatal errors croak.
#pod
#pod =item New
#pod
#pod This is the class method to call to create a new object when
#pod B is supposed to create new objects upon table
#pod start.
#pod
#pod =back
#pod
#pod =head2 Callback API
#pod
#pod Callbacks may be functions or methods or a mixture of both.
#pod In the latter case, an object must be passed to the constructor.
#pod (More on that later.)
#pod
#pod The callbacks are invoked as follows:
#pod
#pod start( $tbl_id, $line_no, $udata );
#pod
#pod end( $tbl_id, $line_no, $udata );
#pod
#pod hdr( $tbl_id, $line_no, \@col_names, $udata );
#pod
#pod row( $tbl_id, $line_no, \@data, $udata );
#pod
#pod warn( $tbl_id, $line_no, $message, $udata );
#pod
#pod new( $tbl_id, $udata );
#pod
#pod =head2 Data Cleanup
#pod
#pod There are several cleanup operations that may be performed automatically:
#pod
#pod =over 8
#pod
#pod =item Chomp
#pod
#pod B the data
#pod
#pod =item Decode
#pod
#pod Run the data through B.
#pod
#pod =item DecodeNBSP
#pod
#pod Normally B changes a non-breaking space into
#pod a character which doesn't seem to be matched by Perl's whitespace
#pod regexp. Setting this attribute changes the HTML C character to
#pod a plain 'ol blank.
#pod
#pod =item Trim
#pod
#pod remove leading and trailing white space.
#pod
#pod =back
#pod
#pod =head2 Data Organization
#pod
#pod Column names are derived from cells delimited by the BthE> and
#pod B/thE> tags. Some tables have header cells which span one or
#pod more columns or rows to make things look nice. B
#pod determines the actual number of columns used and provides column
#pod names for each column, repeating names for spanned columns and
#pod concatenating spanned rows and columns. For example, if the
#pod table header looks like this:
#pod
#pod +----+--------+----------+-------------+-------------------+
#pod | | | Eq J2000 | | Velocity/Redshift |
#pod | No | Object |----------| Object Type |-------------------|
#pod | | | RA | Dec | | km/s | z | Qual |
#pod +----+--------+----------+-------------+-------------------+
#pod
#pod The columns will be:
#pod
#pod No
#pod Object
#pod Eq J2000 RA
#pod Eq J2000 Dec
#pod Object Type
#pod Velocity/Redshift km/s
#pod Velocity/Redshift z
#pod Velocity/Redshift Qual
#pod
#pod Row data are derived from cells delimited by the BtdE> and
#pod B/tdE> tags. Cells which span more than one column or row are
#pod handled correctly, i.e. the values are duplicated in the appropriate
#pod places.
#pod
#pod =head1 METHODS
#pod
#pod =over 8
#pod
#pod =item new
#pod
#pod $p = HTML::TableParser->new( \@reqs, \%attr );
#pod
#pod This is the class constructor. It is passed a list of table requests
#pod as well as attributes which specify defaults for common operations.
#pod Table requests are documented in L.
#pod
#pod The C<%attr> hash provides default values for some of the table
#pod request attributes, namely the data cleanup operations ( C,
#pod C, C ), and the multi match attribute C,
#pod i.e.,
#pod
#pod $p = HTML::TableParser->new( \@reqs, { Chomp => 1 } );
#pod
#pod will set B on for all of the table requests, unless overridden
#pod by them. The data cleanup operations are documented above; C
#pod is documented in L.
#pod
#pod B defaults to on; all of the others default to off.
#pod
#pod =item parse_file
#pod
#pod This is the same function as in B.
#pod
#pod =item parse
#pod
#pod This is the same function as in B.
#pod
#pod =back
#pod
#pod
#pod =head1 Table Requests
#pod
#pod A table request is a hash used by B to determine
#pod which tables are to be parsed, the callbacks to be invoked, and any
#pod data cleanup. There may be multiple requests processed by one call to
#pod the parser; each table is associated with a single request (even if
#pod several requests match the table).
#pod
#pod A single request may match several tables, however unless the
#pod B attribute is specified for that request, it will be used
#pod for the first matching table only.
#pod
#pod A table request which matches a table id of C will be used as
#pod a catch-all request, and will match all tables not matched by other
#pod requests. Please note that tables are compared to the requests in the
#pod order that the latter are passed to the B method; place the
#pod B method last for proper behavior.
#pod
#pod
#pod =head2 Identifying tables to parse
#pod
#pod B needs to be told which tables to parse. This can
#pod be done by matching table ids or column names, or a combination of
#pod both. The table request hash elements dedicated to this are:
#pod
#pod =over 8
#pod
#pod =item id
#pod
#pod This indicates a match on table id. It can take one of these forms:
#pod
#pod =over 8
#pod
#pod =item exact match
#pod
#pod id => $match
#pod id => '1.2'
#pod
#pod Here C<$match> is a scalar which is compared directly to the table id.
#pod
#pod =item regular expression
#pod
#pod id => $re
#pod id => qr/1\.\d+\.2/
#pod
#pod C<$re> is a regular expression, which must be constructed with the
#pod C operator.
#pod
#pod =item subroutine
#pod
#pod id => \&my_match_subroutine
#pod id => sub { my ( $id, $oids ) = @_ ;
#pod $oids[0] > 3 && $oids[1] < 2 }
#pod
#pod Here C is assigned a coderef to a subroutine which returns
#pod true if the table matches, false if not. The subroutine is passed
#pod two arguments: the table id as a scalar string ( e.g. C<1.2.3>) and the
#pod table id as an arrayref (e.g. C<$oids = [ 1, 2, 3]>).
#pod
#pod =back
#pod
#pod C may be passed an array containing any combination of the
#pod above:
#pod
#pod id => [ '1.2', qr/1\.\d+\.2/, sub { ... } ]
#pod
#pod Elements in the array may be preceded by a modifier indicating
#pod the action to be taken if the table matches on that element.
#pod The modifiers and their meanings are:
#pod
#pod =over 8
#pod
#pod =item C<->
#pod
#pod If the id matches, it is explicitly excluded from being processed
#pod by this request.
#pod
#pod =item C<-->
#pod
#pod If the id matches, it is skipped by B requests.
#pod
#pod =item C<+>
#pod
#pod If the id matches, it will be processed by this request. This
#pod is the default action.
#pod
#pod =back
#pod
#pod An example:
#pod
#pod id => [ '-', '1.2', 'DEFAULT' ]
#pod
#pod indicates that this request should be used for all tables,
#pod except for table 1.2.
#pod
#pod id => [ '--', '1.2' ]
#pod
#pod Table 2 is just plain skipped altogether.
#pod
#pod =item cols
#pod
#pod This indicates a match on column names. It can take one of these forms:
#pod
#pod =over 8
#pod
#pod =item exact match
#pod
#pod cols => $match
#pod cols => 'Snacks01'
#pod
#pod Here C<$match> is a scalar which is compared directly to the column names.
#pod If any column matches, the table is processed.
#pod
#pod =item regular expression
#pod
#pod cols => $re
#pod cols => qr/Snacks\d+/
#pod
#pod C<$re> is a regular expression, which must be constructed with the
#pod C operator. Again, a successful match against any column name
#pod causes the table to be processed.
#pod
#pod =item subroutine
#pod
#pod cols => \&my_match_subroutine
#pod cols => sub { my ( $id, $oids, $cols ) = @_ ;
#pod ... }
#pod
#pod Here C is assigned a coderef to a subroutine which returns
#pod true if the table matches, false if not. The subroutine is passed
#pod three arguments: the table id as a scalar string ( e.g. C<1.2.3>), the
#pod table id as an arrayref (e.g. C<$oids = [ 1, 2, 3]>), and the column
#pod names, as an arrayref (e.g. C<$cols = [ 'col1', 'col2' ]>). This
#pod option gives the calling routine the ability to make arbitrary
#pod selections based upon table id and columns.
#pod
#pod =back
#pod
#pod C may be passed an arrayref containing any combination of the
#pod above:
#pod
#pod cols => [ 'Snacks01', qr/Snacks\d+/, sub { ... } ]
#pod
#pod Elements in the array may be preceded by a modifier indicating
#pod the action to be taken if the table matches on that element.
#pod They are the same as the table id modifiers mentioned above.
#pod
#pod =item colre
#pod
#pod B
#pod An arrayref containing the regular expressions to match, or a scalar
#pod containing a single reqular expression
#pod
#pod =back
#pod
#pod More than one of these may be used for a single table request. A
#pod request may match more than one table. By default a request is used
#pod only once (even the C id match!). Set the C
#pod attribute to enable multiple matches per request.
#pod
#pod When attempting to match a table, the following steps are taken:
#pod
#pod =over 8
#pod
#pod =item 1
#pod
#pod The table id is compared to the requests which contain an id match.
#pod The first such match is used (in the order given in the passed array).
#pod
#pod =item 2
#pod
#pod If no explicit id match is found, column name matches are attempted.
#pod The first such match is used (in the order given in the passed array)
#pod
#pod =item 3
#pod
#pod If no column name match is found (or there were none requested),
#pod the first request which matches an B of C is used.
#pod
#pod =back
#pod
#pod =head2 Specifying the data callbacks
#pod
#pod Callback functions are specified with the callback attributes
#pod C, C, C, C, and C. They should be set to
#pod code references, i.e.
#pod
#pod %table_req = ( ..., start => \&start_func, end => \&end_func )
#pod
#pod To use methods, specify the object with the C key, and
#pod the method names via the callback attributes, which should be set
#pod to strings. If you don't specify method names they will default to (you
#pod guessed it) C, C, C, C, and C.
#pod
#pod $obj = SomeClass->new();
#pod # ...
#pod %table_req_1 = ( ..., obj => $obj );
#pod %table_req_2 = ( ..., obj => $obj, start => 'start',
#pod end => 'end' );
#pod
#pod You can also have B create a new object for you
#pod for each table by specifying the C attribute. By default
#pod the constructor is assumed to be the class B method; if not,
#pod specify it using the C attribute:
#pod
#pod use MyClass;
#pod %table_req = ( ..., class => 'MyClass', new => 'mynew' );
#pod
#pod To use a function instead of a method for a particular callback,
#pod set the callback attribute to a code reference:
#pod
#pod %table_req = ( ..., obj => $obj, end => \&end_func );
#pod
#pod You don't have to provide all the callbacks. You should not use both
#pod C and C in the same table request.
#pod
#pod B automatically determines if your object
#pod or class has one of the required methods. If you wish it I
#pod to use a particular method, set it equal to C. For example
#pod
#pod %table_req = ( ..., obj => $obj, end => undef )
#pod
#pod indicates the object's B method should not be called, even
#pod if it exists.
#pod
#pod You can specify arbitrary data to be passed to the callback functions
#pod via the C attribute:
#pod
#pod %table_req = ( ..., udata => \%hash_of_my_special_stuff )
#pod
#pod =head2 Specifying Data cleanup operations
#pod
#pod Data cleanup operations may be specified uniquely for each table. The
#pod available keys are C, C, C. They should be
#pod set to a non-zero value if the operation is to be performed.
#pod
#pod =head2 Other Attributes
#pod
#pod The C key is used when a request is capable of handling
#pod multiple tables in the document. Ordinarily, a request will process
#pod a single table only (even C requests).
#pod Set it to a non-zero value to allow the request to handle more than
#pod one table.