/[pub]/test/html-webhacc/cc.cgi
Suika

Diff of /test/html-webhacc/cc.cgi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by wakaba, Wed Jun 27 11:08:03 2007 UTC revision 1.4 by wakaba, Wed Jun 27 14:36:45 2007 UTC
# Line 5  use lib qw[/home/httpd/html/www/markup/h Line 5  use lib qw[/home/httpd/html/www/markup/h
5             /home/wakaba/work/manakai/lib             /home/wakaba/work/manakai/lib
6             /home/wakaba/public_html/-temp/wiki/lib];             /home/wakaba/public_html/-temp/wiki/lib];
7  use CGI::Carp qw[fatalsToBrowser];  use CGI::Carp qw[fatalsToBrowser];
8  use Time::HiRes qw/time/;  use Scalar::Util qw[refaddr];
9    
10  use SuikaWiki::Input::HTTP; ## TODO: Use some better CGI module  use SuikaWiki::Input::HTTP; ## TODO: Use some better CGI module
11    
12    sub htescape ($) {
13      my $s = $_[0];
14      $s =~ s/&/&/g;
15      $s =~ s/</&lt;/g;
16      $s =~ s/>/&gt;/g;
17      $s =~ s/"/&quot;/g;
18      $s =~ s!([\x00-\x09\x0B-\x1F\x7F-\x80])!sprintf '<var>U+%04X</var>', ord $1!ge;
19      return $s;
20    } # htescape
21    
22  my $http = SuikaWiki::Input::HTTP->new;  my $http = SuikaWiki::Input::HTTP->new;
23    
24  ## TODO: _charset_  ## TODO: _charset_
25    
26  my @mode = split m#/#, scalar $http->meta_variable ('PATH_INFO'), -1;    my $input_format = $http->parameter ('i') || 'text/html';
27  shift @mode if @mode and $mode[0] == '';    my $inner_html_element = $http->parameter ('e');
28  ## TODO: decode unreserved characters    my $input_uri = 'thismessage:/';
29    
30    my $s = $http->parameter ('s');    my $s = $http->parameter ('s');
31    if (length $s > 1000_000) {    if (length $s > 1000_000) {
32      print STDOUT "Status: 400 Document Too Long\nContent-Type: text/plain; charset=us-ascii\n\nToo long";      print STDOUT "Status: 400 Document Too Long\nContent-Type: text/plain; charset=us-ascii\n\nToo long";
33      exit;      exit;
34    }    }
35    my $char_length = length $s;  
36    my %time;    my @nav;
37    my $time1;    print STDOUT qq[Content-Type: text/html; charset=utf-8
38    my $time2;  
39    <!DOCTYPE html>
40    <html lang="en">
41    <head>
42    <title>Web Document Conformance Checker (BETA)</title>
43    <link rel="stylesheet" href="../cc-style.css" type="text/css">
44    </head>
45    <body>
46    <h1>Web Document Conformance Checker (<em>beta</em>)</h1>
47    
48    <div id="document-info" class="section">
49    <dl>
50    <dt>Document URI</dt>
51        <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input_uri]}">@{[htescape $input_uri]}</a>&gt;</code></dd>
52    <dt>Internet Media Type</dt>
53        <dd><code class="MIME" lang="en">@{[htescape $input_format]}</code></dd>
54    ]; # no </dl> yet
55      push @nav, ['#document-info' => 'Information'];
56    
57    require Message::DOM::DOMImplementation;    require Message::DOM::DOMImplementation;
58    my $dom = Message::DOM::DOMImplementation->____new;    my $dom = Message::DOM::DOMImplementation->____new;
 #  $| = 1;  
59    my $doc;    my $doc;
60    my $el;    my $el;
61    
62  if (@mode == 3 and $mode[0] eq 'html' and    if ($input_format eq 'text/html') {
63      ($mode[2] eq 'html' or $mode[2] eq 'test')) {      require Encode;
64    print STDOUT "Content-Type: text/plain; charset=utf-8\n\n";      require Whatpm::HTML;
65        
66    require Encode;      $s = Encode::decode ('utf-8', $s);
67    require Whatpm::HTML;  
68        print STDOUT qq[
69    $time1 = time;  <dt>Character Encoding</dt>
70    $s = Encode::decode ('utf-8', $s);      <dd>(none)</dd>
71    $time2 = time;  </dl>
72    $time{decode} = $time2 - $time1;  </div>
73      
74    <div id="source-string" class="section">
75    print STDOUT "#errors\n";  <h2>Document Source</h2>
76    ];
77        push @nav, ['#source-string' => 'Source'];
78        print_source_string (\$s);
79        print STDOUT qq[
80    </div>
81    
82    <div id="parse-errors" class="section">
83    <h2>Parse Errors</h2>
84    
85    <dl>
86    ];
87      push @nav, ['#parse-errors' => 'Parse Error'];
88    
89    my $onerror = sub {    my $onerror = sub {
90      my (%opt) = @_;      my (%opt) = @_;
91      print STDOUT "$opt{line},$opt{column},$opt{type}\n";      if ($opt{column} > 0) {
92          print STDOUT qq[<dt><a href="#line-$opt{line}">Line $opt{line}</a> column $opt{column}</dt>\n];
93        } else {
94          $opt{line}--;
95          print STDOUT qq[<dt><a href="#line-$opt{line}">Line $opt{line}</a></dt>\n];
96        }
97        print STDOUT qq[<dd>@{[htescape $opt{type}]}</dd>\n];
98    };    };
99    
100    $doc = $dom->create_document;    $doc = $dom->create_document;
101    $time1 = time;    if (defined $inner_html_element and length $inner_html_element) {
   if (length $mode[1]) {  
102      $el = $doc->create_element_ns      $el = $doc->create_element_ns
103          ('http://www.w3.org/1999/xhtml', [undef, $mode[1]]);          ('http://www.w3.org/1999/xhtml', [undef, $inner_html_element]);
104      Whatpm::HTML->set_inner_html ($el, $s, $onerror);      Whatpm::HTML->set_inner_html ($el, $s, $onerror);
105    } else {    } else {
106      Whatpm::HTML->parse_string ($s => $doc, $onerror);      Whatpm::HTML->parse_string ($s => $doc, $onerror);
107    }    }
   $time2 = time;  
   $time{parse} = $time2 - $time1;  
108    
109    print "#document\n";    print STDOUT qq[
110    </dl>
111    my $out;  </div>
112    if ($mode[2] eq 'html') {  ];
113      $time1 = time;    } elsif ($input_format eq 'application/xhtml+xml') {
114      $out = Whatpm::HTML->get_inner_html ($el || $doc);      require Message::DOM::XMLParserTemp;
115      $time2 = time;      require Encode;
116      $time{serialize_html} = $time2 - $time1;      
117    } else { # test      my $t = Encode::decode ('utf-8', $s);
118      $time1 = time;  
119      $out = test_serialize ($el || $doc);      print STDOUT qq[
120      $time2 = time;  <dt>Character Encoding</dt>
121      $time{serialize_test} = $time2 - $time1;      <dd>(none)</dd>
122    }  </dl>
123    print STDOUT Encode::encode ('utf-8', $$out);  </div>
124    print STDOUT "\n";  
125  } elsif (@mode == 3 and $mode[0] eq 'xhtml' and  <div id="source-string" class="section">
126           ($mode[2] eq 'html' or $mode[2] eq 'test')) {  <h2>Document Source</h2>
127    print STDOUT "Content-Type: text/plain; charset=utf-8\n\n";  ];
128        push @nav, ['#source-string' => 'Source'];
129    require Message::DOM::XMLParserTemp;      print_source_string (\$t);
130    print STDOUT "#errors\n";      print STDOUT qq[
131    </div>
132    
133    <div id="parse-errors" class="section">
134    <h2>Parse Errors</h2>
135    
136    <dl>
137    ];
138      push @nav, ['#parse-errors' => 'Parse Error'];
139    
140    my $onerror = sub {    my $onerror = sub {
141      my $err = shift;      my $err = shift;
142      print STDOUT $err->location->line_number, ",";      my $line = $err->location->line_number;
143      print STDOUT $err->location->column_number, ",";      print STDOUT qq[<dt><a href="#line-$line">Line $line</a> column ];
144      print STDOUT $err->text, "\n";      print STDOUT $err->location->column_number, "</dt><dd>";
145        print STDOUT htescape $err->text, "</dd>\n";
146      return 1;      return 1;
147    };    };
148    
149    open my $fh, '<', \$s;    open my $fh, '<', \$s;
   my $time1 = time;  
150    $doc = Message::DOM::XMLParserTemp->parse_byte_stream    $doc = Message::DOM::XMLParserTemp->parse_byte_stream
151        ($fh => $dom, $onerror, charset => 'utf-8');        ($fh => $dom, $onerror, charset => 'utf-8');
   my $time2 = time;  
   $time{parse_xml} = $time2 - $time1;  
152    
153    print "#document\n";      print STDOUT qq[
154    </dl>
155    </div>
156    ];
157      } else {
158        print STDOUT qq[
159    </dl>
160    </div>
161    
162    <div id="result-summary" class="section">
163    <p><em>Media type <code class="MIME" lang="en">@{[htescape $input_format]}</code> is not supported!</em></p>
164    </div>
165    ];
166        push @nav, ['#result-summary' => 'Result'];
167      }
168    
169    
170    my $out;    if (defined $doc or defined $el) {
171    if ($mode[2] eq 'html') {      print STDOUT qq[
172      ## TODO: Use XHTML serializer  <div id="document-tree" class="section">
173      #$out = Whatpm::HTML->get_inner_html ($doc);  <h2>Document Tree</h2>
174    } else { # test  ];
175      $time1 = time;      push @nav, ['#document-tree' => 'Tree'];
176      $out = test_serialize ($doc);  
177      $time2 = time;      print_document_tree ($el || $doc);
178      $time{serialize_test} = $time2 - $time1;  
179    }      print STDOUT qq[
180    print STDOUT Encode::encode ('utf-8', $$out);  </div>
181    print STDOUT "\n";  
182  } else {  <div id="document-errors" class="section">
183    print STDOUT "Status: 404 Not Found\nContent-Type: text/plain; charset=us-ascii\n\n404";  <h2>Document Errors</h2>
184    exit;  
185  }  <dl>
186    ];
187        push @nav, ['#document-errors' => 'Document Error'];
188    
   if ($http->parameter ('dom5')) {  
189      require Whatpm::ContentChecker;      require Whatpm::ContentChecker;
190      my $onerror = sub {      my $onerror = sub {
191        my %opt = @_;        my %opt = @_;
192        print STDOUT get_node_path ($opt{node}) . ';' . $opt{type} . "\n";        print STDOUT qq[<dt><a href="#node-@{[refaddr $opt{node}]}">],
193              htescape get_node_path ($opt{node}),
194              "</a></dt>\n<dd>", htescape $opt{type}, "</dd>\n";
195      };      };
196      print STDOUT "#domerrors\n";  
     $time1 = time;  
197      if ($el) {      if ($el) {
198        Whatpm::ContentChecker->check_element ($el, $onerror);        Whatpm::ContentChecker->check_element ($el, $onerror);
199      } else {      } else {
200        Whatpm::ContentChecker->check_document ($doc, $onerror);        Whatpm::ContentChecker->check_document ($doc, $onerror);
201      }      }
202      $time2 = time;  
203      $time{check} = $time2 - $time1;      print STDOUT qq[
204    </dl>
205    </div>
206    ];
207    }    }
208    
209    print STDOUT "#log\n";    ## TODO: Show result
210    for (qw/decode parse parse_xml serialize_html serialize_xml serialize_test  
211            check/) {    print STDOUT qq[
212      next unless defined $time{$_};  <ul class="navigation" id="nav-items">
213      print STDOUT {  ];
214        decode => 'bytes->chars',    for (@nav) {
215        parse => 'html5(chars)->dom5',      print STDOUT qq[<li><a href="$_->[0]">$_->[1]</a></li>];
       parse_xml => 'xml1(chars)->dom5',  
       serialize_html => 'dom5->html5(char)',  
       serialize_xml => 'dom5->xml1(char)',  
       serialize_test => 'dom5->test(char)',  
       check => 'dom5 check',  
     }->{$_};  
     print STDOUT "\t", $time{$_}, "s\n";  
     open my $file, '>>', ".manakai-$_.txt" or die ".manakai-$_.txt: $!";  
     print $file $char_length, "\t", $time{$_}, "\n";  
216    }    }
217      print STDOUT qq[
218    </ul>
219    </body>
220    </html>
221    ];
222    
223  exit;  exit;
224    
225  sub test_serialize ($) {  sub print_source_string ($) {
226      my $s = $_[0];
227      my $i = 1;
228      print STDOUT qq[<ol lang="">\n];
229      while ($$s =~ /\G([^\x0A]*?)\x0D?\x0A/gc) {
230        print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";
231        $i++;
232      }
233      if ($$s =~ /\G([^\x0A]+)/gc) {
234        print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";
235      }
236      print STDOUT "</ol>";
237    } # print_input_string
238    
239    sub print_document_tree ($) {
240    my $node = shift;    my $node = shift;
241    my $r = '';    my $r = '<ol class="xoxo">';
242    
243    my @node = map { [$_, ''] } @{$node->child_nodes};    my @node = ($node);
244    while (@node) {    while (@node) {
245      my $child = shift @node;      my $child = shift @node;
246      my $nt = $child->[0]->node_type;      unless (ref $child) {
247      if ($nt == $child->[0]->ELEMENT_NODE) {        $r .= $child;
248        $r .= '| ' . $child->[1] . '<' . $child->[0]->tag_name . ">\x0A"; ## ISSUE: case?        next;
249        }
250        for my $attr (sort {$a->[0] cmp $b->[0]} map { [$_->name, $_->value] }  
251                      @{$child->[0]->attributes}) {      my $node_id = 'node-'.refaddr $child;
252          $r .= '| ' . $child->[1] . '  ' . $attr->[0] . '="'; ## ISSUE: case?      my $nt = $child->node_type;
253          $r .= $attr->[1] . '"' . "\x0A";      if ($nt == $child->ELEMENT_NODE) {
254          my $child_nsuri = $child->namespace_uri;
255          $r .= qq[<li id="$node_id" class="tree-element"><code title="@{[defined $child_nsuri ? $child_nsuri : '']}">] . htescape ($child->tag_name) .
256              '</code>'; ## ISSUE: case
257    
258          if ($child->has_attributes) {
259            $r .= '<ul class="attributes">';
260            for my $attr (sort {$a->[0] cmp $b->[0]} map { [$_->name, $_->value, $_->namespace_uri, 'node-'.refaddr $_] }
261                          @{$child->attributes}) {
262              $r .= qq[<li id="$attr->[3]" class="tree-attribute"><code title="@{[defined $_->[2] ? $_->[2] : '']}">] . htescape ($attr->[0]) . '</code> = '; ## ISSUE: case?
263              $r .= '<q>' . htescape ($attr->[1]) . '</q></li>'; ## TODO: children
264            }
265            $r .= '</ul>';
266          }
267    
268          if ($node->has_child_nodes) {
269            $r .= '<ol class="children">';
270            unshift @node, @{$child->child_nodes}, '</ol>';
271        }        }
272              } elsif ($nt == $child->TEXT_NODE) {
273        unshift @node,        $r .= qq'<li id="$node_id" class="tree-text"><q lang="">' . htescape ($child->data) . '</q></li>';
274          map { [$_, $child->[1] . '  '] } @{$child->[0]->child_nodes};      } elsif ($nt == $child->CDATA_SECTION_NODE) {
275      } elsif ($nt == $child->[0]->TEXT_NODE) {        $r .= qq'<li id="$node_id" class="tree-cdata"><code>&lt;[CDATA[</code><q lang="">' . htescape ($child->data) . '</q><code>]]&gt;</code></li>';
276        $r .= '| ' . $child->[1] . '"' . $child->[0]->data . '"' . "\x0A";      } elsif ($nt == $child->COMMENT_NODE) {
277      } elsif ($nt == $child->[0]->CDATA_SECTION_NODE) {        $r .= qq'<li id="$node_id" class="tree-comment"><code>&lt;!--</code><q lang="">' . htescape ($child->data) . '</q><code>--&gt;</code></li>';
278        $r .= '| ' . $child->[1] . '<![CDATA[' . $child->[0]->data . "]]>\x0A";      } elsif ($nt == $child->DOCUMENT_NODE) {
279      } elsif ($nt == $child->[0]->COMMENT_NODE) {        $r .= qq'<li id="$node_id" class="tree-document">Document</li>';
280        $r .= '| ' . $child->[1] . '<!-- ' . $child->[0]->data . " -->\x0A";        if ($child->has_child_nodes) {
281      } elsif ($nt == $child->[0]->DOCUMENT_TYPE_NODE) {          $r .= '<ol>';
282        $r .= '| ' . $child->[1] . '<!DOCTYPE ' . $child->[0]->name . ">\x0A";          unshift @node, @{$child->child_nodes}, '</ol>';
283      } elsif ($nt == $child->[0]->PROCESSING_INSTRUCTION_NODE) {        }
284        $r .= '| ' . $child->[1] . '<?' . $child->[0]->target . ' ' .      } elsif ($nt == $child->DOCUMENT_TYPE_NODE) {
285            $child->[0]->data . "?>\x0A";        $r .= qq'<li id="$node_id" class="tree-doctype"><code>&lt;!DOCTYPE&gt;</code><ul>';
286          $r .= '<li class="tree-doctype-name">Name = <q>@{[htescape ($child->name)]}</q></li>';
287          $r .= '<li class="tree-doctype-publicid">Public identifier = <q>@{[htescape ($child->public_id)]}</q></li>';
288          $r .= '<li class="tree-doctype-systemid">System identifier = <q>@{[htescape ($child->system_id)]}</q></li>';
289          $r .= '</ul></li>';
290        } elsif ($nt == $child->PROCESSING_INSTRUCTION_NODE) {
291          $r .= qq'<li id="$node_id" class="tree-id"><code>&lt;?@{[htescape ($child->target)]}</code> <q>@{[htescape ($child->data)]}</q><code>?&gt;</code></li>';
292      } else {      } else {
293        $r .= '| ' . $child->[1] . $child->[0]->node_type . "\x0A"; # error        $r .= qq'<li id="$node_id" class="tree-unknown">@{[$child->node_type]} @{[htescape ($child->node_name)]}</li>'; # error
294      }      }
295    }    }
296      
297    return \$r;    $r .= '</ol>';
298  } # test_serialize    print STDOUT $r;
299    } # print_document_tree
300    
301  sub get_node_path ($) {  sub get_node_path ($) {
302    my $node = shift;    my $node = shift;

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.4

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24