package WebHACC::Result;
use strict;
sub new ($) {
return bless {}, shift;
} # new
sub output ($;$) {
if (@_ > 1) {
if (defined $_[1]) {
$_[0]->{output} = $_[1];
} else {
delete $_[0]->{output};
}
}
return $_[0]->{output};
} # output
sub add_error ($%) {
my ($self, %opt) = @_;
my $out = $self->output;
my $error_level = $opt{level};
if (not defined $error_level) {
$error_level = 'm'; ## NOTE: Unknown - an error of the implementation
} elsif ({
m => 1, s => 1, w => 1, i => 1, u => 1,
}->{$error_level}) {
#
} else {
$error_level = 'm'; ## NOTE: Unknown - an error of the implementation
}
my $error_layer = $opt{layer};
if (not defined $error_layer) {
$error_layer = 'syntax'; ## NOTE: Unknown - an error of the implementation
} elsif ({
transfer => 1,
encode => 1,
charset => 1,
syntax => 1,
structure => 1,
semantics => 1,
}->{$error_layer}) {
#
} else {
$error_layer = 'syntax'; ## NOTE: Unknown - an error of the implementation
}
my $error_type_text = $opt{type};
my $class = qq[level-$error_level layer-$error_layer];
$out->start_tag ('dt', class => $class);
my $has_location;
## URL
if (defined $opt{url}) {
$out->url ($opt{url});
$has_location = 1;
}
## Line & column number
my $line;
my $column;
if (defined $opt{node}) {
$line = $opt{node}->get_user_data ('manakai_source_line');
if (defined $line) {
$column = $opt{node}->get_user_data ('manakai_source_column');
} else {
if ($opt{node}->node_type == $opt{node}->ATTRIBUTE_NODE) {
my $owner = $opt{node}->owner_element;
if ($owner) {
$line = $owner->get_user_data ('manakai_source_line');
$column = $owner->get_user_data ('manakai_source_column');
}
} else {
my $parent = $opt{node}->parent_node;
if ($parent) {
$line = $parent->get_user_data ('manakai_source_line');
$column = $parent->get_user_data ('manakai_source_column');
}
}
}
}
unless (defined $line) {
if (defined $opt{token} and defined $opt{token}->{line}) {
$line = $opt{token}->{line};
$column = $opt{token}->{column};
} elsif (defined $opt{line}) {
$line = $opt{line};
$column = $opt{column};
}
}
if (defined $line) {
if (defined $column and $column > 0) {
$out->xref ('Line ' . $line, target => 'line-' . $line);
$out->text (' column ' . $column);
} else {
$line = $line - 1 || 1;
$out->xref ('Line ' . $line, target => 'line-' . $line);
}
$has_location = 1;
}
## Node path
if (defined $opt{node}) {
$out->html (' ');
$out->node_link ($opt{node});
$has_location = 1;
}
if (defined $opt{index}) {
if ($opt{index_has_link}) {
$out->html (' ');
$out->xref ('Index ' . (0+$opt{index}),
target => 'index-' . (0+$opt{index}));
} else {
$out->text (' Index ' . (0+$opt{index}));
}
$has_location = 1;
}
if (defined $opt{value}) {
$out->html (' ');
$out->code ($opt{value});
$has_location = 1;
}
unless ($has_location) {
if (defined $opt{input}) {
if (defined $opt{input}->{container_node}) {
my $original_input = $out->input;
$out->input ($opt{input}->{parent_input});
$out->node_link ($opt{input}->{container_node});
$out->input ($original_input);
$has_location = 1;
} elsif (defined $opt{input}->{request_uri}) {
$out->url ($opt{input}->{request_uri});
$has_location = 1;
} elsif (defined $opt{input}->{uri}) {
$out->url ($opt{input}->{uri});
$has_location = 1;
}
}
unless ($has_location) {
$out->text ('Unknown location');
}
}
$out->start_tag ('dd', class => $class);
## Error level
if ($error_level eq 'm') {
$out->html (qq[MUST-level
error: ]);
} elsif ($error_level eq 's') {
$out->html (qq[SHOULD-level
error: ]);
} elsif ($error_level eq 'w') {
$out->html (qq[Warning: ]);
} elsif ($error_level eq 'u') {
$out->html (qq[Not
supported: ]);
} elsif ($error_level eq 'i') {
$out->html (qq[Information: ]);
}
## Error message
$out->text ($error_type_text);
## Additional error description
if (defined $opt{text}) {
$out->html (' (');
$out->text ($opt{text});
$out->html ('
)');
}
## Link to a long description
my $fragment = $opt{type};
$fragment =~ tr/ /-/;
$fragment = $out->encode_url_component ($fragment);
$out->text (' [');
$out->link ('Description', url => '../error-description#' . $fragment,
rel => 'help');
$out->text (']');
# my ($type, $cls, $msg) = main::get_text ($opt{type}, $opt{level});
# $out->html (qq[
The conformance checker cannot decide whether the document is conforming or not, since the document contains one or more unsupported features. The document might or might not be conforming.
]); } elsif ($result->{conforming_min}) { $out->html (qq[No conformance-error is found in this document.
]); } elsif ($result->{conforming_max}) { $out->html (qq[This document is likely non-conforming, but in rare case it might be conforming.
]); } else { $out->html (qq[This document is non-conforming.
]); } $out->html (qq[MUST-level Errors | SHOULD-level Errors | Warnings | Score | |||
---|---|---|---|---|---|---|
$label | $result->{$_->[1]}->{must}$uncertain | $result->{$_->[1]}->{should}$uncertain | $result->{$_->[1]}->{warning}$uncertain | ]); if ($uncertain) { $out->html (qq[−∞..$result->{$_->[1]}->{score_max}]); } elsif ($result->{$_->[1]}->{score_min} != $result->{$_->[1]}->{score_max}) { $out->html (qq[ | $result->{$_->[1]}->{score_min}..$result->{$_->[1]}->{score_max}]); } else { $out->html (qq[ | $result->{$_->[1]}->{score_min}]); } $out->html (qq[ / 20]); } $score_max += $score_base; $out->html (qq[ |
Semantics | 0? | 0? | 0? | −∞..$score_base / 20 | ||
Total | $must_error? | $should_error? | $warning? | −∞..$score_max / 100 |
Important: This conformance checking service is under development. The result above might be wrong.
]); $out->end_section; } # generate_result_section 1;