digraphs/xorg: json include with character info
[sheet.git] / tools / mkdigraphs-xorg
index b34bef562dda161cd54e51b751b69cb7fc5805df..ec0e8626213c9054396f9f883c9f9ca63e9133fc 100755 (executable)
@@ -15,21 +15,33 @@ my $symname = eval {
        return decode_json(readline $keysymh);
 } or die "Could not read keysym definitions: $@\n";
 
-say "# automatically generated by $0";
-say '+{';
+# optionally get unicode character information
+my $uninfo = do './data/unicode-char.inc.pl'
+       or warn "could not include unicode details: ", $@ // $!;
 
+my %table;
 while ($_ = readline) {
        my ($mnem, $chr, $trail) = m/\A <Multi_key> \h (.*?) \h+ : \h "([^"]+)" \h* (.*)/
                or next;
        $chr =~ s/\\(.)/$1/g;
        $mnem !~ m/<dead | <KP_ | <U[0-9A-Fa-f]{4}/ or next;  # skip non-standard keys
-       $mnem =~ s{<([^>]+)> \h?}{$symname->{$1} // die "reference to unknown keysym $1\n"}eg;
-       $mnem !~ m/[^\x20-\x7F]/ or next;  # skip unicode
-#      (state $seen = {})->{$chr}++ and next;
-       printf "%s => %s,\n", pp($mnem), pp($chr);
+       eval {
+               $mnem =~ s{<([^>]+)> \h?}{$symname->{$1} // die "reference to unknown keysym $1\n"}eg;
+               1;
+       } or warn($@), next;
+       $mnem =~ m/\A [\x20-\x7F]{2} \z/ or next;  # only interested in two ascii
+       my $alias = (state $seen = {})->{$chr}++;  # assume first is preferred
+       $table{$mnem} = [
+               ord $chr,
+               $uninfo->{$chr}->[1] // '',  # name
+               0,  # comparison
+               $alias ? 'l0 ex' :
+               ($uninfo->{$chr}->[0] // '') =~ s/ u-di| u-prop| ex//gr,  # class
+               $uninfo->{$chr}->[4] // (),  # string
+       ];
 }
 
-say '}';
+print JSON->new->canonical->indent->encode(\%table);
 
 __END__