home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _7005de16aa3cb2e5445e44d4580ec072 < prev    next >
Text File  |  2000-03-15  |  12KB  |  442 lines

  1. package HTML::Parser;
  2.  
  3. # Author address: <gisle@aas.no>
  4.  
  5. use strict;
  6. use HTML::Entities ();
  7.  
  8. use vars qw($VERSION);
  9. $VERSION = "2.23";  # $Date: 1999/06/09 10:27:16 $
  10.  
  11.  
  12. sub new
  13. {
  14.     my $class = shift;
  15.     my $self = bless { '_buf'            => '',
  16.                '_strict_comment' => 0,
  17.              }, $class;
  18.     $self;
  19. }
  20.  
  21.  
  22. # A little note about the observed Netscape behaviour:
  23. #
  24. # It parse <xmp> in the depreceated 'literal' mode, i.e. no tags are
  25. # recognized until a </xmp> is found.
  26. # <listing> is parsed like <pre>, i.e. tags are recognized.  <listing>
  27. # are presentend in smaller font than <pre>
  28. #
  29. # Netscape does not parse this comment correctly (it terminates the comment
  30. # too early):
  31. #
  32. #    <! -- comment -- --> more comment -->
  33. #
  34. # Netscape ignores '<!--' and '-->' within the <SCRIPT> and <STYLE> tag.
  35. # This is used as a trick to make non-script-aware browsers ignore
  36. # the scripts.
  37.  
  38.  
  39. sub parse
  40. {
  41.     my $self = shift;
  42.     my $buf = \ $self->{'_buf'};
  43.     unless (defined $_[0]) {
  44.     # signals EOF (assume rest is plain text)
  45.     $self->text($$buf) if length $$buf;
  46.     $$buf = '';
  47.     return $self;
  48.     }
  49.     $$buf .= $_[0];
  50.     my $netscape_comment = !$self->{'_strict_comment'};
  51.  
  52.     # Parse html text in $$buf.  The strategy is to remove complete
  53.     # tokens from the beginning of $$buf until we can't deside whether
  54.     # it is a token or not, or the $$buf is empty.
  55.  
  56.   TOKEN:
  57.     while (1) {
  58.  
  59.     # First we try to pull off any plain text (anything before a "<" char)
  60.     if ($$buf =~ s|^([^<]+)||) {
  61.         if (length $$buf) {
  62.         $self->text($1);
  63.         } else {
  64.         my $text = $1;
  65.         # At the end of the buffer, we should not parse white space
  66.         # but leave it for parsing on the next round.
  67.         if ($text =~ s|(\s+)$||) {
  68.             $$buf = $1;
  69.                 # Same treatment for chopped up entites and words.
  70.         # We must wait until we have it all.
  71.         } elsif ($text =~ s|(\s*\S+)$||) {
  72.             $$buf = $1;
  73.         };
  74.         $self->text($text) if length $text;
  75.         last TOKEN;
  76.         }
  77.  
  78.     # Netscapes buggy comments are easy to handle
  79.     } elsif ($netscape_comment && $$buf =~ m|^<!\s*--|) {
  80.         if ($$buf =~ s|^<!\s*--(.*?)--\s*>||s) {
  81.         $self->comment($1);
  82.         } else {
  83.         last TOKEN;  # must wait until we see the end of it
  84.         }
  85.  
  86.     # Then, markup declarations (usually either <!DOCTYPE...> or a comment)
  87.     } elsif ($$buf =~ s|^(<!)||) {
  88.         my $eaten = $1;
  89.         my $text = '';
  90.         my @com = ();  # keeps comments until we have seen the end
  91.         # Eat text and beginning of comment
  92.         while ($$buf =~ s|^(([^>]*?)--)||) {
  93.         $eaten .= $1;
  94.         $text .= $2;
  95.         # Look for end of comment
  96.         if ($$buf =~ s|^((.*?)--)||s) {
  97.             $eaten .= $1;
  98.             push(@com, $2);
  99.         } else {
  100.             # Need more data to get all comment text.
  101.             $$buf = $eaten . $$buf;
  102.             last TOKEN;
  103.         }
  104.         }
  105.         # Can we finish the tag
  106.         if ($$buf =~ s|^([^>]*)>||) {
  107.         $text .= $1;
  108.         $self->declaration($text) if $text =~ /\S/;
  109.         # then tell about all the comments we found
  110.         for (@com) { $self->comment($_); }
  111.         } else {
  112.         $$buf = $eaten . $$buf;  # must start with it all next time
  113.         last TOKEN;
  114.         }
  115.  
  116.         # Should we look for 'processing instructions' <? ...> ??
  117.     #} elsif ($$buf =~ s|<\?||) {
  118.         # ...
  119.  
  120.     # Then, look for a end tag
  121.     } elsif ($$buf =~ s|^</||) {
  122.         # end tag
  123.         if ($$buf =~ s|^([a-zA-Z][a-zA-Z0-9\.\-]*)(\s*>)||) {
  124.         $self->end(lc($1), "</$1$2");
  125.         } elsif ($$buf =~ m|^[a-zA-Z]*[a-zA-Z0-9\.\-]*\s*$|) {
  126.         $$buf = "</" . $$buf;  # need more data to be sure
  127.         last TOKEN;
  128.         } else {
  129.         # it is plain text after all
  130.         $self->text("</");
  131.         }
  132.  
  133.     # Then, finally we look for a start tag
  134.     } elsif ($$buf =~ s|^(<([a-zA-Z]+)>)||) {
  135.         # special case plain start tags for slight speed-up (2.5%)
  136.         $self->start(lc($2), {}, [], $1);
  137.  
  138.     } elsif ($$buf =~ s|^<||) {
  139.         # start tag
  140.         my $eaten = '<';
  141.  
  142.         # This first thing we must find is a tag name.  RFC1866 says:
  143.         #   A name consists of a letter followed by letters,
  144.         #   digits, periods, or hyphens. The length of a name is
  145.         #   limited to 72 characters by the `NAMELEN' parameter in
  146.         #   the SGML declaration for HTML, 9.5, "SGML Declaration
  147.         #   for HTML".  In a start-tag, the element name must
  148.         #   immediately follow the tag open delimiter `<'.
  149.         if ($$buf =~ s|^(([a-zA-Z][a-zA-Z0-9\.\-]*)\s*)||) {
  150.         $eaten .= $1;
  151.         my $tag = lc $2;
  152.         my %attr;
  153.         my @attrseq;
  154.  
  155.         # Then we would like to find some attributes
  156.                 #
  157.                 # Arrgh!! Since stupid Netscape violates RCF1866 by
  158.                 # using "_" in attribute names (like "ADD_DATE") of
  159.                 # their bookmarks.html, we allow this too.
  160.         while ($$buf =~ s|^(([a-zA-Z][a-zA-Z0-9\.\-_]*)\s*)||) {
  161.             $eaten .= $1;
  162.             my $attr = lc $2;
  163.             my $val;
  164.             # The attribute might take an optional value (first we
  165.             # check for an unquoted value)
  166.             if ($$buf =~ s|(^=\s*([^\"\'>\s][^>\s]*)\s*)||) {
  167.             $eaten .= $1;
  168.             $val = $2;
  169.             HTML::Entities::decode($val);
  170.             # or quoted by " or '
  171.             } elsif ($$buf =~ s|(^=\s*([\"\'])(.*?)\2\s*)||s) {
  172.             $eaten .= $1;
  173.             $val = $3;
  174.             HTML::Entities::decode($val);
  175.                     # truncated just after the '=' or inside the attribute
  176.             } elsif ($$buf =~ m|^(=\s*)$| or
  177.                  $$buf =~ m|^(=\s*[\"\'].*)|s) {
  178.             $$buf = "$eaten$1";
  179.             last TOKEN;
  180.             } else {
  181.             # assume attribute with implicit value
  182.             $val = $attr;
  183.             }
  184.             $attr{$attr} = $val;
  185.             push(@attrseq, $attr);
  186.         }
  187.  
  188.         # At the end there should be a closing ">"
  189.         if ($$buf =~ s|^>||) {
  190.             $self->start($tag, \%attr, \@attrseq, "$eaten>");
  191.         } elsif (length $$buf) {
  192.             # Not a conforming start tag, regard it as normal text
  193.             $self->text($eaten);
  194.         } else {
  195.             $$buf = $eaten;  # need more data to know
  196.             last TOKEN;
  197.         }
  198.  
  199.         } elsif (length $$buf) {
  200.         $self->text($eaten);
  201.         } else {
  202.         $$buf = $eaten . $$buf;  # need more data to parse
  203.         last TOKEN;
  204.         }
  205.  
  206.     } else {
  207.         #die if length($$buf);  # This should never happen
  208.         last TOKEN;         # The buffer should be empty now
  209.     }
  210.     }
  211.  
  212.     $self;
  213. }
  214.  
  215.  
  216. sub eof
  217. {
  218.     shift->parse(undef);
  219. }
  220.  
  221.  
  222. sub parse_file
  223. {
  224.     my($self, $file) = @_;
  225.     no strict 'refs';  # so that a symbol ref as $file works
  226.     local(*F);
  227.     unless (ref($file) || $file =~ /^\*[\w:]+$/) {
  228.     # Assume $file is a filename
  229.     open(F, $file) || die "Can't open $file: $!";
  230.     $file = \*F;
  231.     }
  232.     my $chunk = '';
  233.     while(read($file, $chunk, 512)) {
  234.     $self->parse($chunk);
  235.     }
  236.     close($file);
  237.     $self->eof;
  238. }
  239.  
  240.  
  241. sub strict_comment
  242. {
  243.     my $self = shift;
  244.     my $old = $self->{'_strict_comment'};
  245.     $self->{'_strict_comment'} = shift if @_;
  246.     return $old;
  247. }
  248.  
  249.  
  250. sub netscape_buggy_comment  # legacy
  251. {
  252.     my $self = shift;
  253.     my $old = !$self->strict_comment;
  254.     $self->strict_comment(!shift) if @_;
  255.     return $old;
  256. }
  257.  
  258.  
  259. sub text
  260. {
  261.     # my($self, $text) = @_;
  262. }
  263.  
  264. sub declaration
  265. {
  266.     # my($self, $decl) = @_;
  267. }
  268.  
  269. sub comment
  270. {
  271.     # my($self, $comment) = @_;
  272. }
  273.  
  274. sub start
  275. {
  276.     # my($self, $tag, $attr, $attrseq, $origtext) = @_;
  277.     # $attr is reference to a HASH, $attrseq is reference to an ARRAY
  278. }
  279.  
  280. sub end
  281. {
  282.     # my($self, $tag, $origtext) = @_;
  283. }
  284.  
  285. 1;
  286.  
  287.  
  288. __END__
  289.  
  290.  
  291. =head1 NAME
  292.  
  293. HTML::Parser - SGML parser class
  294.  
  295. =head1 SYNOPSIS
  296.  
  297.  require HTML::Parser;
  298.  $p = HTML::Parser->new;  # should really a be subclass
  299.  $p->parse($chunk1);
  300.  $p->parse($chunk2);
  301.  #...
  302.  $p->eof;                 # signal end of document
  303.  
  304.  # Parse directly from file
  305.  $p->parse_file("foo.html");
  306.  # or
  307.  open(F, "foo.html") || die;
  308.  $p->parse_file(\*F);
  309.  
  310. =head1 DESCRIPTION
  311.  
  312. The C<HTML::Parser> will tokenize an HTML document when the parse()
  313. method is called by invoking various callback methods.  The document to
  314. be parsed can be supplied in arbitrary chunks.
  315.  
  316. The external interface the an I<HTML::Parser> is:
  317.  
  318. =over 4
  319.  
  320. =item $p = HTML::Parser->new
  321.  
  322. The object constructor takes no arguments.
  323.  
  324. =item $p->parse( $string );
  325.  
  326. Parse the $string as an HTML document.  Can be called multiple times.
  327. The return value is a reference to the parser object.
  328.  
  329. =item $p->eof
  330.  
  331. Signals end of document.  Call eof() to flush any remaining buffered
  332. text.  The return value is a reference to the parser object.
  333.  
  334. =item $p->parse_file( $file );
  335.  
  336. This method can be called to parse text from a file.  The argument can
  337. be a filename or an already opened file handle. The return value from
  338. parse_file() is a reference to the parser object.
  339.  
  340. =item $p->strict_comment( [$bool] )
  341.  
  342. By default we parse comments similar to how the popular browsers (like
  343. Netscape and MSIE) do it.  This means that comments will always be
  344. terminated by the first occurrence of "-->".  This is not correct
  345. according to the "official" HTML standards.  The official behaviour
  346. can be enabled by calling the strict_comment() method with a TRUE
  347. argument.
  348.  
  349. The return value from strict_comment() is the old attribute value.
  350.  
  351. =back
  352.  
  353.  
  354.  
  355. In order to make the parser do anything interesting, you must make a
  356. subclass where you override one or more of the following methods as
  357. appropriate:
  358.  
  359. =over 4
  360.  
  361. =item $self->declaration($decl)
  362.  
  363. This method is called when a I<markup declaration> has been
  364. recognized.  For typical HTML documents, the only declaration you are
  365. likely to find is <!DOCTYPE ...>.  The initial "<!" and ending ">" is
  366. not part of the string passed as argument.  Comments are removed and
  367. entities will B<not> be expanded.
  368.  
  369. =item $self->start($tag, $attr, $attrseq, $origtext)
  370.  
  371. This method is called when a complete start tag has been recognized.
  372. The first argument is the tag name (in lower case) and the second
  373. argument is a reference to a hash that contain all attributes found
  374. within the start tag.  The attribute keys are converted to lower case.
  375. Entities found in the attribute values are already expanded.  The
  376. third argument is a reference to an array with the lower case
  377. attribute keys in the original order.  The fourth argument is the
  378. original HTML text.
  379.  
  380.  
  381. =item $self->end($tag, $origtext)
  382.  
  383. This method is called when an end tag has been recognized.  The
  384. first argument is the lower case tag name, the second the original
  385. HTML text of the tag.
  386.  
  387. =item $self->text($text)
  388.  
  389. This method is called when plain text in the document is recognized.
  390. The text is passed on unmodified and might contain multiple lines.
  391. Note that for efficiency reasons entities in the text are B<not>
  392. expanded.  You should call HTML::Entities::decode($text) before you
  393. process the text any further.
  394.  
  395. A sequence of text in the HTML document can be broken between several
  396. invocations of $self->text.  The parser will make sure that it does
  397. not break a word or a sequence of spaces between two invocations of
  398. $self->text().
  399.  
  400. =item $self->comment($comment)
  401.  
  402. This method is called as comments are recognized.  The leading and
  403. trailing "--" sequences have been stripped off the comment text.
  404.  
  405. =back
  406.  
  407. The default implementation of these methods do nothing, i.e., the
  408. tokens are just ignored.
  409.  
  410. There is really nothing in the basic parser that is HTML specific, so
  411. it is likely that the parser can parse other kinds of SGML documents.
  412. SGML has many obscure features (not implemented by this module) that
  413. prevent us from renaming this module as C<SGML::Parser>.
  414.  
  415. =head1 EFFICIENCY
  416.  
  417. The parser is fairly inefficient if the chunks passed to $p->parse()
  418. are too big.  The reason is probably that perl ends up with a lot of
  419. character copying when tokens are removed from the beginning of the
  420. strings.  A chunk size of about 256-512 bytes was optimal in a test I
  421. made with some real world HTML documents.  (The parser was about 3
  422. times slower with a chunk size of 20K).
  423.  
  424. =head1 SEE ALSO
  425.  
  426. L<HTML::Entities>, L<HTML::TokeParser>, L<HTML::Filter>,
  427. L<HTML::HeadParser>, L<HTML::LinkExtor>
  428.  
  429. L<HTML::TreeBuilder> (part of the I<HTML-Tree> distribution)
  430.  
  431. =head1 COPYRIGHT
  432.  
  433. Copyright 1996-1999 Gisle Aas. All rights reserved.
  434.  
  435. This library is free software; you can redistribute it and/or
  436. modify it under the same terms as Perl itself.
  437.  
  438. =cut
  439.  
  440.  
  441.