kolibrios/contrib/network/netsurf/libparserutils/build/conv.pl
Yogev Ezra bb2bbc6b91 Move NetSurf to /contrib folder
git-svn-id: svn://kolibrios.org@4364 a494cfbc-eb01-0410-851d-a64ba20cac60
2013-12-15 14:01:21 +00:00

50 lines
856 B
Perl
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/perl
use warnings;
use strict;
# Convert Unicode mapping tables to C structures
# Input files may be found at http://unicode.org/Public/MAPPINGS
#
# Usage: conv.pl <input_file>
die "Usage: conv.pl <input_file>\n" if (scalar(@ARGV) != 1);
my @table;
open MAP, "<$ARGV[0]" or die "Failed opening $ARGV[0]: $!\n";
while (<MAP>) {
next if (/^#/);
my @parts = split(/\s+/);
# Ignore ASCII part
next if (hex($parts[0]) < 0x80);
# Convert undefined entries to U+FFFF
if ($parts[1] =~ /^#/) {
push(@table, "0xFFFF");
} else {
push(@table, $parts[1]);
}
}
close MAP;
# You'll have to go through and fix up the structure name
print "static uint32_t ${ARGV[0]}[128] = {\n\t";
my $count = 0;
foreach my $item (@table) {
print "$item, ";
$count++;
if ($count % 8 == 0 && $count != 128) {
print "\n\t";
}
}
print "\n};\n\n";