charset: common endpoint fallback
[sheet.git] / charset.plp
1 <(common.inc.plp)><:
2
3 my $mode = exists $get{compare};
4 my @tablist = split m{/+}, $Request || 'default';
5
6 Html({
7         title => 'charset cheat sheet',
8         version => '1.0',
9         description => [
10                 "Reference sheet with all glyphs in common character encoding tables,",
11                 "and an overview of Unicode ranges and UTF-8 bytes.",
12         ],
13         keywords => [qw'
14                 charset codepage unicode ascii utf8 latin glyph character encoding
15                 reference common overview table
16         '],
17         stylesheet => [qw'light'],
18         data => [qw(
19                 charset-encoding.inc.pl
20                 charset-unicode.inc.pl charset-ucplanes.inc.pl charset-utf8.inc.pl
21         )],
22 });
23
24 use List::Util qw( first pairmap pairfirst pairs );
25
26 :>
27 <h1>Character encodings</h1>
28
29 <p>
30 <:
31 if ($tablist[0] eq 'default') {
32         say "Overview of Unicode allocation and common latin code pages.";
33         say "Compare alternate charsets:";
34 }
35 else {
36         say "Charset comparison:";
37 }
38
39 sub optionlink {
40         my ($title, $href, $selected) = @_;
41         return sprintf(
42                 $selected ? '<strong>%s</strong>' : '<a href="%2$s">%s</a>',
43                 EscapeHTML($title), $href
44         );
45 }
46
47 print join " •\n", (
48         map {
49                 join " ·\n", pairmap {
50                         optionlink($b || ucfirst $a, '/charset'.($a && "/$a?compare"), $a eq $Request);
51                 } @{$_}
52         }
53         [
54                 iso      => 'ISO',
55                 win      => 'Windows',
56                 dos      => 'DOS',
57                 mac      => 'Apple',
58                 ebcdic   => 'EBCDIC',
59                 $tablist[0] eq 'default' ? () : ('' => 'common'),
60         ],
61         [
62                 westeur  => 'West',
63                 centeur  => 'Central',
64                 norteur  => 'North European',
65                 turkish  => 0,
66                 greek    => 0,
67                 cyrillic => 0,
68                 hebrew   => 0,
69         ],
70 );
71 :>.
72 </p>
73
74 <:
75 use POSIX qw( ceil );
76 use Shiar_Sheet::FormatChar;
77 my $glyphs = Shiar_Sheet::FormatChar->new;
78 my @request;
79
80 my $charsets = do 'charset-encoding.inc.pl'
81         or Alert('Encoding metadata could not be read', $@ || $!);
82
83 sub tabinput {
84         # generate character table(s)
85         my $input = shift or return;
86         my $params = $input =~ s/[+](.*)\z// ? $1 : undef;
87         my $charset = $charsets->{lc $input} || {};
88
89         if (ref $charset ne 'HASH') {
90                 $params and Alert("Parameters ignored for $input",
91                         "Cannot apply <q>$params</q> to multiple charsets.",
92                 );
93                 tabinput($_) for ref $charset ? @{$charset} : $charset;
94                 return;
95         }
96
97         state $visible = {'' => 1};  # all present tables
98         my %row = (offset => 0, cols => 16);
99
100         if (not defined $params) {
101                 my @parents = @{ $charset->{inherit} || [] };
102
103                 if (my ($parent, $part) = pairfirst { defined $visible->{$a} } @parents) {
104                         $row{parent} = $parent;
105                         $params = $part;
106                         $params = 80 unless $visible->{$parent}
107                                 or ($input eq 'MacCroatian' and defined $visible->{MacRomanian});
108                 }
109                 elsif (defined $visible->{ascii}) {
110                         $row{parent} = $parents[0];
111                         $params = $parents[1] // 80;
112                         $params = 80 if hex $params >= 0x80;  # ascii offset at most
113                 }
114                 elsif (@parents) {
115                         $row{parent} = $parents[0];
116                         $params = $parents[1] if hex $parents[1] == 0;  # apply ascii end
117                 }
118                 $visible->{$_} //= 0 for $row{parent} || ();
119         }
120
121         for my $param (split /[+]+/, $params // '') {
122                 if ($param eq 'realsize') {
123                         $row{realsize}++;
124                 }
125                 elsif ($param =~ m{ \A cols = (\d+) \z }x) {
126                         $row{cols} = $1;
127                 }
128                 elsif ($param =~ m{ \A (?<start> \p{AHex}+) (?: [-] (?<end> \p{AHex}+) )? \z }x) {
129                         if (defined $row{endpoint}) {
130                                 # extend earlier range
131                                 my $skip = int(($row{endpoint} || $row{startpoint}) / $row{cols});
132                                 for ($skip + 1 .. (hex($+{start}) / $row{cols}) - 1) {
133                                         $row{skip}->{ $_ * $row{cols} - $row{startpoint} }++;
134                                 }
135                         }
136                         else {
137                                 $row{startpoint} = hex $+{start};
138                         }
139                         $row{endpoint} = hex($+{end} || 0);
140                 }
141                 else {
142                         Alert("Unknown option <q>$param</q> for charset $input");
143                 }
144         }
145
146         if ($charset->{setup}) {
147                 eval { $charset->{setup}->(\%row) }
148                         or Alert("Incomplete setup of $input", $@);
149         }
150         $row{endpoint} ||= 0xFF;
151
152         if ($row{set}) {}
153         elsif ($row{set} = Encode::resolve_alias($input)) {
154                 $row{offset} = delete $row{startpoint};
155                 if ($row{set} eq 'MacHebrew' or $row{set} eq 'MacThai') {
156                         # array of possibly multiple characters per code point
157                         $row{table} = [
158                                 map { Encode::decode($row{set}, pack 'C*', $_) } $row{offset} .. $row{endpoint}
159                         ];
160                 }
161                 else {
162                         # ~16x faster than decoding in loop;
163                         # substr strings is twice as fast as splitting to an array
164                         $row{table} = Encode::decode($row{set}, pack 'C*', $row{offset} .. $row{endpoint});
165                 }
166
167                 $row{endpoint} -= $row{offset};
168
169                 $visible->{ascii} =  # assume common base
170                 $visible->{ $row{set} } = 1;
171         }
172         else {
173                 Alert("Encoding <q>$input</q> unknown");
174                 return;
175         }
176
177         if (my $replace = $charset->{replace}) {
178                 while (my ($offset, $sub) = each %{$replace}) {
179                         $offset -= $row{offset};
180
181                         my $length = length $sub;
182
183                         if ($offset < 0) {
184                                 $offset > -$length or next; # at least one character after start
185                                 # trim leftmost part to start at offset
186                                 substr($sub, 0, -$offset) = '';
187                                 $length += $offset;
188                                 $offset = 0;
189                         }
190
191                         if ((my $excess = $row{endpoint} - $offset - $length + 1) < 0) {
192                                 $excess > -$length or next;
193                                 # trim rightmost part to prevent overflow
194                                 substr($sub, $excess) = '';
195                                 $length += $excess;
196                         }
197
198                         substr($row{table}, $offset, $length) = $sub;
199                 }
200         }
201
202         push @request, \%row;
203 }
204 tabinput($_) for @tablist;
205
206 my $NOCHAR = chr 0xFFFD;
207
208 sub range_cell {
209         my ($info, $offset) = @_;
210         my $table = $info->{cell} or return;
211         my $def = $table->{$offset} or return;
212         my ($len, $class, $name, $title) = @{$def};
213
214         my $cols = $info->{cols};
215         my $colsize = $table->{colsize} || 1;
216         my $attr = '';
217         $len /= $colsize;
218         $name //= $len <= 2 ? 'res' : 'reserved';
219
220         if (my $part = ($offset/$colsize - $info->{startpoint}) % $cols) {
221                 # continued row
222                 my $rest = $cols - $part;  # remaining
223                 $rest = $len if $len < $rest; #TODO: optimise
224                 if ($len -= $rest) {
225                         # continued on new row
226                         my @next = ($len * $colsize, "$class joinu");
227                         my $separate = $cols - $len > $rest;  # columns not on next row
228                         if ($len > $rest) {
229                                 # minority remains
230                                 push @next, $name, $title;
231                                 $title ||= $name;
232                                 $name = $separate && '…';
233                         }
234                         else {
235                                 # minority on next row
236                                 push @next, $separate && '"', $title || $name;
237                         }
238                         $table->{$offset + $colsize*$rest} //= \@next;
239                         $class .= ' joind';
240                 }
241                 $len = $rest;
242         }
243         elsif (my $rows = int($len / $cols)) {
244                 # multiple full rows
245                 my $rowsize = $colsize * $cols;
246                 if ($len -= $rows * $cols) {
247                         # partial row remains
248                         $table->{$offset + $rowsize * $rows} //= [$len*$colsize, "$class joinu", '', $title];
249                         $class .= ' joind';
250                 }
251
252                 unless ($info->{realsize}) {
253                         # coalesce multiple rows
254                         while ($rows > 3) {
255                                 $info->{skip}->{$offset += $rowsize}++;
256                                 $rows--;
257                         }
258                         if ($rows > 2) {
259                                 $info->{skip}->{$offset += $rowsize} = 0;
260                         }
261                 }
262
263                 $attr .= sprintf ' rowspan=%d', $rows;
264                 $len = $cols;
265         }
266
267         $attr .= sprintf ' colspan=%d', $len unless $len == 1;
268         $attr .= $1 if $class and $class =~ s/( \w+="[^"]*")//;
269         $attr .= sprintf ' class="%s"', $class if $class;
270         $attr .= sprintf ' title="%s"', EscapeHTML($title) if $title;
271         return "<td$attr>$name\n";
272 }
273
274 for my $row (@request) {
275         my $cols = $row->{cols};
276         my $colsize = $row->{cell} && $row->{cell}->{colsize} || 1;
277         my $coldigits = ceil(log($colsize * $cols) / log(16));  # uniform length of hexadecimal header
278         my $rowdiv = 16 ** $coldigits;  # row divide for column digits
279         $rowdiv = 1 if $rowdiv != $cols * $colsize;  # divide only if all columns are matched
280         my $offset = $row->{startpoint} * $colsize || 0;
281
282         printf '<div class="section"><table class="glyphs%s">', !$row->{cell} && ' charmap';
283         my $title = $row->{set};
284         $title .= " <aside>(over $_)</aside>"
285                 for $row->{parent} || ();
286         printf '<caption>%s</caption>', $title;
287         print '<col>' x ($cols + 1);
288         for my $section (qw{thead}) {
289                 print "<$section><tr><th>", $rowdiv == 1 ? '+' : '↱';
290                 printf '<th>%0*X', $coldigits, $_ * $colsize for 0 .. $cols - 1;
291                 print "\n";
292         }
293
294         print '<tbody>';
295         while ($offset <= $row->{endpoint} * $colsize) {
296                 if ($row->{skip}->{$offset}) {
297                         $offset += $cols * $colsize;
298                         next;
299                 }
300
301                 print '<tr><th>';
302                 if (defined $row->{skip}->{$offset}) {
303                         print '⋮';
304                 }
305                 else {
306                         if (my $rowmod = $offset % $rowdiv) {
307                                 # offset in column units
308                                 printf '<small>+%X</small>', $rowmod;
309                         }
310                         else {
311                                 # divided row offset
312                                 printf '%X', ($offset + $row->{offset}) / $rowdiv;
313                         }
314                 }
315                 say '';
316
317                 for (1 .. $cols) {
318                         if ($row->{cell}) {
319                                 print range_cell($row, $offset);
320                                 next;
321                         }
322
323                         my $cp = $offset + $row->{offset};
324                         my $glyph = ref $row->{table} eq 'ARRAY' ? $row->{table}->[$offset] :
325                                 substr $row->{table}, $offset, 1;
326                         my ($cell, $name, $class) = $glyph eq $NOCHAR ? () :
327                                 $glyphs->glyph_html($glyph);
328
329                         if ($mode) {
330                                 state $visible = {};
331                                 $class = (
332                                         $cp == ord $glyph ? 'l4' :
333                                         $row->{parent} && $glyph eq
334                                                 Encode::decode($row->{parent}, pack 'C', $cp) ? 'l3' :
335                                         !$class ? undef :
336                                         $visible->{$glyph} ? 'l2' :
337                                         'l1'
338                                 );
339                                 $visible->{$glyph}++;
340                         }
341
342                         say sprintf $class ? '<td title="%s" class="X %s">%s' : '<td title="%s">',
343                                 $name, $class, $cell;
344                 }
345                 continue {
346                         $offset += $colsize;
347                 }
348         }
349         say '</table></div>';
350 }
351
352 :>
353 <hr>
354
355 <div class="legend">
356         <table class="glyphs"><tr><: if ($mode) { :>
357         <td class="X l4">unicode
358         <td class="X l3">inherited
359         <td class="X l2">existing
360         <td class="X l1">original
361         <td class="">unassigned
362 <: } else { :>
363         <td class="X Cc">control
364         <td class="X Zs"><span>whitespace</span>
365         <td class="X Mn">diacritic<table class="glyphs"><tr>
366                 <td class="X Sk">letter
367                 </table>
368         <td class="X Po">punctuation<table class="glyphs"><tr>
369                 <td class="X Pf">quote
370                 </table>
371         <td class="X So">symbol<table class="glyphs"><tr>
372                 <td class="X Sm">math
373                 <td class="X Sc">currency
374                 </table>
375         <td class="X No">numeric
376         <td class="X Greek">greek<table class="glyphs"><tr>
377                 <td class="X Latin">latin
378                 <td class="X Cyrillic">cyrillic
379                 </table>
380         <td class="X Aramaic">aramaic<table class="glyphs"><tr>
381                 <td class="X Brahmic">brahmic
382                 <td class="X Arabic">arabic
383                 </table>
384         <td class="X Syllabic">syllabic<table class="glyphs"><tr>
385                 <td class="X African">african
386                 <td class="X Hiragana">japanese
387                 <td class="X Han">cjk
388                 <td class="X Bopomofo">chinese
389                 </table>
390         <td class="X Alpha">alphabetic
391         </table>
392
393         <table class="glyphs"><tr>
394         <td class="X">unicode 7.0
395         <td class="X Xr">proposed
396         <td class="X Xd">deprecated
397         <td class="">unassigned
398         <td class="X Xi">invalid
399 <: } :> </table>
400 </div>
401