package HTML::TableParser::Table;
use 5.006;
use strict;
use warnings;
use HTML::Entities;
# This class is used to keep track of information related to a table and
# to create the information passed back to the user callbacks. It is
# in charge of marshalling the massaged header and row data to the user
# callbacks.
# An instance is created when the controlling TableParser class finds
# a
tag. The object is given an id based upon which table it
# is to work on. Its methods are invoked from the TableParser
# callbacks when they run across an appropriate tag (tr, th, td). The
# object is destroyed when the matching
tag is found.
# Since tables may be nested, multiple TableParser::Table objects may
# exist simultaneously. TableParser uses two pieces of information
# held by this class -- ids and process. The first is an array
# of table ids, one element per level of table nesting. The second is
# a flag indicating whether this table is being processed (i.e. it
# matches a requested table) or being ignored. Since TableParser
# uses the ids information from an existing table to initialize a new
# table, it first creates an empty sentinel (place holder) table
# (by calling the TableParser::Table constructor with no arguments)
# The class handles missing , , and tags. As such
# (especially when handling multi-row headers) user callbacks may
# be slightly delayed (and data cached). It also handles rows
# with overlapping columns
sub new
{
my $this = shift;
my $class = ref($this) || $this;
my $self = {
data => [[]], # row data (for overlapping rows)
row => undef, # row info
col => undef, # column info
hdr => undef, # accumulated header info
hdr_row => 0, # index of header row
hdr_line => undef, # line in file of header row
in_hdr => 0, # are we in a header row?
prev_hdr => 0, # was the previous row a header row?
line => undef, # line in file of current row
start_line => undef, # line in file of table start
req => undef, # the matching table request
exclreqs => {}, # the requests which exlude this table
};
bless $self, $class;
my ( $parser, $ids, $reqs, $line ) = @_;
$self->{parser} = $parser;
$self->{start_line} = $line;
# if called with no args, create an empty, placeholder object
unless ( defined $ids )
{
$self->{ids} = [ 0 ];
$self->{process} = 0;
$self->{id} = 'sentinel';
}
else
{
$ids->[-1]++;
$self->{oids} = [ @$ids ];
$self->{ids} = [ @$ids, 0 ];
$self->{id} = join( '.', grep { $_ != 0 } @{$ids} );
$self->{reqs} = $reqs;
# are we interested in this table?
$self->match_id();
# inform user of table start. note that if we're looking for
# for column name matches, we don't want to do the callback;
# in that case $self->{req} isn't set and callback() won't
# actually make the call.
$self->callback( 'start', $self->{start_line} )
if $self->{process};
}
$self;
}
sub match_id
{
my $self = shift;
$self->{process} = 0;
$self->{req} = undef;
# 1. look for explicit id matches
# 2. if no explicit id match, use header matches
# 3. if no header matches, use DEFAULT
# 4. if no DEFAULT, no match
# 1. explicit id.
my ( $skip, $req );
( $skip, $req ) =
req_match_id( $self->{reqs}, $self->{id}, $self->{oids},
$self->{exclreqs} );
# did we match a skip table request?
return if $skip;
if ( $req )
{
$self->match_req( $req );
return;
}
# 2. header match.
# don't set {req}, as that'll trigger callbacks and we're not sure
# this is a match yet
if ( grep { @{$_->{cols}} } @{$self->{reqs}})
{
$self->{process} = 1;
$self->{req} = undef;
return;
}
# 3. DEFAULT match
( $skip, $req ) =
req_match_id( $self->{reqs}, 'DEFAULT', $self->{oids}, $self->{exclreqs} );
# did we match a skip table request? Does this make sense for DEFAULT?
return if $skip;
if ( $req )
{
$self->match_req( $req );
return;
}
# 4. out of luck. no match.
}
# determine if a request matches an id. requests should
# be real objects, but until then...
sub req_match_id
{
my ( $reqs, $id, $oids, $excluded ) = @_;
for my $req ( @$reqs )
{
# if we've already excluded this request, don't bother again.
# this is needed for id = DEFAULT passes where we've previously
# excluded based on actual table id and should again.
next if exists $excluded->{$req};
# bail if this request has already matched and we're not
# multi-matching
next if $req->{match} && ! $req->{MultiMatch};
for my $cmp ( @{$req->{id}} )
{
# is this a subroutine to call?
if ( 'CODE' eq ref $cmp->{match} )
{
next unless $cmp->{match}->($id, $oids );
}
# regular expression
elsif( 'Regexp' eq ref $cmp->{match} )
{
next unless $id =~ /$cmp->{match}/;
}
# a direct match?
else
{
next unless $id eq $cmp->{match};
}
# we get here only if there was a match.
# move on to next request if this was an explicit exclude
# request.
if ( $cmp->{exclude} )
{
$excluded->{$req}++;
next;
}
# return match, plus whether this is a global skip request
return ( $cmp->{skip}, $req );
}
}
( 0, undef );
}
# determine if a request matches a column. requests should
# be real objects, but until then...
sub req_match_cols
{
my ( $reqs, $cols, $id, $oids ) = @_;
for my $req ( @$reqs )
{
# bail if this request has already matched and we're not
# multi-matching
next if $req->{match} && ! $req->{MultiMatch};
my @fix_cols = @$cols;
fix_texts($req, \@fix_cols);
for my $cmp ( @{$req->{cols}} )
{
# is this a subroutine to call?
if ( 'CODE' eq ref $cmp->{match} )
{
next unless $cmp->{match}->( $id, $oids, \@fix_cols );
}
# regular expression
elsif( 'Regexp' eq ref $cmp->{match} )
{
next unless grep { /$cmp->{match}/ } @fix_cols;
}
# a direct match?
else
{
next unless grep { $_ eq $cmp->{match} } @fix_cols;
}
# we get here only if there was a match
# move on to next request if this was an explicit exclude
# request.
next if $cmp->{exclude};
# return match, plus whether this is a global skip request
return ( $cmp->{skip}, $req );
}
}
(0, undef);
}
# we've pulled in a header; does it match against one of the requests?
sub match_hdr
{
my ( $self, @cols ) = @_;
# 1. check header matches
# 2. if no header matches, use DEFAULT id
# 3. if no DEFAULT, no match
# 1. check header matches
my ( $skip, $req ) = req_match_cols( $self->{reqs}, \@cols, $self->{id},
$self->{oids} );
# did we match a skip table request?
return 0 if $skip;
if ( $req )
{
$self->match_req( $req );
return 1;
}
# 2. DEFAULT match
( $skip, $req ) =
req_match_id( $self->{reqs}, 'DEFAULT', $self->{oids}, $self->{exclreqs} );
# did we match a skip table request? Does this make sense for DEFAULT?
return 0 if $skip;
if ( $req )
{
$self->match_req( $req );
return 1;
}
# 3. if no DEFAULT, no match
0;
}
sub match_req
{
my ( $self, $req ) = @_;
if ( $req->{class} )
{
# no strict 'refs';
my $new = $req->{new};
$self->{obj} = $req->{class}->$new( $req->{id}, $req->{udata} );
}
elsif ( $req->{obj} )
{
$self->{obj} = $req->{obj};
}
$self->{process} = 1;
$self->{req} = $req;
$self->{req}{match}++;
}
# generic call back interface. handle method calls as well as
# subroutine calls.
sub callback
{
my $self = shift;
my $method = shift;
return unless
defined $self->{req} && exists $self->{req}->{$method};
my $req = $self->{req};
my $call = $req->{$method};
if ( 'CODE' eq ref $call )
{
$call->( $self->{id}, @_, $req->{udata} );
}
else
{
# if the object was destroyed before we get here (if it
# was created by us and thus was destroyed before us if
# there was an error), we can't call a method
$self->{obj}->$call( $self->{id}, @_, $req->{udata} )
if defined $self->{obj};
}
}
# handle
sub start_header
{
my $self = shift;
my ( undef, $line ) = @_;
$self->{in_hdr}++;
$self->{prev_hdr}++;
$self->{hdr_line} = $line;
$self->start_column( @_ );
}
# handle |
sub end_header
{
my $self = shift;
$self->end_column();
}
# handle
sub start_column
{
my $self = shift;
my ( $attr, $line ) = @_;
# end last column if not explicitly ended. perform check here
# to avoid extra method call
$self->end_column() if defined $self->{col};
# we really shouldn't be here if a row hasn't been started
unless ( defined $self->{row} )
{
$self->callback( 'warn', $self->{id}, $line,
" | or | without | at line $line\n" );
$self->start_row( {}, $line );
}
# even weirder. if the last row was a header we have to process it now,
# rather than waiting until the end of this row, as there might be
# a table in one of the cells in this row and if the enclosing table
# was using a column match/re, we won't match it's header until after
# the enclosed table is completely parsed. this is bad, as it may
# grab a match (if there's no multimatch) meant for the enclosing table.
# if we're one row past the header, we're done with the header
$self->finish_header()
if ! $self->{in_hdr} && $self->{prev_hdr};
$self->{col} = { attr => { %$attr} };
$self->{col}{attr}{colspan} ||= 1;
$self->{col}{attr}{rowspan} ||= 1;
}
# handle
sub end_column
{
my $self = shift;
return unless defined $self->{col};
$self->{col}{text} = defined $self->{text} ? $self->{text} : '' ;
push @{$self->{row}}, $self->{col};
$self->{col} = undef;
$self->{text} = undef;
}
sub start_row
{
my $self = shift;
my ( $attr, $line ) = @_;
# end last row if not explicitly ended
$self->end_row();
$self->{row} = [];
$self->{line} = $line;
}
sub end_row
{
my $self = shift;
return unless defined $self->{row};
# perhaps an unfinished row. first finish column
$self->end_column();
# if we're in a header, deal with overlapping cells differently
# then if we're in the data section
if ( $self->{in_hdr} )
{
my $cn = 0;
my $rn = 0;
foreach my $col ( @{$self->{row}} )
{
# do this just in case there are newlines and we're concatenating
# column names later on. causes strange problems. besides,
# column names should be regular
$col->{text} =~ s/^\s+//;
$col->{text} =~ s/\s+$//;
# need to find the first undefined column
$cn++ while defined $self->{hdr}[$cn][$self->{hdr_row}];
# note that header is stored as one array per column, not row!
for ( my $cnn = 0 ; $cnn < $col->{attr}{colspan} ; $cnn++, $cn++ )
{
$self->{hdr}[$cn] ||= [];
$self->{hdr}[$cn][$self->{hdr_row}] = $col->{text};
# put empty placeholders in the rest of the rows
for ( my $rnn = 1 ; $rnn < $col->{attr}{rowspan} ; $rnn++ )
{
$self->{hdr}[$cn][$rnn + $self->{hdr_row}] = '';
}
}
}
$self->{hdr_row}++;
}
else
{
my $cn = 0;
my $rn = 0;
foreach my $col ( @{$self->{row}} )
{
# need to find the first undefined column
$cn++ while defined $self->{data}[0][$cn];
for ( my $cnn = 0 ; $cnn < $col->{attr}{colspan} ; $cnn++, $cn++ )
{
for ( my $rnn = 0 ; $rnn < $col->{attr}{rowspan} ; $rnn++ )
{
$self->{data}[$rnn] ||= [];
$self->{data}[$rnn][$cn] = $col->{text};
}
}
}
}
# if we're one row past the header, we're done with the header
$self->finish_header()
if ! $self->{in_hdr} && $self->{prev_hdr};
# output the data if we're not in a header
$self->callback( 'row', $self->{line},
fix_texts( $self->{req}, shift @{$self->{data}} ) )
unless $self->{in_hdr};
$self->{in_hdr} = 0;
$self->{row} = undef;
}
# collect the possible multiple header rows into one array and
# send it off
sub finish_header
{
my $self = shift;
return unless $self->{hdr};
my @header = map { join( ' ', grep { defined $_ && $_ ne '' } @{$_}) }
@{ $self->{hdr} };
# if we're trying to match header columns, check that here.
if ( defined $self->{req} )
{
fix_texts( $self->{req}, \@header );
$self->callback( 'hdr', $self->{hdr_line}, \@header );
}
else
{
if ( $self->match_hdr( @header ) )
{
# haven't done this callback yet...
$self->callback( 'start', $self->{start_line} );
fix_texts( $self->{req}, \@header );
$self->callback( 'hdr', $self->{hdr_line}, \@header );
}
# no match. reach up to the controlling parser and turn off
# processing of this table. this is kind of kludgy!
else
{
$self->{parser}->process(0);
}
}
$self->{hdr} = undef;
$self->{prev_hdr} = undef;
$self->{hdr_row} = 0;
}
DESTROY
{
my $self = shift;
# if we're actually parsing this table, do something.
if ( $self->{process} )
{
# just in case
$self->end_row();
# just in case there's no table body
$self->finish_header();
$self->callback( 'end', $self->{line} );
}
}
sub fix_texts
{
my ( $req, $texts ) = @_;
for ( @$texts )
{
local $HTML::Entities::entity2char{nbsp} = ' '
if $req->{DecodeNBSP};
chomp $_
if $req->{Chomp};
decode_entities( $_ )
if $req->{Decode};
if ( $req->{Trim} )
{
s/^\s+//;
s/\s+$//;
}
}
$texts;
}
sub text
{
my $self = shift;
$self->{text} = shift;
}
sub id { $_[0]->{id} }
sub ids { $_[0]->{ids} }
sub process { $_[0]->{process} }
package HTML::TableParser;
use 5.006;
use strict;
use warnings;
use Carp;
use HTML::Parser;
our @ISA = qw(HTML::Parser);
our $VERSION = '0.34';
# 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' ],
);
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;
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;
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
{
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;
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
{
croak( __PACKAGE__,
": table request $nreq: colre must be a scalar or arrayref" );
}
for my $re ( @$colre )
{
my $ref = ref $re;
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++;
}
}
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} )
{
croak( __PACKAGE__,
": table request $nreq: can't have object & non-scalar $method" )
if ref $req->{$method};
my $call = $req->{$method};
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} )
{
croak( __PACKAGE__, ": invalid callback for $method" );
}
}
# last minute cleanups for things that don't fit in the above loop
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 $otbl = $self->{Tables}[-1];
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.
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;
__END__
=pod
=head1 NAME
HTML::TableParser - Extract data from an HTML table
=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 overriden
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 LICENSE
This software is released under the GNU General Public License. You
may find a copy at
http://www.fsf.org/copyleft/gpl.html
=head1 AUTHOR
Diab Jerius (djerius@cfa.harvard.edu)
=head1 SEE ALSO
L, L.
=cut