#Time-stamp: "2001-03-10 23:19:11 MST" -*-Text-*-
# This document contains text in Perl "POD" format.
# Use a POD viewer like perldoc or perlman to render it.
=head1 NAME
HTML::Tree::Scanning -- article: "Scanning HTML"
=head1 SYNOPSIS
# This an article, not a module.
=head1 DESCRIPTION
The following article by Sean M. Burke first appeared in I #19 and is copyright 2000 The Perl Journal. It appears
courtesy of Jon Orwant and The Perl Journal. This document may be
distributed under the same terms as Perl itself.
(Note that this is discussed in chapters 6 through 10 of the
book I L which
was written after the following documentation, and which is
available free online.)
=head1 Scanning HTML
-- Sean M. Burke
In I issue 17, Ken MacFarlane's article "Parsing
HTML with HTML::Parser" describes how the HTML::Parser module scans
HTML source as a stream of start-tags, end-tags, text, comments, etc.
In TPJ #18, my "Trees" article kicked around the idea of tree-shaped
data structures. Now I'll try to tie it together, in a discussion of
HTML trees.
The CPAN module HTML::TreeBuilder takes the
tags that HTML::Parser picks out, and builds a parse tree -- a
tree-shaped network of objects...
=over
Footnote:
And if you need a quick explanation of objects, see my TPJ17 article "A
User's View of Object-Oriented Modules"; or go whole hog and get Damian
Conway's excellent book I, from Manning
Publications.
=back
...representing the structured content of the HTML document. And once
the document is parsed as a tree, you'll find the common tasks
of extracting data from that HTML document/tree to be quite
straightforward.
=head2 HTML::Parser, HTML::TreeBuilder, and HTML::Element
You use HTML::TreeBuilder to make a parse tree out of an HTML source
file, by simply saying:
use HTML::TreeBuilder;
my $tree = HTML::TreeBuilder->new();
$tree->parse_file('foo.html');
and then C<$tree> contains a parse tree built from the HTML source from
the file "foo.html". The way this parse tree is represented is with a
network of objects -- C<$tree> is the root, an element with tag-name
"html", and its children typically include a "head" and "body" element,
and so on. Elements in the tree are objects of the class
HTML::Element.
So, if you take this source:
Doc 1
Stuff
2000-08-17
and feed it to HTML::TreeBuilder, it'll return a tree of objects that
looks like this:
html
/ \
head body
/ / | \
title "Stuff" hr "2000-08-17"
|
"Doc 1"
This is a pretty simple document, but if it were any more complex,
it'd be a bit hard to draw in that style, since it's sprawl left and
right. The same tree can be represented a bit more easily sideways,
with indenting:
. html
. head
. title
. "Doc 1"
. body
. "Stuff"
. hr
. "2000-08-17"
Either way expresses the same structure. In that structure, the root
node is an object of the class HTML::Element
=over
Footnote:
Well actually, the root is of the class HTML::TreeBuilder, but that's
just a subclass of HTML::Element, plus the few extra methods like
C that elaborate the tree
=back
, with the tag name "html", and with two children: an HTML::Element
object whose tag names are "head" and "body". And each of those
elements have children, and so on down. Not all elements (as we'll
call the objects of class HTML::Element) have children -- the "hr"
element doesn't. And note all nodes in the tree are elements -- the
text nodes ("Doc 1", "Stuff", and "2000-08-17") are just strings.
Objects of the class HTML::Element each have three noteworthy attributes:
=over
=item C<_tag> -- (best accessed as C<$e-Etag>)
this element's tag-name, lowercased (e.g., "em" for an "em" element).
=over
Footnote: Yes, this is misnamed. In proper SGML terminology, this is
instead called a "GI", short for "generic identifier"; and the term
"tag" is used for a token of SGML source that represents either
the start of an element (a start-tag like "") or the end
of an element (an end-tag like "". However, since more people
claim to have been abducted by aliens than to have ever seen the
SGML standard, and since both encounters typically involve a feeling of
"missing time", it's not surprising that the terminology of the SGML
standard is not closely followed.
=back
=item C<_parent> -- (best accessed as C<$e-Eparent>)
the element that is C<$obj>'s parent, or undef if this element is the
root of its tree.
=item C<_content> -- (best accessed as C<$e-Econtent_list>)
the list of nodes (i.e., elements or text segments) that are C<$e>'s
children.
=back
Moreover, if an element object has any attributes in the SGML sense of
the word, then those are readable as C<$e-Eattr('name')> -- for
example, with the object built from having parsed "Ea
BEbarE/aE", C<$e-Eattr('id')> will return
the string "foo". Moreover, C<$e-Etag> on that object returns the
string "a", C<$e-Econtent_list> returns a list consisting of just
the single scalar "bar", and C<$e-Eparent> returns the object
that's this node's parent -- which may be, for example, a "p" element.
And that's all that there is to it -- you throw HTML
source at TreeBuilder, and it returns a tree built of HTML::Element
objects and some text strings.
However, what do you I with a tree of objects? People code
information into HTML trees not for the fun of arranging elements, but
to represent the structure of specific text and images -- some text is
in this "li" element, some other text is in that heading, some
images are in that other table cell that has those attributes, and so on.
Now, it may happen that you're rendering that whole HTML tree into some
layout format. Or you could be trying to make some systematic change to
the HTML tree before dumping it out as HTML source again. But, in my
experience, by far the most common programming task that Perl
programmers face with HTML is in trying to extract some piece
of information from a larger document. Since that's so common (and
also since it involves concepts that are basic to more complex tasks),
that is what the rest of this article will be about.
=head2 Scanning HTML trees
Suppose you have a thousand HTML documents, each of them a press
release. They all start out:
[...lots of leading images and junk...]
ConGlomCo to Open New Corporate Office in Ougadougou
BAKERSFIELD, CA, 2000-04-24 -- ConGlomCo's vice president in charge
of world conquest, Rock Feldspar, announced today the opening of a
new office in Ougadougou, the capital city of Burkino Faso, gateway
to the bustling "Silicon Sahara" of Africa...
[...etc...]
...and what you've got to do is, for each document, copy whatever text
is in the "h1" element, so that you can, for example, make a table of
contents of it. Now, there are three ways to do this:
=over
=item * You can just use a regexp to scan the file for a text pattern.
For many very simple tasks, this will do fine. Many HTML documents are,
in practice, very consistently formatted as far as placement of
linebreaks and whitespace, so you could just get away with scanning the
file like so:
sub get_heading {
my $filename = $_[0];
local *HTML;
open(HTML, $filename)
or die "Couldn't open $filename);
my $heading;
Line:
while() {
if( m{(.*?)
}i ) { # match it!
$heading = $1;
last Line;
}
}
close(HTML);
warn "No heading in $filename?"
unless defined $heading;
return $heading;
}
This is quick and fast, but awfully fragile -- if there's a newline in
the middle of a heading's text, it won't match the above regexp, and
you'll get an error. The regexp will also fail if the "h1" element's
start-tag has any attributes. If you have to adapt your code to fit
more kinds of start-tags, you'll end up basically reinventing part of
HTML::Parser, at which point you should probably just stop, and use
HTML::Parser itself:
=item * You can use HTML::Parser to scan the file for an "h1" start-tag
token, then capture all the text tokens until the "h1" close-tag. This
approach is extensively covered in the Ken MacFarlane's TPJ17 article
"Parsing HTML with HTML::Parser". (A variant of this approach is to use
HTML::TokeParser, which presents a different and rather handier
interface to the tokens that HTML::Parser picks out.)
Using HTML::Parser is less fragile than our first approach, since it's
not sensitive to the exact internal formatting of the start-tag (much
less whether it's split across two lines). However, when you need more
information about the context of the "h1" element, or if you're having
to deal with any of the tricky bits of HTML, such as parsing of tables,
you'll find out the flat list of tokens that HTML::Parser returns
isn't immediately useful. To get something useful out of those tokens,
you'll need to write code that knows some things about what elements
take no content (as with "hr" elements), and that a "
" end-tags
are omissible, so a "" will end any currently
open paragraph -- and you're well on your way to pointlessly
reinventing much of the code in HTML::TreeBuilder
=over
Footnote:
And, as the person who last rewrote that module, I can attest that it
wasn't terribly easy to get right! Never underestimate the perversity
of people coding HTML.
=back
, at which point you should probably just stop, and use
HTML::TreeBuilder itself:
=item * You can use HTML::Treebuilder, and scan the tree of element
objects that you get back.
=back
The last approach, using HTML::TreeBuilder, is the diametric opposite of
first approach: The first approach involves just elementary Perl and one
regexp, whereas the TreeBuilder approach involves being at home with
the concept of tree-shaped data structures and modules with
object-oriented interfaces, as well as with the particular interfaces
that HTML::TreeBuilder and HTML::Element provide.
However, what the TreeBuilder approach has going for it is that it's
the most robust, because it involves dealing with HTML in its "native"
format -- it deals with the tree structure that HTML code represents,
without any consideration of how the source is coded and with what
tags omitted.
So, to extract the text from the "h1" elements of an HTML document:
sub get_heading {
my $tree = HTML::TreeBuilder->new;
$tree->parse_file($_[0]); # !
my $heading;
my $h1 = $tree->look_down('_tag', 'h1'); # !
if($h1) {
$heading = $h1->as_text; # !
} else {
warn "No heading in $_[0]?";
}
$tree->delete; # clear memory!
return $heading;
}
This uses some unfamiliar methods that need explaining. The
C method that we've seen before, builds a tree based on
source from the file given. The C method is for marking a
tree's contents as available for garbage collection, when you're done
with the tree. The C method returns a string that contains
all the text bits that are children (or otherwise descendants) of the
given node -- to get the text content of the C<$h1> object, we could
just say:
$heading = join '', $h1->content_list;
but that will work only if we're sure that the "h1" element's children
will be only text bits -- if the document contained:
Local Man Sees Blade Again
then the sub-tree would be:
. h1
. "Local Man Sees "
. cite
. "Blade"
. " Again'
so Ccontent_list> will be something like:
Local Man Sees HTML::Element=HASH(0x15424040) Again
whereas C<$h1-Eas_text> would yield:
Local Man Sees Blade Again
and depending on what you're doing with the heading text, you might
want the C method instead. It returns the (sub)tree
represented as HTML source. C<$h1-Eas_HTML> would yield:
Local Man Sees Blade Again
However, if you wanted the contents of C<$h1> as HTML, but not the
C<$h1> itself, you could say:
join '',
map(
ref($_) ? $_->as_HTML : $_,
$h1->content_list
)
This C