Minor wording rewrite in warning
[koha.git] / misc / translator / text-extract2.pl
1 #!/usr/bin/perl
2
3 # Test filter partially based on Ambrose's hideous subst.pl code
4 # The idea is that the .tmpl files are not valid HTML, and as a result
5 # HTML::Parse would be completely confused by these templates.
6 # This is just a simple scanner (not a parser) & should give better results.
7
8 # This script is meant to be a drop-in replacement of text-extract.pl
9
10 # FIXME: Strings like "<< Prev" or "Next >>" may confuse *this* filter
11 # TODO: Need to detect unclosed tags, empty tags, and other such stuff.
12
13 use Getopt::Long;
14 use strict;
15
16 use vars qw( $input );
17 use vars qw( $debug_dump_only_p );
18
19 ###############################################################################
20
21 # Hideous stuff
22 use vars qw( $re_directive );
23 BEGIN {
24     # $re_directive must not do any backreferences
25     $re_directive = q{<(?:(?i)(?:!--\s*)?\/?TMPL_(?:VAR|LOOP|INCLUDE|IF|ELSE|UNLESS)\b(?:\s+(?:[a-zA-Z][-a-zA-Z0-9]*=)?(?:'[^']*'|"[^"]*"|[^\s<>]+))\s*(?:--)?)>};
26 }
27
28 # Hideous stuff from subst.pl, slightly modified to use the above hideous stuff
29 # Note: The $re_tag's set $1 (<tag), $2 (>), and $3 (rest of string)
30 use vars qw( $re_comment $re_entity_name $re_end_entity $re_etag );
31 use vars qw( $re_tag_strict $re_tag_compat @re_tag );
32 sub re_tag ($) {
33    my($compat) = @_;
34    my $etag = $compat? '>': '<>\/';
35    # See the file "subst.pl.test1" for how the following mess is derived
36    # Unfortunately, inserting $re_directive's has made this even messier
37    # FIXME: The following is somehow wrong. Paul's 1st report shouldn't happen.
38    q{(<\/?(?:|(?:"(?:} . $re_directive . q{|[^"])*"|'(?:} . $re_directive . q{|[^'])*'|--(?:[^-]|-[^-])*--|(?:} . $re_directive . q{|[^-"'} . $etag . q{]|-[^-]))+))([} . $etag . q{])(.*)};
39 }
40 BEGIN {
41     $re_comment = '(?:--(?:[^-]|-[^-])*--)';
42     $re_entity_name = '(?:[^&%#;<>\s]+)'; # NOTE: not really correct SGML
43     $re_end_entity = '(?:;|$|(?=\s))'; # semicolon or before-whitespace
44     $re_etag = q{(?:<\/?(?:"[^"]*"|'[^']*'|[^"'>\/])*[>\/])}; # end-tag
45     @re_tag = ($re_tag_strict, $re_tag_compat) = (re_tag(0), re_tag(1));
46 }
47
48 # End of the hideous stuff
49
50 sub KIND_TEXT      () { 'TEXT' }
51 sub KIND_CDATA     () { 'CDATA' }
52 sub KIND_TAG       () { 'TAG' }
53 sub KIND_DECL      () { 'DECL' }
54 sub KIND_PI        () { 'PI' }
55 sub KIND_DIRECTIVE () { 'HTML::Template' }
56 sub KIND_COMMENT   () { 'COMMENT' }   # empty DECL with exactly one SGML comment
57 sub KIND_UNKNOWN   () { 'ERROR' }
58
59 use vars qw( $readahead $lc_0 $lc $syntaxerror_p );
60 use vars qw( $cdata_mode_p $cdata_close );
61
62 sub extract_attributes ($;$) {
63     my($s, $lc) = @_;
64     my %attr;
65     $s = $1 if $s =~ /^<\S+(.*)\/\S$/s  # XML-style self-closing tags
66             || $s =~ /^<\S+(.*)\S$/s;   # SGML-style tags
67
68     for (my $i = 0; $s =~ /^\s+(?:([a-zA-Z][-a-zA-Z0-9]*)=)?('((?:$re_directive|[^'])*)'|"((?:$re_directive|[^"])*)"|(($re_directive|[^\s<>])+))/os;) {
69         my($key, $val, $val_orig, $rest)
70                 = ($1, (defined $3? $3: defined $4? $4: $5), $2, $');
71         $i += 1;
72         $attr{+lc($key)} = [$key, $val, $val_orig, $i];
73         $s = $rest;
74         warn "Warning: Attribute should be quoted"
75                 . (defined $lc? " in line $lc": '') . ": $val_orig\n"
76                 if $val =~ /[^-\.A-Za-z0-9]/s && $val_orig !~ /^['"]/;
77     }
78     if ($s =~ /\S/s) { # should never happen
79         warn "Warning: Strange attribute syntax"
80                 . (defined $lc? " in line $lc": '') . ": $s\n";
81     }
82     return \%attr;
83 }
84
85 sub next_token_internal (*) {
86     my($h) = @_;
87     my($it, $kind);
88     my $eof_p = 0;
89     if (!defined $readahead || !length $readahead) {
90         my $next = scalar <$h>;
91         $eof_p = !defined $next;
92         if (!$eof_p) {
93             $lc += 1;
94             $readahead .= $next;
95         }
96     }
97     $lc_0 = $lc;                        # remember line number of first line
98     if ($eof_p && !length $readahead) { # nothing left to do
99         ;
100     } elsif ($readahead =~ /^\s+/s) {   # whitespace
101         ($kind, $it, $readahead) = (KIND_TEXT, $&, $');
102     # FIXME the following (the [<\s] part) is an unreliable HACK :-(
103     } elsif ($readahead =~ /^(?:[^<]|<[<\s])+/s) {      # non-space normal text
104         ($kind, $it, $readahead) = (KIND_TEXT, $&, $');
105         warn "Warning: Unescaped < in line $lc: $it\n" if $it =~ /</s;
106     } else {                            # tag/declaration/processing instruction
107         my $ok_p = 0;
108         for (;;) {
109             if ($cdata_mode_p) {
110                 if ($readahead =~ /^$cdata_close/) {
111                     ($kind, $it, $readahead) = (KIND_TAG, $&, $');
112                     $ok_p = 1;
113                 } else {
114                     ($kind, $it, $readahead) = (KIND_TEXT, $readahead, undef);
115                     $ok_p = 1;
116                 }
117             } elsif ($readahead =~ /^$re_tag_compat/os) {
118                 ($kind, $it, $readahead) = (KIND_TAG, "$1$2", $3);
119                 $ok_p = 1;
120             } elsif ($readahead =~ /^<!--(?:(?!-->).)*-->/s) {
121                 ($kind, $it, $readahead) = (KIND_COMMENT, $&, $');
122                 $ok_p = 1;
123                 warn "Warning: Syntax error in comment at line $lc_0: $&\n";
124                 $syntaxerror_p = 1;
125             }
126         last if $ok_p;
127             my $next = scalar <$h>;
128             $eof_p = !defined $next;
129         last if $eof_p;
130             $lc += 1;
131             $readahead .= $next;
132         }
133         if ($kind ne KIND_TAG) {
134             ;
135         } elsif ($it =~ /^<!/) {
136             $kind = KIND_DECL;
137             $kind = KIND_COMMENT if $it =~ /^<!--(?:(?!-->).)*-->/;
138         } elsif ($it =~ /^<\?/) {
139             $kind = KIND_PI;
140         }
141         if ($it =~ /^$re_directive/ios && !$cdata_mode_p) {
142             $kind = KIND_DIRECTIVE;
143         }
144         ($kind, $it) = (KIND_UNKNOWN, $readahead)
145                 if !$ok_p && $eof_p && !length $readahead;
146     }
147     return defined $it? (wantarray? ($kind, $it):
148                                     [$kind, $it]): undef;
149 }
150
151 sub next_token (*) {
152     my($h) = @_;
153     my $it;
154     if (!$cdata_mode_p) {
155         $it = next_token_internal($h);
156         if (defined $it && $it->[0] eq KIND_TAG) { # FIXME
157             ($cdata_mode_p, $cdata_close) = (1, "</$1\\s*>")
158                     if $it->[1] =~ /^<(script|style|textarea)\b/i; #FIXME
159             push @$it, extract_attributes($it->[1], $lc); #FIXME
160         }
161     } else {
162         for (;;) {
163             my $lc_prev = $lc;
164             my $next = next_token_internal($h);
165         last if !defined $next;
166             if (defined $next && $next->[1] =~ /$cdata_close/i) { #FIXME
167                 ($lc, $readahead) = ($lc_prev, $next->[1] . $readahead); #FIXME
168                 $cdata_mode_p = 0;
169             }
170         last unless $cdata_mode_p;
171             $it .= $next->[1]; #FIXME
172         }
173         $it = [KIND_CDATA, $it] if defined $it; #FIXME
174         $cdata_close = undef;
175     }
176     return defined $it? (wantarray? @$it: $it): undef;
177 }
178
179 ###############################################################################
180
181 sub debug_dump (*) { # for testing only
182     my($h) = @_;
183     print "re_tag_compat is /$re_tag_compat/\n";
184     for (;;) {
185         my $s = next_token $h;
186     last unless defined $s;
187         printf "%s\n", ('-' x 79);
188         my($kind, $t, $attr) = @$s; # FIXME
189         printf "%s:\n", $kind;
190         printf "%4dH%s\n", length($t),
191                 join('', map {/[\0-\37]/? $_: "$_\b$_"} split(//, $t));
192         if ($kind eq KIND_TAG && %$attr) {
193             printf "Attributes:\n";
194             for my $a (keys %$attr) {
195                 my($key, $val, $val_orig, $order) = @{$attr->{$a}};
196                 printf "%s = %dH%s -- %s\n", $a, length $val,
197                 join('', map {/[\0-\37]/? $_: "$_\b$_"} split(//, $val)),
198                 $val_orig;
199             }
200         }
201     }
202 }
203
204 ###############################################################################
205
206 sub text_extract (*) {
207     my($h) = @_;
208     my %text = ();
209     for (;;) {
210         my $s = next_token $h;
211     last unless defined $s;
212         my($kind, $t, $attr) = @$s; # FIXME
213         if ($kind eq KIND_TEXT) {
214             $t =~ s/\s+$//s;
215             $text{$t} = 1 if $t =~ /\S/s;
216         } elsif ($kind eq KIND_TAG && %$attr) {
217             # value [tag=input], meta
218             my $tag = lc($1) if $t =~ /^<(\S+)/s;
219             for my $a ('alt', 'content', 'title', 'value') {
220                 if ($attr->{$a}) {
221                     next if $a eq 'content' && $tag ne 'meta';
222                     next if $a eq 'value' && ($tag ne 'input'
223                         || (ref $attr->{'type'} && $attr->{'type'}->[1] eq 'hidden')); # FIXME
224                     my($key, $val, $val_orig, $order) = @{$attr->{$a}}; #FIXME
225                     $val =~ s/\s+$//s;
226                     $text{$val} = 1 if $val =~ /\S/s;
227                 }
228             }
229         }
230     }
231     for my $t (keys %text) {
232         printf "%s\n", $t unless $t =~ /^(?:\s|\&nbsp;)*$/s;
233     }
234 }
235
236 ###############################################################################
237
238 GetOptions(
239     'f|file=s' => \$input,
240     'debug-dump-only-p' => \$debug_dump_only_p,
241 ) || exit(-1);
242
243 open(INPUT, "<$input") || die "$0: $input: $!\n";
244 if ($debug_dump_only_p) {
245     debug_dump(*INPUT);
246 } else {
247     text_extract(*INPUT);
248 }
249
250 warn "Warning: This input will not work with Mozilla standards-compliant mode\n"
251         if $syntaxerror_p;
252
253 close INPUT;
254