keyboard/altgr/index: move ctrl rows to distinct inventory mode
[sheet.git] / tools / mkdigraphlist
1 #!/usr/bin/env perl
2
3 use strict;
4 use warnings;
5 use utf8;
6
7 use open OUT => ':encoding(utf-8)', ':std';
8 use JSON ();
9
10 our $VERSION = '1.07';
11
12 # import and combine various digraph data
13 push @INC, 'data';
14 my $rfc = do 'digraphs-rfc.inc.pl'
15         or die "error reading digraphs include: ", $@ // $!;
16 my $extra = do 'digraphs-shiar.inc.pl'
17         or warn "could not include shiar proposals: ", $@ // $!;
18 my $vim = do 'digraphs-vim.inc.pl'
19         or warn "could not include vim extensions ", $@ // $!;
20 my $vimold = do 'digraphs-vim-74.inc.pl'
21         or warn "could not include vim compatibility ", $@ // $!;
22 my $di = { %{$vim // {}}, %{$rfc}, %{$extra // {}} };
23
24 # optionally get unicode character information
25 my $uninfo = do 'unicode-char.inc.pl'
26         or warn "could not include unicode details: ", $@ // $!;
27
28 # output json map of character info
29 my %table;
30 $table{$_} = 0 for (
31         grep { !defined $di->{$_} }
32         map { substr($_, 1, 1).substr($_, 0, 1) } sort keys %{$di}
33 );
34 $table{$_} = [
35         ord $di->{$_},   # original code point
36         $uninfo->{ $di->{$_} }->[1] // '',  # name
37         (
38                 $rfc->{$_}
39                         ? $vim->{$_} ? 'l5' : 'l1'  # vim+rfc or rfc only
40                         : $vimold && $vimold->{$_} ? 'l4'  # compat vim if known
41                         : $vim->{$_} ? 'l3' : 'l2', # vim only or neither
42         ),
43         ($uninfo->{ $di->{$_} }->[0] // '') =~ s/ u-di| u-prop//gr,  # class
44         $uninfo->{ $di->{$_} }->[4] // (),  # string
45 ] for sort keys %{$di};
46
47 print JSON->new->ascii->canonical->encode({
48         title => 'RFC-1345',
49         key  => \%table,
50         intro => join("\n",
51                 'Character mnemonics following compose key ⎄:',
52                 'i^k in <a href="/vi">Vim</a>,',
53                 '^u^\ in <a href="/readline">Emacs</a>,',
54                 '^a^v in <a href="/screen">Screen</a>.',
55                 'Similar but different from <a href="/digraphs/xorg">X.Org</a>.',
56                 'Also see <a href="/keyboard/altgr">monograph maps</a>',
57                 'for more specific combinations with AltGr.</p>',
58                 '<p class="aside">Unofficial <span class="u-l2">proposals</span>',
59                 'are available as <a href="/digraphs.vim">ex commands</a>.',
60         ),
61         flag => {
62                 l5 => 'full support',
63                 l4 => 'vim extension',
64                 l3 => 'vim v8.0',
65                 l2 => 'proposal',
66                 l1 => 'not in vim',
67         },
68         flagclass => {
69                 l5 => '', # common
70                 l3 => 'u-l5', # rare
71         },
72 });
73
74 __END__
75
76 =head1 NAME
77
78 mkdigraphlist - Output character list of combined digraph data
79
80 =head1 SYNOPSIS
81
82     mkdigraphlist | jq -r '.key."DO"[0]' | perl -nE 'say chr' # $
83
84 =head1 DESCRIPTION
85
86 Combines precompiled digraph includes of rfc (1345), vim, and shiar
87 and outputs a complete map including character details and usage classes.
88
89 The C<key> values can either be a scalar string containing another
90 digraph which can be considered identical (usually inverted),
91 or an array ref containing at least the resulting character's
92 Unicode code point value.  If available, the following UCD data
93 is appended: character name, usage classes, unicode classes,
94 and replacement output string.
95 For example:
96
97   {
98    "key": {
99     "AE" => [198, "LATIN CAPITAL LETTER AE", "u-di", "Latin Lu Xl u-v11"],
100     "EA" => "AE",
101    }
102   }
103
104 =head1 AUTHOR
105
106 Mischa POSLAWSKY <perl@shiar.org>
107
108 =head1 LICENSE
109
110 Licensed under the GNU Affero General Public License version 3.
111