/usr/share/perl5/HTML/TokeParser/Simple.pm is in libhtml-tokeparser-simple-perl 3.16-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 | package HTML::TokeParser::Simple;
use strict;
use HTML::TokeParser;
use HTML::TokeParser::Simple::Token;
use HTML::TokeParser::Simple::Token::Tag;
use HTML::TokeParser::Simple::Token::Tag::Start;
use HTML::TokeParser::Simple::Token::Tag::End;
use HTML::TokeParser::Simple::Token::Text;
use HTML::TokeParser::Simple::Token::Comment;
use HTML::TokeParser::Simple::Token::Declaration;
use HTML::TokeParser::Simple::Token::ProcessInstruction;
our $VERSION = '3.16';
use base 'HTML::TokeParser';
# constructors
my %FACTORY_CLASSES = (
S => 'HTML::TokeParser::Simple::Token::Tag::Start',
E => 'HTML::TokeParser::Simple::Token::Tag::End',
T => 'HTML::TokeParser::Simple::Token::Text',
C => 'HTML::TokeParser::Simple::Token::Comment',
D => 'HTML::TokeParser::Simple::Token::Declaration',
PI => 'HTML::TokeParser::Simple::Token::ProcessInstruction',
);
sub _croak {
my ($proto, $message) = @_;
require Carp;
Carp::croak($message);
}
sub new {
my ($class, @args) = @_;
return 1 == @args
? $class->SUPER::new(@args)
: $class->_init(@args);
}
sub _init {
my ($class, $source_type, $source) = @_;
my %sources = (
file => sub { $source },
handle => sub { $source },
string => sub { \$source },
url => sub {
eval "require LWP::Simple";
$class->_croak("Cannot load LWP::Simple: $@") if $@;
my $content = LWP::Simple::get($source);
$class->_croak("Could not fetch content from ($source)")
unless defined $content;
return \$content;
},
);
unless (exists $sources{$source_type}) {
$class->_croak("Unknown source type ($source_type)");
}
return $class->new($sources{$source_type}->());
}
sub get_token {
my $self = shift;
my @args = @_;
my $token = $self->SUPER::get_token( @args );
return unless defined $token;
if (my $factory_class = $FACTORY_CLASSES{$token->[0]}) {
return $factory_class->new($token);
}
else {
# this should never happen
$self->_croak("Cannot determine token class for token (@$token)");
}
}
sub get_tag {
my $self = shift;
my @args = @_;
my $token = $self->SUPER::get_tag( @args );
return unless defined $token;
return $token->[0] =~ /^\//
? HTML::TokeParser::Simple::Token::Tag::End->new($token)
: HTML::TokeParser::Simple::Token::Tag::Start->new($token);
}
sub peek {
my ($self, $count) = @_;
$count ||= 1;
unless ($count =~ /^\d+$/) {
$self->_croak("Argument to peek() must be a positive integer, not ($count)");
}
my $items = 0;
my $html = '';
my @tokens;
while ( $items++ < $count && defined ( my $token = $self->get_token ) ) {
$html .= $token->as_is;
push @tokens, $token;
}
$self->unget_token(@tokens);
return $html;
}
1;
__END__
=head1 NAME
HTML::TokeParser::Simple - Easy to use C<HTML::TokeParser> interface
=head1 SYNOPSIS
use HTML::TokeParser::Simple;
my $p = HTML::TokeParser::Simple->new( $somefile );
while ( my $token = $p->get_token ) {
# This prints all text in an HTML doc (i.e., it strips the HTML)
next unless $token->is_text;
print $token->as_is;
}
=head1 DESCRIPTION
C<HTML::TokeParser> is an excellent module that's often used for parsing HTML.
However, the tokens returned are not exactly intuitive to parse:
["S", $tag, $attr, $attrseq, $text]
["E", $tag, $text]
["T", $text, $is_data]
["C", $text]
["D", $text]
["PI", $token0, $text]
To simplify this, C<HTML::TokeParser::Simple> allows the user ask more
intuitive (read: more self-documenting) questions about the tokens returned.
You can also rebuild some tags on the fly. Frequently, the attributes
associated with start tags need to be altered, added to, or deleted. This
functionality is built in.
Since this is a subclass of C<HTML::TokeParser>, all C<HTML::TokeParser>
methods are available. To truly appreciate the power of this module, please
read the documentation for C<HTML::TokeParser> and C<HTML::Parser>.
=head1 CONTRUCTORS
=head2 C<new($source)>
The constructor for C<HTML::TokeParser::Simple> can be used just like
C<HTML::TokeParser>'s constructor:
my $parser = HTML::TokeParser::Simple->new($filename);
# or
my $parser = HTML::TokeParser::Simple->new($filehandle);
# or
my $parser = HTML::TokeParser::Simple->new(\$html_string);
=head2 C<new($source_type, $source)>
If you wish to be more explicit, there is a new style of
constructor available.
my $parser = HTML::TokeParser::Simple->new(file => $filename);
# or
my $parser = HTML::TokeParser::Simple->new(handle => $filehandle);
# or
my $parser = HTML::TokeParser::Simple->new(string => $html_string);
Note that you do not have to provide a reference for the string if using the
string constructor.
As a convenience, you can also attempt to fetch the HTML directly from a URL.
my $parser = HTML::TokeParser::Simple->new(url => 'http://some.url');
This method relies on C<LWP::Simple>. If this module is not found or the page
cannot be fetched, the constructor will C<croak()>.
=head1 PARSER METHODS
=head2 get_token
This method will return the next token that C<HTML::TokeParser::get_token()>
method would return. However, it will be blessed into a class appropriate
which represents the token type.
=head2 get_tag
This method will return the next token that C<HTML::TokeParser::get_tag()>
method would return. However, it will be blessed into either the
L<HTML::TokeParser::Simple::Token::Tag::Start> or
L<HTML::TokeParser::Simple::Token::Tag::End> class.
=head2 peek
As of version C<3.14>, you can now C<peek()> at the upcomings tokens without
affecting the state of the parser. By default, C<peek()> will return the text
of the next token, but specifying an integer C<$count> will return the text of
the next C<$count> tokens.
This is useful when you're trying to debug where you are in a document.
warn $parser->peek(3); # show the next 3 tokens
=head1 ACCESSORS
The following methods may be called on the token object which is returned,
not on the parser object.
=head2 Boolean Accessors
These accessors return true or false.
=over 4
=item * C<is_tag([$tag])>
Use this to determine if you have any tag. An optional "tag type" may be
passed. This will allow you to match if it's a I<particular> tag. The
supplied tag is case-insensitive.
if ( $token->is_tag ) { ... }
Optionally, you may pass a regular expression as an argument.
=item * C<is_start_tag([$tag])>
Use this to determine if you have a start tag. An optional "tag type" may be
passed. This will allow you to match if it's a I<particular> start tag. The
supplied tag is case-insensitive.
if ( $token->is_start_tag ) { ... }
if ( $token->is_start_tag( 'font' ) ) { ... }
Optionally, you may pass a regular expression as an argument. To match all
header (h1, h2, ... h6) tags:
if ( $token->is_start_tag( qr/^h[123456]$/ ) ) { ... }
=item * C<is_end_tag([$tag])>
Use this to determine if you have an end tag. An optional "tag type" may be
passed. This will allow you to match if it's a I<particular> end tag. The
supplied tag is case-insensitive.
When testing for an end tag, the forward slash on the tag is optional.
while ( $token = $p->get_token ) {
if ( $token->is_end_tag( 'form' ) ) { ... }
}
Or:
while ( $token = $p->get_token ) {
if ( $token->is_end_tag( '/form' ) ) { ... }
}
Optionally, you may pass a regular expression as an argument.
=item * C<is_text()>
Use this to determine if you have text. Note that this is I<not> to be
confused with the C<return_text> (I<deprecated>) method described below!
C<is_text> will identify text that the user typically sees display in the Web
browser.
=item * C<is_comment()>
Are you still reading this? Nobody reads POD. Don't you know you're supposed
to go to CLPM, ask a question that's answered in the POD and get flamed? It's
a rite of passage.
Really.
C<is_comment> is used to identify comments. See the HTML::Parser documentation
for more information about comments. There's more than you might think.
=item * C<is_declaration()>
This will match the DTD at the top of your HTML. (You I<do> use DTD's, don't
you?)
=item * C<is_process_instruction()>
Process Instructions are from XML. This is very handy if you need to parse out
PHP and similar things with a parser.
Currently, there appear to be some problems with process instructions. You can
override C<HTML::TokeParser::Simple::Token::ProcessInstruction> if you need to.
=item * C<is_pi()>
This is a shorthand for C<is_process_instruction()>.
=back
=head2 Data Accessors
Some of these were originally C<return_> methods, but that name was not only
unwieldy, but also went against reasonable conventions. The C<get_> methods
listed below still have C<return_> methods available for backwards
compatibility reasons, but they merely call their C<get_> counterpart. For
example, calling C<return_tag()> actually calls C<get_tag()> internally.
=over 4
=item * C<get_tag()>
Do you have a start tag or end tag? This will return the type (lower case).
Note that this is I<not> the same as the C<get_tag()> method on the actual
parser object.
=item * C<get_attr([$attribute])>
If you have a start tag, this will return a hash ref with the attribute names
as keys and the values as the values.
If you pass in an attribute name, it will return the value for just that
attribute.
Returns false if the token is not a start tag.
=item * C<get_attrseq()>
For a start tag, this is an array reference with the sequence of the
attributes, if any.
Returns false if the token is not a start tag.
=item * C<return_text()>
This method has been heavily deprecated (for a couple of years) in favor of
C<as_is>. Programmers were getting confused over the difference between
C<is_text>, C<return_text>, and some parser methods such as
C<HTML::TokeParser::get_text> and friends.
Using this method still succeeds, but will now carp and B<will be removed>
in the next major release of this module.
=item * C<as_is()>
This is the exact text of whatever the token is representing.
=item * C<get_token0()>
For processing instructions, this will return the token found immediately after
the opening tag. Example: For <?php, "php" will be the start of the returned
string.
Note that process instruction handling appears to be incomplete in
C<HTML::TokeParser>.
Returns false if the token is not a process instruction.
=back
=head1 MUTATORS
The C<delete_attr()> and C<set_attr()> methods allow the programmer to rewrite
start tag attributes on the fly. It should be noted that bad HTML will be
"corrected" by this. Specifically, the new tag will have all attributes
lower-cased with the values properly quoted.
Self-closing tags (e.g. E<lt>hr /E<gt>) are also handled correctly. Some older
browsers require a space prior to the final slash in a self-closed tag. If
such a space is detected in the original HTML, it will be preserved.
Calling a mutator on an token type that does not support that property is a
no-op. For example:
if ($token->is_comment) {
$token->set_attr(foo => 'bar'); # does nothing
}
=over 4
=item * C<delete_attr($name)>
This method attempts to delete the attribute specified. It will silently fail
if called on anything other than a start tag. The argument is
case-insensitive, but must otherwise be an exact match of the attribute you are
attempting to delete. If the attribute is not found, the method will return
without changing the tag.
# <body bgcolor="#FFFFFF">
$token->delete_attr('bgcolor');
print $token->as_is;
# <body>
After this method is called, if successful, the C<as_is()>, C<get_attr()>
and C<get_attrseq()> methods will all return updated results.
=item * C<set_attr($name,$value)>
This method will set the value of an attribute. If the attribute is not found,
then C<get_attrseq()> will have the new attribute listed at the end.
# <p>
$token->set_attr(class => 'some_class');
print $token->as_is;
# <p class="some_class">
# <body bgcolor="#FFFFFF">
$token->set_attr('bgcolor','red');
print $token->as_is;
# <body bgcolor="red">
After this method is called, if successful, the C<as_is()>, C<get_attr()>
and C<get_attrseq()> methods will all return updated results.
=item * C<set_attr($hashref)>
Under the premise that C<set_> methods should accept what their corresponding
C<get_> methods emit, the following works:
$tag->set_attr($tag->get_attr);
Theoretically that's a no-op and for purposes of rendering HTML, it should be.
However, internally this calls C<$tag-E<gt>rewrite_tag>, so see that method to
understand how this may affect you.
Of course, this is useless if you want to actually change the attributes, so you
can do this:
my $attrs = {
class => 'headline',
valign => 'top'
};
$token->set_attr($attrs)
if $token->is_start_tag('td') && $token->get_attr('class') eq 'stories';
=item * C<rewrite_tag()>
This method rewrites the tag. The tag name and the name of all attributes will
be lower-cased. Values that are not quoted with double quotes will be. This
may be called on both start or end tags. Note that both C<set_attr()> and
C<delete_attr()> call this method prior to returning.
If called on a token that is not a tag, it simply returns. Regardless of how
it is called, it returns the token.
# <body alink=#0000ff BGCOLOR=#ffffff class='none'>
$token->rewrite_tag;
print $token->as_is;
# <body alink="#0000ff" bgcolor="#ffffff" class="none">
A quick cleanup of sloppy HTML is now the following:
my $parser = HTML::TokeParser::Simple->new( string => $ugly_html );
while (my $token = $parser->get_token) {
$token->rewrite_tag;
print $token->as_is;
}
=back
=head1 PARSER VERSUS TOKENS
The parser returns tokens that are blessed into appropriate classes. Some
people get confused and try to call parser methods on tokens and token methods
on the parser. To prevent this, C<HTML::TokeParser::Simple> versions 1.4 and
above now bless all tokens into appropriate token classes. Please keep this in
mind while using this module (and many thanks to PodMaster
L<http://www.perlmonks.org/index.pl?node_id=107642> for pointing out this issue
to me.)
=head1 EXAMPLES
=head2 Finding comments
For some strange reason, your Pointy-Haired Boss (PHB) is convinced that the
graphics department is making fun of him by embedding rude things about him in
HTML comments. You need to get all HTML comments from the HTML.
use strict;
use HTML::TokeParser::Simple;
my @html_docs = glob( "*.html" );
open PHB, "> phbreport.txt" or die "Cannot open phbreport for writing: $!";
foreach my $doc ( @html_docs ) {
print "Processing $doc\n";
my $p = HTML::TokeParser::Simple->new( file => $doc );
while ( my $token = $p->get_token ) {
next unless $token->is_comment;
print PHB $token->as_is, "\n";
}
}
close PHB;
=head2 Stripping Comments
Uh oh. Turns out that your PHB was right for a change. Many of the comments
in the HTML weren't very polite. Since your entire graphics department was
just fired, it falls on you need to strip those comments from the HTML.
use strict;
use HTML::TokeParser::Simple;
my $new_folder = 'no_comment/';
my @html_docs = glob( "*.html" );
foreach my $doc ( @html_docs ) {
print "Processing $doc\n";
my $new_file = "$new_folder$doc";
open PHB, "> $new_file" or die "Cannot open $new_file for writing: $!";
my $p = HTML::TokeParser::Simple->new( $file => doc );
while ( my $token = $p->get_token ) {
next if $token->is_comment;
print PHB $token->as_is;
}
close PHB;
}
=head2 Changing form tags
Your company was foo.com and now is bar.com. Unfortunately, whoever wrote your
HTML decided to hardcode "http://www.foo.com/" into the C<action> attribute of
the form tags. You need to change it to "http://www.bar.com/".
use strict;
use HTML::TokeParser::Simple;
my $new_folder = 'new_html/';
my @html_docs = glob( "*.html" );
foreach my $doc ( @html_docs ) {
print "Processing $doc\n";
my $new_file = "$new_folder$doc";
open FILE, "> $new_file" or die "Cannot open $new_file for writing: $!";
my $p = HTML::TokeParser::Simple->new( file => $doc );
while ( my $token = $p->get_token ) {
if ( $token->is_start_tag('form') ) {
my $action = $token->get_attr(action);
$action =~ s/www\.foo\.com/www.bar.com/;
$token->set_attr('action', $action);
}
print FILE $token->as_is;
}
close FILE;
}
=head1 CAVEATS
For compatibility reasons with C<HTML::TokeParser>, methods that return
references are violating encapsulation and altering the references directly
B<will> alter the state of the object. Subsequent calls to C<rewrite_tag()>
can thus have unexpected results. Do not alter these references directly
unless you are following behavior described in these docs. In the future,
certain methods such as C<get_attr>, C<get_attrseq> and others may return a
copy of the reference rather than the original reference. This behavior has
not yet been changed in order to maintain compatibility with previous versions
of this module. At the present time, your author is not aware of anyone taking
advantage of this "feature," but it's better to be safe than sorry.
Use of C<$HTML::Parser::VERSION> which is less than 3.25 may result in
incorrect behavior as older versions do not always handle XHTML correctly. It
is the programmer's responsibility to verify that the behavior of this code
matches the programmer's needs.
Note that C<HTML::Parser> processes text in 512 byte chunks. This sometimes
will cause strange behavior and cause text to be broken into more than one
token. You can suppress this behavior with the following command:
$p->unbroken_text( [$bool] );
See the C<HTML::Parser> documentation and
http://www.perlmonks.org/index.pl?node_id=230667 for more information.
=head1 BUGS
There are no known bugs, but that's no guarantee.
Address bug reports and comments to: E<lt>eop_divo_sitruc@yahoo.comE<gt>. When
sending bug reports, please provide the version of C<HTML::Parser>,
C<HTML::TokeParser>, C<HTML::TokeParser::Simple>, the version of Perl, and the
version of the operating system you are using.
Reverse the name to email the author.
=head1 SUBCLASSING
You may wish to change the behavior of this module. You probably do not want
to subclass C<HTML::TokeParser::Simple>. Instead, you'll want to subclass one
of the token classes. C<HTML::TokeParser::Simple::Token> is the base class for
all tokens. Global behavioral changes should go there. Otherwise, see the
appropriate token class for the behavior you wish to alter.
=head1 SEE ALSO
L<HTML::TokeParser::Simple::Token>
L<HTML::TokeParser::Simple::Token::Tag>
L<HTML::TokeParser::Simple::Token::Text>
L<HTML::TokeParser::Simple::Token::Comment>
L<HTML::TokeParser::Simple::Token::Declaration>
L<HTML::TokeParser::Simple::Token::ProcessInstruction>
=head1 COPYRIGHT
Copyright (c) 2004 by Curtis "Ovid" Poe. All rights reserved. This program is
free software; you may redistribute it and/or modify it under the same terms as
Perl itself
=head1 AUTHOR
Curtis "Ovid" Poe E<lt>eop_divo_sitruc@yahoo.comE<gt>
Reverse the name to email the author.
=cut
|