/[suikacvs]/markup/html/whatpm/Whatpm/ContentChecker.pm
Suika

Contents of /markup/html/whatpm/Whatpm/ContentChecker.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.92 - (hide annotations) (download)
Mon Sep 15 02:54:12 2008 UTC (16 years, 1 month ago) by wakaba
Branch: MAIN
Changes since 1.91: +18 -11 lines
++ whatpm/Whatpm/ChangeLog	15 Sep 2008 02:54:04 -0000
2008-09-15  Wakaba  <wakaba@suika.fam.cx>

	* ContentChecker.pm: Don't call |loda_ns_module|
	for null-namespace elements/attributes.

	* HTML.pm.src: Fact out $disallowed_control_chars
	as a hash.

1 wakaba 1.1 package Whatpm::ContentChecker;
2     use strict;
3 wakaba 1.92 our $VERSION=do{my @r=(q$Revision: 1.91 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r};
4 wakaba 1.1
5 wakaba 1.18 require Whatpm::URIChecker;
6    
7 wakaba 1.13 ## ISSUE: How XML and XML Namespaces conformance can (or cannot)
8     ## be applied to an in-memory representation (i.e. DOM)?
9    
10 wakaba 1.50 ## TODO: Conformance of an HTML document with non-html root element.
11    
12 wakaba 1.70 ## Stability
13 wakaba 1.67 sub FEATURE_STATUS_REC () { 0b1 } ## Interoperable standard
14     sub FEATURE_STATUS_CR () { 0b10 } ## Call for implementation
15     sub FEATURE_STATUS_LC () { 0b100 } ## Last call for comments
16     sub FEATURE_STATUS_WD () { 0b1000 } ## Working or editor's draft
17    
18 wakaba 1.70 ## Deprecated
19     sub FEATURE_DEPRECATED_SHOULD () { 0b100000 } ## SHOULD-level
20     sub FEATURE_DEPRECATED_INFO () { 0b1000000 } ## Does not affect conformance
21    
22     ## Conformance
23     sub FEATURE_ALLOWED () { 0b10000 }
24    
25 wakaba 1.42 my $HTML_NS = q<http://www.w3.org/1999/xhtml>;
26 wakaba 1.9 my $XML_NS = q<http://www.w3.org/XML/1998/namespace>;
27     my $XMLNS_NS = q<http://www.w3.org/2000/xmlns/>;
28    
29 wakaba 1.42 my $Namespace = {
30 wakaba 1.79 '' => {loaded => 1},
31 wakaba 1.43 q<http://www.w3.org/2005/Atom> => {module => 'Whatpm::ContentChecker::Atom'},
32 wakaba 1.72 q<http://purl.org/syndication/history/1.0>
33     => {module => 'Whatpm::ContentChecker::Atom'},
34     q<http://purl.org/syndication/threading/1.0>
35     => {module => 'Whatpm::ContentChecker::Atom'},
36 wakaba 1.42 $HTML_NS => {module => 'Whatpm::ContentChecker::HTML'},
37     $XML_NS => {loaded => 1},
38     $XMLNS_NS => {loaded => 1},
39 wakaba 1.73 q<http://www.w3.org/1999/02/22-rdf-syntax-ns#> => {loaded => 1},
40 wakaba 1.42 };
41    
42 wakaba 1.79 sub load_ns_module ($) {
43     my $nsuri = shift; # namespace URI or ''
44     unless ($Namespace->{$nsuri}->{loaded}) {
45     if ($Namespace->{$nsuri}->{module}) {
46     eval qq{ require $Namespace->{$nsuri}->{module} } or die $@;
47     } else {
48     $Namespace->{$nsuri}->{loaded} = 1;
49     }
50     }
51     } # load_ns_module
52    
53 wakaba 1.42 our $AttrChecker = {
54 wakaba 1.9 $XML_NS => {
55 wakaba 1.13 space => sub {
56     my ($self, $attr) = @_;
57     my $value = $attr->value;
58     if ($value eq 'default' or $value eq 'preserve') {
59     #
60     } else {
61     ## NOTE: An XML "error"
62 wakaba 1.83 $self->{onerror}->(node => $attr, level => $self->{level}->{xml_error},
63 wakaba 1.33 type => 'invalid attribute value');
64 wakaba 1.13 }
65     },
66     lang => sub {
67 wakaba 1.35 my ($self, $attr) = @_;
68 wakaba 1.47 my $value = $attr->value;
69     if ($value eq '') {
70     #
71     } else {
72     require Whatpm::LangTag;
73     Whatpm::LangTag->check_rfc3066_language_tag ($value, sub {
74 wakaba 1.83 $self->{onerror}->(@_, node => $attr);
75 wakaba 1.85 }, $self->{level});
76 wakaba 1.47 }
77    
78 wakaba 1.13 ## NOTE: "The values of the attribute are language identifiers
79     ## as defined by [IETF RFC 3066], Tags for the Identification
80     ## of Languages, or its successor; in addition, the empty string
81     ## may be specified." ("may" in lower case)
82 wakaba 1.47 ## NOTE: Is an RFC 3066-valid (but RFC 4647-invalid) language tag
83     ## allowed today?
84    
85     ## TODO: test data
86    
87 wakaba 1.89 my $nsuri = $attr->owner_element->namespace_uri;
88     if (defined $nsuri and $nsuri eq $HTML_NS) {
89     my $lang_attr = $attr->owner_element->get_attribute_node_ns
90     (undef, 'lang');
91     if ($lang_attr) {
92     my $lang_attr_value = $lang_attr->value;
93     $lang_attr_value =~ tr/A-Z/a-z/; ## ASCII case-insensitive
94     my $value = $value;
95     $value =~ tr/A-Z/a-z/; ## ASCII case-insensitive
96     if ($lang_attr_value ne $value) {
97     ## NOTE: HTML5 Section "The |lang| and |xml:lang| attributes"
98     $self->{onerror}->(node => $attr,
99     type => 'xml:lang ne lang',
100     level => $self->{level}->{must});
101     }
102     }
103     }
104    
105 wakaba 1.35 if ($attr->owner_document->manakai_is_html) { # MUST NOT
106 wakaba 1.83 $self->{onerror}->(node => $attr, type => 'in HTML:xml:lang',
107     level => $self->{level}->{must});
108 wakaba 1.35 ## TODO: Test data...
109     }
110 wakaba 1.13 },
111     base => sub {
112     my ($self, $attr) = @_;
113     my $value = $attr->value;
114     if ($value =~ /[^\x{0000}-\x{10FFFF}]/) { ## ISSUE: Should we disallow noncharacters?
115     $self->{onerror}->(node => $attr,
116 wakaba 1.83 type => 'invalid attribute value',
117     level => $self->{level}->{fact}, ## TODO: correct?
118     );
119 wakaba 1.13 }
120 wakaba 1.18 ## NOTE: Conformance to URI standard is not checked since there is
121     ## no author requirement on conformance in the XML Base specification.
122 wakaba 1.13 },
123     id => sub {
124     my ($self, $attr) = @_;
125     my $value = $attr->value;
126     $value =~ s/[\x09\x0A\x0D\x20]+/ /g;
127     $value =~ s/^\x20//;
128     $value =~ s/\x20$//;
129     ## TODO: NCName in XML 1.0 or 1.1
130     ## TODO: declared type is ID?
131 wakaba 1.83 if ($self->{id}->{$value}) {
132     $self->{onerror}->(node => $attr,
133     type => 'duplicate ID',
134     level => $self->{level}->{xml_id_error});
135 wakaba 1.37 push @{$self->{id}->{$value}}, $attr;
136 wakaba 1.13 } else {
137 wakaba 1.37 $self->{id}->{$value} = [$attr];
138 wakaba 1.13 }
139     },
140 wakaba 1.9 },
141     $XMLNS_NS => {
142 wakaba 1.13 '' => sub {
143     my ($self, $attr) = @_;
144     my $ln = $attr->manakai_local_name;
145     my $value = $attr->value;
146     if ($value eq $XML_NS and $ln ne 'xml') {
147     $self->{onerror}
148 wakaba 1.83 ->(node => $attr,
149     type => 'Reserved Prefixes and Namespace Names:Name',
150     text => $value,
151     level => $self->{level}->{nc});
152 wakaba 1.13 } elsif ($value eq $XMLNS_NS) {
153     $self->{onerror}
154 wakaba 1.83 ->(node => $attr,
155     type => 'Reserved Prefixes and Namespace Names:Name',
156     text => $value,
157     level => $self->{level}->{nc});
158 wakaba 1.13 }
159     if ($ln eq 'xml' and $value ne $XML_NS) {
160     $self->{onerror}
161 wakaba 1.83 ->(node => $attr,
162     type => 'Reserved Prefixes and Namespace Names:Prefix',
163     text => $ln,
164     level => $self->{level}->{nc});
165 wakaba 1.13 } elsif ($ln eq 'xmlns') {
166     $self->{onerror}
167 wakaba 1.83 ->(node => $attr,
168     type => 'Reserved Prefixes and Namespace Names:Prefix',
169     text => $ln,
170     level => $self->{level}->{nc});
171 wakaba 1.13 }
172     ## TODO: If XML 1.0 and empty
173     },
174     xmlns => sub {
175     my ($self, $attr) = @_;
176     ## TODO: In XML 1.0, URI reference [RFC 3986] or an empty string
177     ## TODO: In XML 1.1, IRI reference [RFC 3987] or an empty string
178 wakaba 1.18 ## TODO: relative references are deprecated
179 wakaba 1.13 my $value = $attr->value;
180     if ($value eq $XML_NS) {
181     $self->{onerror}
182 wakaba 1.83 ->(node => $attr,
183     type => 'Reserved Prefixes and Namespace Names:Name',
184     text => $value,
185     level => $self->{level}->{nc});
186 wakaba 1.13 } elsif ($value eq $XMLNS_NS) {
187     $self->{onerror}
188 wakaba 1.83 ->(node => $attr,
189     type => 'Reserved Prefixes and Namespace Names:Name',
190     text => $value,
191     level => $self->{level}->{nc});
192 wakaba 1.13 }
193     },
194 wakaba 1.9 },
195     };
196    
197 wakaba 1.14 ## ISSUE: Should we really allow these attributes?
198 wakaba 1.13 $AttrChecker->{''}->{'xml:space'} = $AttrChecker->{$XML_NS}->{space};
199     $AttrChecker->{''}->{'xml:lang'} = $AttrChecker->{$XML_NS}->{lang};
200 wakaba 1.89 ## NOTE: Checker for (null, "xml:lang") attribute is shadowed for
201     ## HTML elements in Whatpm::ContentChecker::HTML.
202 wakaba 1.13 $AttrChecker->{''}->{'xml:base'} = $AttrChecker->{$XML_NS}->{base};
203     $AttrChecker->{''}->{'xml:id'} = $AttrChecker->{$XML_NS}->{id};
204    
205 wakaba 1.79 our $AttrStatus;
206    
207     for (qw/space lang base id/) {
208     $AttrStatus->{$XML_NS}->{$_} = FEATURE_STATUS_REC | FEATURE_ALLOWED;
209     $AttrStatus->{''}->{"xml:$_"} = FEATURE_STATUS_REC | FEATURE_ALLOWED;
210     ## XML 1.0: FEATURE_STATUS_CR
211     ## XML 1.1: FEATURE_STATUS_REC
212     ## XML Namespaces 1.0: FEATURE_STATUS_CR
213     ## XML Namespaces 1.1: FEATURE_STATUS_REC
214     ## XML Base: FEATURE_STATUS_REC
215     ## xml:id: FEATURE_STATUS_REC
216     }
217    
218     $AttrStatus->{$XMLNS_NS}->{''} = FEATURE_STATUS_REC | FEATURE_ALLOWED;
219    
220     ## TODO: xsi:schemaLocation for XHTML2 support (very, very low priority)
221    
222 wakaba 1.60 our %AnyChecker = (
223     check_start => sub { },
224     check_attrs => sub {
225     my ($self, $item, $element_state) = @_;
226     for my $attr (@{$item->{node}->attributes}) {
227 wakaba 1.9 my $attr_ns = $attr->namespace_uri;
228 wakaba 1.92 if (defined $attr_ns) {
229     load_ns_module ($attr_ns);
230     } else {
231     $attr_ns = '';
232     }
233 wakaba 1.9 my $attr_ln = $attr->manakai_local_name;
234 wakaba 1.79
235 wakaba 1.9 my $checker = $AttrChecker->{$attr_ns}->{$attr_ln}
236 wakaba 1.60 || $AttrChecker->{$attr_ns}->{''};
237 wakaba 1.79 my $status = $AttrStatus->{$attr_ns}->{$attr_ln}
238     || $AttrStatus->{$attr_ns}->{''};
239     if (not defined $status) {
240     $status = FEATURE_ALLOWED;
241     ## NOTE: FEATURE_ALLOWED for all attributes, since the element
242     ## is not supported and therefore "attribute not defined" error
243     ## should not raised (too verbose) and global attributes should be
244     ## allowed anyway (if a global attribute has its specified creteria
245     ## for where it may be specified, then it should be checked in it's
246     ## checker function).
247     }
248 wakaba 1.9 if ($checker) {
249     $checker->($self, $attr);
250 wakaba 1.17 } else {
251 wakaba 1.83 $self->{onerror}->(node => $attr,
252     type => 'unknown attribute',
253     level => $self->{level}->{uncertain});
254 wakaba 1.9 }
255 wakaba 1.79 $self->_attr_status_info ($attr, $status);
256 wakaba 1.9 }
257     },
258 wakaba 1.60 check_child_element => sub {
259     my ($self, $item, $child_el, $child_nsuri, $child_ln,
260     $child_is_transparent, $element_state) = @_;
261     if ($self->{minus_elements}->{$child_nsuri}->{$child_ln}) {
262     $self->{onerror}->(node => $child_el,
263     type => 'element not allowed:minus',
264 wakaba 1.83 level => $self->{level}->{must});
265 wakaba 1.60 } elsif ($self->{plus_elements}->{$child_nsuri}->{$child_ln}) {
266     #
267     } else {
268     #
269     }
270     },
271     check_child_text => sub { },
272     check_end => sub {
273     my ($self, $item, $element_state) = @_;
274 wakaba 1.82 ## NOTE: There is a modified copy of the code below for |html:ruby|.
275 wakaba 1.60 if ($element_state->{has_significant}) {
276 wakaba 1.66 $item->{real_parent_state}->{has_significant} = 1;
277 wakaba 1.60 }
278     },
279     );
280    
281     our $ElementDefault = {
282     %AnyChecker,
283 wakaba 1.70 status => FEATURE_ALLOWED,
284     ## NOTE: No "element not defined" error - it is not supported anyway.
285 wakaba 1.60 check_start => sub {
286     my ($self, $item, $element_state) = @_;
287 wakaba 1.83 $self->{onerror}->(node => $item->{node},
288     type => 'unknown element',
289     level => $self->{level}->{uncertain});
290 wakaba 1.60 },
291 wakaba 1.1 };
292    
293 wakaba 1.60 our $HTMLEmbeddedContent = {
294     ## NOTE: All embedded content is also phrasing content.
295     $HTML_NS => {
296     img => 1, iframe => 1, embed => 1, object => 1, video => 1, audio => 1,
297     canvas => 1,
298     },
299     q<http://www.w3.org/1998/Math/MathML> => {math => 1},
300     q<http://www.w3.org/2000/svg> => {svg => 1},
301     ## NOTE: Foreign elements with content (but no metadata) are
302     ## embedded content.
303     };
304    
305 wakaba 1.7 my $HTMLTransparentElements = {
306 wakaba 1.90 $HTML_NS => {qw/ins 1 del 1 font 1 noscript 1 canvas 1 a 1/},
307 wakaba 1.29 ## NOTE: |html:noscript| is transparent if scripting is disabled
308     ## and not in |head|.
309 wakaba 1.7 };
310    
311 wakaba 1.61 my $HTMLSemiTransparentElements = {
312     $HTML_NS => {object => 1, video => 1, audio => 1},
313     };
314 wakaba 1.57
315 wakaba 1.42 our $Element = {};
316 wakaba 1.7
317 wakaba 1.73 $Element->{q<http://www.w3.org/1999/02/22-rdf-syntax-ns#>}->{RDF} = {
318     %AnyChecker,
319     status => FEATURE_STATUS_REC | FEATURE_ALLOWED,
320     is_root => 1, ## ISSUE: Not explicitly allowed for non application/rdf+xml
321     check_start => sub {
322     my ($self, $item, $element_state) = @_;
323     my $triple = [];
324     push @{$self->{return}->{rdf}}, [$item->{node}, $triple];
325     require Whatpm::RDFXML;
326     my $rdf = Whatpm::RDFXML->new;
327 wakaba 1.75 ## TODO: Should we make bnodeid unique in a document?
328 wakaba 1.73 $rdf->{onerror} = $self->{onerror};
329 wakaba 1.84 $rdf->{level} = $self->{level};
330 wakaba 1.73 $rdf->{ontriple} = sub {
331     my %opt = @_;
332     push @$triple,
333     [$opt{node}, $opt{subject}, $opt{predicate}, $opt{object}];
334 wakaba 1.74 if (defined $opt{id}) {
335     push @$triple,
336     [$opt{node},
337     $opt{id},
338     {uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#subject>},
339     $opt{subject}];
340     push @$triple,
341     [$opt{node},
342     $opt{id},
343     {uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate>},
344     $opt{predicate}];
345     push @$triple,
346     [$opt{node},
347     $opt{id},
348     {uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#object>},
349     $opt{object}];
350     push @$triple,
351     [$opt{node},
352     $opt{id},
353     {uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>},
354     {uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement>}];
355     }
356 wakaba 1.73 };
357     $rdf->convert_rdf_element ($item->{node});
358     },
359     };
360    
361 wakaba 1.83 my $default_error_level = {
362     must => 'm',
363     should => 's',
364     warn => 'w',
365     good => 'w',
366     info => 'i',
367 wakaba 1.85
368 wakaba 1.83 uncertain => 'u',
369    
370 wakaba 1.84 html4_fact => 'm',
371 wakaba 1.89 html5_no_may => 'm',
372    
373 wakaba 1.83 xml_error => 'm', ## TODO: correct?
374 wakaba 1.88 xml_id_error => 'm', ## TODO: ?
375 wakaba 1.83 nc => 'm', ## XML Namespace Constraints ## TODO: correct?
376 wakaba 1.84
377 wakaba 1.91 ## |Whatpm::URIChecker|
378 wakaba 1.85 uri_syntax => 'm',
379     uri_fact => 'm',
380     uri_lc_must => 'm',
381     uri_lc_should => 'w',
382    
383 wakaba 1.91 ## |Whatpm::IMTChecker|
384 wakaba 1.87 mime_must => 'm', # lowercase "must"
385     mime_fact => 'm',
386     mime_strongly_discouraged => 'w',
387     mime_discouraged => 'w',
388    
389 wakaba 1.91 ## |Whatpm::LangTag|
390 wakaba 1.85 langtag_fact => 'm',
391    
392 wakaba 1.91 ## |Whatpm::RDFXML|
393 wakaba 1.84 rdf_fact => 'm',
394     rdf_grammer => 'm',
395     rdf_lc_must => 'm',
396 wakaba 1.91
397     ## |Message::Charset::Info| and |Whatpm::Charset::DecodeHandle|
398     charset_variant => 'm',
399     ## An error caused by use of a variant charset that is not conforming
400     ## to the original charset (e.g. use of 0x80 in an ISO-8859-1 document
401     ## which is interpreted as a Windows-1252 document instead).
402     charset_fact => 'm',
403     iso_shall => 'm',
404 wakaba 1.83 };
405    
406 wakaba 1.56 sub check_document ($$$;$) {
407     my ($self, $doc, $onerror, $onsubdoc) = @_;
408 wakaba 1.42 $self = bless {}, $self unless ref $self;
409     $self->{onerror} = $onerror;
410 wakaba 1.56 $self->{onsubdoc} = $onsubdoc || sub {
411     warn "A subdocument is not conformance-checked";
412     };
413 wakaba 1.1
414 wakaba 1.83 $self->{level} ||= $default_error_level;
415 wakaba 1.48
416 wakaba 1.73 ## TODO: If application/rdf+xml, RDF/XML mode should be invoked.
417    
418 wakaba 1.42 my $docel = $doc->document_element;
419     unless (defined $docel) {
420     ## ISSUE: Should we check content of Document node?
421 wakaba 1.83 $onerror->(node => $doc, type => 'no document element',
422     level => $self->{level}->{must});
423 wakaba 1.42 ## ISSUE: Is this non-conforming (to what spec)? Or just a warning?
424     return {
425     class => {},
426     id => {}, table => [], term => {},
427     };
428 wakaba 1.1 }
429    
430 wakaba 1.42 ## ISSUE: Unexpanded entity references and HTML5 conformance
431 wakaba 1.1
432 wakaba 1.42 my $docel_nsuri = $docel->namespace_uri;
433 wakaba 1.92 if (defined $docel_nsuri) {
434     load_ns_module ($docel_nsuri);
435     } else {
436     $docel_nsuri = '';
437     }
438 wakaba 1.42 my $docel_def = $Element->{$docel_nsuri}->{$docel->manakai_local_name} ||
439     $Element->{$docel_nsuri}->{''} ||
440     $ElementDefault;
441     if ($docel_def->{is_root}) {
442     #
443 wakaba 1.50 } elsif ($docel_def->{is_xml_root}) {
444     unless ($doc->manakai_is_html) {
445     #
446     } else {
447 wakaba 1.83 $onerror->(node => $docel, type => 'element not allowed:root:xml',
448     level => $self->{level}->{must});
449 wakaba 1.50 }
450 wakaba 1.42 } else {
451 wakaba 1.83 $onerror->(node => $docel, type => 'element not allowed:root',
452     level => $self->{level}->{must});
453 wakaba 1.1 }
454    
455 wakaba 1.42 ## TODO: Check for other items other than document element
456     ## (second (errorous) element, text nodes, PI nodes, doctype nodes)
457 wakaba 1.2
458 wakaba 1.56 my $return = $self->check_element ($docel, $onerror, $onsubdoc);
459 wakaba 1.51
460 wakaba 1.52 ## TODO: Test for these checks are necessary.
461 wakaba 1.51 my $charset_name = $doc->input_encoding;
462     if (defined $charset_name) {
463     require Message::Charset::Info;
464     my $charset = $Message::Charset::Info::IANACharset->{$charset_name};
465    
466 wakaba 1.71 if ($doc->manakai_is_html) {
467     if (not $doc->manakai_has_bom and
468     not defined $doc->manakai_charset) {
469     unless ($charset->{is_html_ascii_superset}) {
470 wakaba 1.86 $onerror->(node => $doc,
471     level => $self->{level}->{must},
472 wakaba 1.83 type => 'non ascii superset',
473     text => $charset_name);
474 wakaba 1.71 }
475    
476     if (not $self->{has_charset} and ## TODO: This does not work now.
477     not $charset->{iana_names}->{'us-ascii'}) {
478 wakaba 1.86 $onerror->(node => $doc,
479     level => $self->{level}->{must},
480 wakaba 1.83 type => 'no character encoding declaration',
481     text => $charset_name);
482 wakaba 1.71 }
483 wakaba 1.51 }
484 wakaba 1.71
485     if ($charset->{iana_names}->{'utf-8'}) {
486     #
487     } elsif ($charset->{iana_names}->{'jis_x0212-1990'} or
488     $charset->{iana_names}->{'x-jis0208'} or
489     $charset->{iana_names}->{'utf-32'} or ## ISSUE: UTF-32BE? UTF-32LE?
490 wakaba 1.91 ($charset->{category} & Message::Charset::Info::CHARSET_CATEGORY_EBCDIC ())) {
491 wakaba 1.71 $onerror->(node => $doc,
492 wakaba 1.83 type => 'bad character encoding',
493     text => $charset_name,
494     level => $self->{level}->{should},
495     layer => 'encode');
496 wakaba 1.71 } elsif ($charset->{iana_names}->{'cesu-8'} or
497     $charset->{iana_names}->{'utf-8'} or ## ISSUE: UNICODE-1-1-UTF-7?
498     $charset->{iana_names}->{'bocu-1'} or
499     $charset->{iana_names}->{'scsu'}) {
500     $onerror->(node => $doc,
501 wakaba 1.83 type => 'disallowed character encoding',
502     text => $charset_name,
503     level => $self->{level}->{must},
504     layer => 'encode');
505 wakaba 1.71 } else {
506     $onerror->(node => $doc,
507 wakaba 1.83 type => 'non-utf-8 character encoding',
508     text => $charset_name,
509     level => $self->{level}->{good},
510     layer => 'encode');
511 wakaba 1.51 }
512     }
513 wakaba 1.52 } elsif ($doc->manakai_is_html) {
514     ## NOTE: MUST and SHOULD requirements above cannot be tested,
515     ## since the document has no input charset encoding information.
516     $onerror->(node => $doc,
517 wakaba 1.83 type => 'character encoding unchecked',
518     level => $self->{level}->{info},
519     layer => 'encode');
520 wakaba 1.51 }
521    
522     return $return;
523 wakaba 1.42 } # check_document
524 wakaba 1.1
525 wakaba 1.81 ## Check an element. The element is checked as if it is an orphan node (i.e.
526     ## an element without a parent node).
527 wakaba 1.56 sub check_element ($$$;$) {
528     my ($self, $el, $onerror, $onsubdoc) = @_;
529 wakaba 1.42 $self = bless {}, $self unless ref $self;
530     $self->{onerror} = $onerror;
531 wakaba 1.56 $self->{onsubdoc} = $onsubdoc || sub {
532     warn "A subdocument is not conformance-checked";
533     };
534 wakaba 1.2
535 wakaba 1.83 $self->{level} ||= $default_error_level;
536 wakaba 1.48
537 wakaba 1.61 $self->{plus_elements} = {};
538     $self->{minus_elements} = {};
539 wakaba 1.42 $self->{id} = {};
540     $self->{term} = {};
541     $self->{usemap} = [];
542 wakaba 1.78 $self->{ref} = []; # datetemplate data references
543     $self->{template} = []; # datatemplate template references
544 wakaba 1.42 $self->{contextmenu} = [];
545     $self->{map} = {};
546     $self->{menu} = {};
547     $self->{has_link_type} = {};
548 wakaba 1.60 $self->{flag} = {};
549 wakaba 1.46 #$self->{has_uri_attr};
550     #$self->{has_hyperlink_element};
551 wakaba 1.51 #$self->{has_charset};
552 wakaba 1.57 #$self->{has_base};
553 wakaba 1.42 $self->{return} = {
554     class => {},
555 wakaba 1.80 id => $self->{id},
556     table => [], # table objects returned by Whatpm::HTMLTable
557     term => $self->{term},
558 wakaba 1.76 uri => {}, # URIs other than those in RDF triples
559     ## TODO: xmlns="", SYSTEM "", atom:* src="", xml:base=""
560 wakaba 1.73 rdf => [],
561 wakaba 1.42 };
562 wakaba 1.4
563 wakaba 1.60 my @item = ({type => 'element', node => $el, parent_state => {}});
564 wakaba 1.66 $item[-1]->{real_parent_state} = $item[-1]->{parent_state};
565 wakaba 1.60 while (@item) {
566     my $item = shift @item;
567     if (ref $item eq 'ARRAY') {
568     my $code = shift @$item;
569     next unless $code;## TODO: temp.
570     $code->(@$item);
571     } elsif ($item->{type} eq 'element') {
572     my $el_nsuri = $item->{node}->namespace_uri;
573 wakaba 1.92 if (defined $el_nsuri) {
574     load_ns_module ($el_nsuri);
575     } else {
576     $el_nsuri = '';
577     }
578 wakaba 1.60 my $el_ln = $item->{node}->manakai_local_name;
579 wakaba 1.92
580 wakaba 1.63 my $element_state = {};
581 wakaba 1.60 my $eldef = $Element->{$el_nsuri}->{$el_ln} ||
582     $Element->{$el_nsuri}->{''} ||
583 wakaba 1.42 $ElementDefault;
584 wakaba 1.61 my $content_def = $item->{transparent}
585     ? $item->{parent_def} || $eldef : $eldef;
586 wakaba 1.63 my $content_state = $item->{transparent}
587 wakaba 1.65 ? $item->{parent_def}
588     ? $item->{parent_state} || $element_state : $element_state
589     : $element_state;
590 wakaba 1.60
591 wakaba 1.67 unless ($eldef->{status} & FEATURE_STATUS_REC) {
592     my $status = $eldef->{status} & FEATURE_STATUS_CR ? 'cr' :
593     $eldef->{status} & FEATURE_STATUS_LC ? 'lc' :
594     $eldef->{status} & FEATURE_STATUS_WD ? 'wd' : 'non-standard';
595     $self->{onerror}->(node => $item->{node},
596     type => 'status:'.$status.':element',
597 wakaba 1.83 level => $self->{level}->{info});
598 wakaba 1.67 }
599 wakaba 1.70 if (not ($eldef->{status} & FEATURE_ALLOWED)) {
600     $self->{onerror}->(node => $item->{node},
601     type => 'element not defined',
602 wakaba 1.83 level => $self->{level}->{must});
603 wakaba 1.70 } elsif ($eldef->{status} & FEATURE_DEPRECATED_SHOULD) {
604     $self->{onerror}->(node => $item->{node},
605     type => 'deprecated:element',
606 wakaba 1.83 level => $self->{level}->{should});
607 wakaba 1.70 } elsif ($eldef->{status} & FEATURE_DEPRECATED_INFO) {
608     $self->{onerror}->(node => $item->{node},
609     type => 'deprecated:element',
610 wakaba 1.83 level => $self->{level}->{info});
611 wakaba 1.70 }
612 wakaba 1.67
613 wakaba 1.60 my @new_item;
614     push @new_item, [$eldef->{check_start}, $self, $item, $element_state];
615     push @new_item, [$eldef->{check_attrs}, $self, $item, $element_state];
616 wakaba 1.61
617 wakaba 1.60 my @child = @{$item->{node}->child_nodes};
618     while (@child) {
619     my $child = shift @child;
620     my $child_nt = $child->node_type;
621     if ($child_nt == 1) { # ELEMENT_NODE
622     my $child_nsuri = $child->namespace_uri;
623     $child_nsuri = '' unless defined $child_nsuri;
624     my $child_ln = $child->manakai_local_name;
625     if ($HTMLTransparentElements->{$child_nsuri}->{$child_ln} and
626     not (($self->{flag}->{in_head} or
627 wakaba 1.61 ($el_nsuri eq $HTML_NS and $el_ln eq 'head')) and
628     $child_nsuri eq $HTML_NS and $child_ln eq 'noscript')) {
629 wakaba 1.60 push @new_item, [$content_def->{check_child_element},
630     $self, $item, $child,
631 wakaba 1.66 $child_nsuri, $child_ln, 1,
632     $content_state, $element_state];
633 wakaba 1.60 push @new_item, {type => 'element', node => $child,
634 wakaba 1.65 parent_state => $content_state,
635 wakaba 1.61 parent_def => $content_def,
636 wakaba 1.66 real_parent_state => $element_state,
637 wakaba 1.60 transparent => 1};
638     } else {
639 wakaba 1.65 if ($item->{parent_def} and # has parent
640     $el_nsuri eq $HTML_NS) { ## $HTMLSemiTransparentElements
641 wakaba 1.61 if ($el_ln eq 'object') {
642     if ($self->{plus_elements}->{$child_nsuri}->{$child_ln}) {
643     #
644     } elsif ($child_nsuri eq $HTML_NS and $child_ln eq 'param') {
645     #
646     } else {
647 wakaba 1.62 $content_def = $item->{parent_def} || $content_def;
648 wakaba 1.63 $content_state = $item->{parent_state} || $content_state;
649 wakaba 1.62 }
650     } elsif ($el_ln eq 'video' or $el_ln eq 'audio') {
651     if ($self->{plus_elements}->{$child_nsuri}->{$child_ln}) {
652     #
653     } elsif ($child_nsuri eq $HTML_NS and $child_ln eq 'source') {
654     $element_state->{has_source} = 1;
655     } else {
656     $content_def = $item->{parent_def} || $content_def;
657 wakaba 1.63 $content_state = $item->{parent_state} || $content_state;
658 wakaba 1.61 }
659     }
660     }
661    
662 wakaba 1.60 push @new_item, [$content_def->{check_child_element},
663     $self, $item, $child,
664 wakaba 1.64 $child_nsuri, $child_ln,
665     $HTMLSemiTransparentElements
666     ->{$child_nsuri}->{$child_ln},
667 wakaba 1.66 $content_state, $element_state];
668 wakaba 1.60 push @new_item, {type => 'element', node => $child,
669 wakaba 1.65 parent_def => $content_def,
670 wakaba 1.66 real_parent_state => $element_state,
671 wakaba 1.65 parent_state => $content_state};
672 wakaba 1.60 }
673    
674     if ($HTMLEmbeddedContent->{$child_nsuri}->{$child_ln}) {
675     $element_state->{has_significant} = 1;
676     }
677     } elsif ($child_nt == 3 or # TEXT_NODE
678     $child_nt == 4) { # CDATA_SECTION_NODE
679     my $has_significant = ($child->data =~ /[^\x09-\x0D\x20]/);
680     push @new_item, [$content_def->{check_child_text},
681     $self, $item, $child, $has_significant,
682 wakaba 1.66 $content_state, $element_state];
683     $element_state->{has_significant} ||= $has_significant;
684 wakaba 1.61 if ($has_significant and
685     $HTMLSemiTransparentElements->{$el_nsuri}->{$el_ln}) {
686     $content_def = $item->{parent_def} || $content_def;
687     }
688 wakaba 1.60 } elsif ($child_nt == 5) { # ENTITY_REFERENCE_NODE
689     push @child, @{$child->child_nodes};
690 wakaba 1.1 }
691 wakaba 1.60 ## TODO: PI_NODE
692     ## TODO: Unknown node type
693 wakaba 1.1 }
694 wakaba 1.60
695     push @new_item, [$eldef->{check_end}, $self, $item, $element_state];
696    
697     unshift @item, @new_item;
698 wakaba 1.30 } else {
699 wakaba 1.60 die "$0: Internal error: Unsupported checking action type |$item->{type}|";
700 wakaba 1.4 }
701 wakaba 1.1 }
702 wakaba 1.17
703 wakaba 1.78 for (@{$self->{template}}) {
704     ## TODO: If the document is an XML document, ...
705     ## NOTE: If the document is an HTML document:
706     ## ISSUE: We need to percent-decode?
707     F: {
708     if ($self->{id}->{$_->[0]}) {
709     my $el = $self->{id}->{$_->[0]}->[0]->owner_element;
710     if ($el->node_type == 1 and # ELEMENT_NODE
711     $el->manakai_local_name eq 'datatemplate') {
712     my $nsuri = $el->namespace_uri;
713     if (defined $nsuri and $nsuri eq $HTML_NS) {
714     if ($el eq $_->[1]->owner_element) {
715     $self->{onerror}->(node => $_->[1],
716     type => 'fragment points itself',
717 wakaba 1.83 level => $self->{level}->{must});
718 wakaba 1.78 }
719    
720     last F;
721     }
722     }
723     }
724     ## TODO: Should we raise a "fragment points nothing" error instead
725     ## if the fragment identifier identifies no element?
726    
727     $self->{onerror}->(node => $_->[1], type => 'template:not template',
728 wakaba 1.83 level => $self->{level}->{must});
729 wakaba 1.78 } # F
730     }
731    
732     for (@{$self->{ref}}) {
733     ## TOOD: If XML
734     ## NOTE: If it is an HTML document:
735     if ($_->[0] eq '') {
736     ## NOTE: It points the top of the document.
737     } elsif ($self->{id}->{$_->[0]}) {
738     if ($self->{id}->{$_->[0]}->[0]->owner_element
739     eq $_->[1]->owner_element) {
740     $self->{onerror}->(node => $_->[1], type => 'fragment points itself',
741 wakaba 1.83 level => $self->{level}->{must});
742 wakaba 1.78 }
743     } else {
744     $self->{onerror}->(node => $_->[1], type => 'fragment points nothing',
745 wakaba 1.83 level => $self->{level}->{must});
746 wakaba 1.78 }
747     }
748    
749     ## TODO: Maybe we should have $document->manakai_get_by_fragment or something
750    
751 wakaba 1.17 for (@{$self->{usemap}}) {
752     unless ($self->{map}->{$_->[0]}) {
753 wakaba 1.83 $self->{onerror}->(node => $_->[1], type => 'no referenced map',
754     level => $self->{level}->{must});
755 wakaba 1.17 }
756     }
757    
758 wakaba 1.32 for (@{$self->{contextmenu}}) {
759     unless ($self->{menu}->{$_->[0]}) {
760 wakaba 1.83 $self->{onerror}->(node => $_->[1], type => 'no referenced menu',
761     level => $self->{level}->{must});
762 wakaba 1.32 }
763     }
764    
765 wakaba 1.61 delete $self->{plus_elements};
766     delete $self->{minus_elements};
767 wakaba 1.17 delete $self->{onerror};
768     delete $self->{id};
769     delete $self->{usemap};
770 wakaba 1.78 delete $self->{ref};
771     delete $self->{template};
772 wakaba 1.17 delete $self->{map};
773 wakaba 1.33 return $self->{return};
774 wakaba 1.1 } # check_element
775    
776 wakaba 1.60 sub _add_minus_elements ($$@) {
777     my $self = shift;
778     my $element_state = shift;
779     for my $elements (@_) {
780     for my $nsuri (keys %$elements) {
781     for my $ln (keys %{$elements->{$nsuri}}) {
782     unless ($self->{minus_elements}->{$nsuri}->{$ln}) {
783     $element_state->{minus_elements_original}->{$nsuri}->{$ln} = 0;
784     $self->{minus_elements}->{$nsuri}->{$ln} = 1;
785     }
786     }
787     }
788     }
789     } # _add_minus_elements
790    
791     sub _remove_minus_elements ($$) {
792     my $self = shift;
793     my $element_state = shift;
794     for my $nsuri (keys %{$element_state->{minus_elements_original}}) {
795     for my $ln (keys %{$element_state->{minus_elements_original}->{$nsuri}}) {
796     delete $self->{minus_elements}->{$nsuri}->{$ln};
797     }
798     }
799     } # _remove_minus_elements
800    
801     sub _add_plus_elements ($$@) {
802     my $self = shift;
803     my $element_state = shift;
804     for my $elements (@_) {
805     for my $nsuri (keys %$elements) {
806     for my $ln (keys %{$elements->{$nsuri}}) {
807     unless ($self->{plus_elements}->{$nsuri}->{$ln}) {
808     $element_state->{plus_elements_original}->{$nsuri}->{$ln} = 0;
809     $self->{plus_elements}->{$nsuri}->{$ln} = 1;
810     }
811     }
812     }
813     }
814     } # _add_plus_elements
815    
816     sub _remove_plus_elements ($$) {
817     my $self = shift;
818     my $element_state = shift;
819     for my $nsuri (keys %{$element_state->{plus_elements_original}}) {
820     for my $ln (keys %{$element_state->{plus_elements_original}->{$nsuri}}) {
821     delete $self->{plus_elements}->{$nsuri}->{$ln};
822     }
823     }
824     } # _remove_plus_elements
825    
826 wakaba 1.68 sub _attr_status_info ($$$) {
827     my ($self, $attr, $status_code) = @_;
828 wakaba 1.70
829     if (not ($status_code & FEATURE_ALLOWED)) {
830     $self->{onerror}->(node => $attr,
831     type => 'attribute not defined',
832 wakaba 1.83 level => $self->{level}->{must});
833 wakaba 1.70 } elsif ($status_code & FEATURE_DEPRECATED_SHOULD) {
834     $self->{onerror}->(node => $attr,
835     type => 'deprecated:attr',
836 wakaba 1.83 level => $self->{level}->{should});
837 wakaba 1.70 } elsif ($status_code & FEATURE_DEPRECATED_INFO) {
838     $self->{onerror}->(node => $attr,
839     type => 'deprecated:attr',
840 wakaba 1.83 level => $self->{level}->{info});
841 wakaba 1.70 }
842    
843 wakaba 1.68 my $status;
844     if ($status_code & FEATURE_STATUS_REC) {
845     return;
846     } elsif ($status_code & FEATURE_STATUS_CR) {
847     $status = 'cr';
848     } elsif ($status_code & FEATURE_STATUS_LC) {
849     $status = 'lc';
850     } elsif ($status_code & FEATURE_STATUS_WD) {
851     $status = 'wd';
852     } else {
853     $status = 'non-standard';
854     }
855     $self->{onerror}->(node => $attr,
856     type => 'status:'.$status.':attr',
857 wakaba 1.83 level => $self->{level}->{info});
858 wakaba 1.68 } # _attr_status_info
859    
860 wakaba 1.2 sub _add_minuses ($@) {
861     my $self = shift;
862     my $r = {};
863     for my $list (@_) {
864     for my $ns (keys %$list) {
865     for my $ln (keys %{$list->{$ns}}) {
866     unless ($self->{minuses}->{$ns}->{$ln}) {
867     $self->{minuses}->{$ns}->{$ln} = 1;
868     $r->{$ns}->{$ln} = 1;
869     }
870     }
871     }
872     }
873 wakaba 1.4 return {type => 'plus', list => $r};
874 wakaba 1.2 } # _add_minuses
875    
876 wakaba 1.50 sub _add_pluses ($@) {
877     my $self = shift;
878     my $r = {};
879     for my $list (@_) {
880     for my $ns (keys %$list) {
881     for my $ln (keys %{$list->{$ns}}) {
882     unless ($self->{pluses}->{$ns}->{$ln}) {
883     $self->{pluses}->{$ns}->{$ln} = 1;
884     $r->{$ns}->{$ln} = 1;
885     }
886     }
887     }
888     }
889     return {type => 'minus', list => $r};
890     } # _add_pluses
891    
892 wakaba 1.2 sub _remove_minuses ($$) {
893 wakaba 1.4 my ($self, $todo) = @_;
894 wakaba 1.50 if ($todo->{type} eq 'minus') {
895     for my $ns (keys %{$todo->{list}}) {
896     for my $ln (keys %{$todo->{list}->{$ns}}) {
897     delete $self->{pluses}->{$ns}->{$ln} if $todo->{list}->{$ns}->{$ln};
898     }
899 wakaba 1.2 }
900 wakaba 1.50 } elsif ($todo->{type} eq 'plus') {
901     for my $ns (keys %{$todo->{list}}) {
902     for my $ln (keys %{$todo->{list}->{$ns}}) {
903     delete $self->{minuses}->{$ns}->{$ln} if $todo->{list}->{$ns}->{$ln};
904     }
905     }
906     } else {
907     die "$0: Unknown +- type: $todo->{type}";
908 wakaba 1.2 }
909     1;
910     } # _remove_minuses
911    
912 wakaba 1.50 ## NOTE: Priority for "minuses" and "pluses" are currently left
913     ## undefined and implemented inconsistently; it is not a problem for
914     ## now, since no element belongs to both lists.
915    
916 wakaba 1.30 sub _check_get_children ($$$) {
917     my ($self, $node, $parent_todo) = @_;
918 wakaba 1.4 my $new_todos = [];
919 wakaba 1.2 my $sib = [];
920     TP: {
921     my $node_ns = $node->namespace_uri;
922     $node_ns = '' unless defined $node_ns;
923     my $node_ln = $node->manakai_local_name;
924 wakaba 1.45 if ($HTMLTransparentElements->{$node_ns}->{$node_ln}) {
925     if ($node_ns eq $HTML_NS and $node_ln eq 'noscript') {
926     if ($parent_todo->{flag}->{in_head}) {
927     #
928     } else {
929     my $end = $self->_add_minuses ({$HTML_NS, {noscript => 1}});
930     push @$sib, $end;
931    
932     unshift @$sib, @{$node->child_nodes};
933     push @$new_todos, {type => 'element-attributes', node => $node};
934     last TP;
935     }
936 wakaba 1.58 } elsif ($node_ns eq $HTML_NS and $node_ln eq 'del') {
937     my $sig_flag = $parent_todo->{flag}->{has_descendant}->{significant};
938     unshift @$sib, @{$node->child_nodes};
939     push @$new_todos, {type => 'element-attributes', node => $node};
940     push @$new_todos,
941     {type => 'code',
942     code => sub {
943     $parent_todo->{flag}->{has_descendant}->{significant} = 0
944     if not $sig_flag;
945     }};
946     last TP;
947 wakaba 1.45 } else {
948     unshift @$sib, @{$node->child_nodes};
949     push @$new_todos, {type => 'element-attributes', node => $node};
950     last TP;
951 wakaba 1.2 }
952     }
953 wakaba 1.8 if ($node_ns eq $HTML_NS and ($node_ln eq 'video' or $node_ln eq 'audio')) {
954 wakaba 1.2 if ($node->has_attribute_ns (undef, 'src')) {
955     unshift @$sib, @{$node->child_nodes};
956 wakaba 1.9 push @$new_todos, {type => 'element-attributes', node => $node};
957 wakaba 1.2 last TP;
958     } else {
959     my @cn = @{$node->child_nodes};
960     CN: while (@cn) {
961     my $cn = shift @cn;
962     my $cnt = $cn->node_type;
963     if ($cnt == 1) {
964 wakaba 1.8 my $cn_nsuri = $cn->namespace_uri;
965     $cn_nsuri = '' unless defined $cn_nsuri;
966     if ($cn_nsuri eq $HTML_NS and $cn->manakai_local_name eq 'source') {
967 wakaba 1.2 #
968     } else {
969     last CN;
970     }
971     } elsif ($cnt == 3 or $cnt == 4) {
972     if ($cn->data =~ /[^\x09-\x0D\x20]/) {
973     last CN;
974     }
975     }
976     } # CN
977     unshift @$sib, @cn;
978     }
979 wakaba 1.57 } elsif ($node_ns eq $HTML_NS and $node_ln eq 'object') {
980     my @cn = @{$node->child_nodes};
981     CN: while (@cn) {
982     my $cn = shift @cn;
983     my $cnt = $cn->node_type;
984     if ($cnt == 1) {
985     my $cn_nsuri = $cn->namespace_uri;
986     $cn_nsuri = '' unless defined $cn_nsuri;
987     if ($cn_nsuri eq $HTML_NS and $cn->manakai_local_name eq 'param') {
988     #
989     } else {
990     last CN;
991     }
992     } elsif ($cnt == 3 or $cnt == 4) {
993     if ($cn->data =~ /[^\x09-\x0D\x20]/) {
994     last CN;
995     }
996     }
997     } # CN
998     unshift @$sib, @cn;
999 wakaba 1.2 }
1000 wakaba 1.4 push @$new_todos, {type => 'element', node => $node};
1001 wakaba 1.2 } # TP
1002 wakaba 1.30
1003     for my $new_todo (@$new_todos) {
1004     $new_todo->{flag} = {%{$parent_todo->{flag} or {}}};
1005     }
1006    
1007 wakaba 1.4 return ($sib, $new_todos);
1008 wakaba 1.2 } # _check_get_children
1009    
1010 wakaba 1.44 =head1 LICENSE
1011    
1012 wakaba 1.56 Copyright 2007-2008 Wakaba <w@suika.fam.cx>
1013 wakaba 1.44
1014     This library is free software; you can redistribute it
1015     and/or modify it under the same terms as Perl itself.
1016    
1017     =cut
1018    
1019 wakaba 1.1 1;
1020 wakaba 1.92 # $Date: 2008/09/10 10:27:07 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24