Nuke arch-tags.
[emacs.git] / admin / charsets / mapconv
blob4f7a8b96f5466e4c70de46d171cc706844eb07ec
1 #!/bin/sh
3 # Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 # National Institute of Advanced Industrial Science and Technology (AIST)
5 # Registration Number H13PRO009
7 # This file is part of GNU Emacs.
9 # GNU Emacs is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
14 # GNU Emacs is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22 # Commentary:
24 # Convert charset map of various format into this:
25 # 0xXX 0xYYYY
26 # where,
27 # XX is a code point of the charset in hexa-decimal,
28 # YYYY is the corresponding Unicode character code in hexa-decimal.
29 # Arguments are:
30 # $1: source map file
31 # $2: address pattern for sed (optionally with substitution command)
32 # $3: format of source map file
33 # GLIBC-1 GLIBC-2 GLIBC-2-7 CZYBORRA IANA UNICODE UNICODE2 YASUOKA
34 # $4: awk script
36 FILE="admin/charsets/$1"
37 BASE=`basename $1 .gz`
39 case "$3" in
40 GLIBC*)
41 FILE="$BASE in localedate/charmaps of glibc";
42 SOURCE="";;
43 CZYBORRA)
44 BASE="$BASE.gz";
45 SOURCE="http://czyborra.com/charsets/${BASE}";;
46 IANA)
47 SOURCE="http://www.iana.org/assignments/charset-reg/${BASE}";;
48 UNICODE)
49 SOURCE="http://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/${BASE}";;
50 UNICODE2)
51 SOURCE="http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/${BASE}";;
52 YASUOKA)
53 BASE="$BASE.Z";
54 SOURCE="http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/ftp/CJKtable/${BASE}";;
55 KANJI-DATABASE)
56 SOURCE="http://kanji-database.cvs.sourceforge.net/viewvc/*checkout*/kanji-database/kanji-database/data/cns2ucsdkw.txt?revision=1.4";;
58 echo "Unknown file type: $3";
59 exit 1;;
60 esac
62 if [ -n "$SOURCE" ] ; then
63 echo "# Generated from $FILE which is a copy of";
64 echo "# $SOURCE"
65 else
66 echo "# Generated from $FILE"
70 if [ -n "$4" ] ; then
71 if [ -f "$4" ] ; then
72 AWKPROG="gawk -f $4"
73 else
74 echo "Awk program does not exist: $4"
75 exit 1
77 else
78 AWKPROG=cat
81 if [ "$3" = "GLIBC-1" ] ; then
82 # Source format is:
83 # <UYYYY> /xXX
84 zcat $1 | sed -n -e "$2 p" \
85 | sed -e 's,<U\([^>]*\)>[ ]*/x\(..\).*,0x\2 0x\1,' \
86 | sort | ${AWKPROG}
87 elif [ "$3" = "GLIBC-2" ] ; then
88 # Source format is:
89 # <UYYYY> /xXX/xZZ
90 zcat $1 | sed -n -e "$2 p" \
91 | sed -e 's,<U\([^>]*\)>[ ]*/x\(..\)/x\(..\).*,0x\2\3 0x\1,' \
92 | sort | ${AWKPROG}
93 elif [ "$3" = "GLIBC-2-7" ] ; then
94 # Source format is:
95 # <UYYYY> /xXX/xZZ
96 # We must drop MSBs of XX and ZZ
97 zcat $1 | sed -n -e "$2 p" \
98 | sed -e 's/xa/x2/g' -e 's/xb/x3/g' -e 's/xc/x4/g' \
99 -e 's/xd/x5/g' -e 's/xe/x6/g' -e 's/xf/x7/g' \
100 -e 's,<U\([^>]*\)>[ ]*/x\(..\)/x\(..\).*,0x\2\3 0x\1,' \
101 | tee temp \
102 | sort | ${AWKPROG}
103 elif [ "$3" = "CZYBORRA" ] ; then
104 # Source format is:
105 # =XX U+YYYY
106 zcat $1 | sed -n -e "$2 p" \
107 | sed -e 's/=\(..\)[^U]*U+\([0-9A-F]*\).*/0x\1 0x\2/' \
108 | sort | ${AWKPROG}
109 elif [ "$3" = "IANA" ] ; then
110 # Source format is:
111 # 0xXX 0xYYYY
112 zcat $1 | sed -n -e "$2 p" \
113 | sed -e 's/\(0x[0-9A-Fa-f]*\)[^0]*\(0x[0-9A-Fa-f]*\).*/\1 \2/' \
114 | sort | ${AWKPROG}
115 elif [ "$3" = "UNICODE" ] ; then
116 # Source format is:
117 # YYYY XX
118 # We perform reverse sort to prefer the first one in the
119 # duplicated mappings (e.g. 0x20->U+0020, 0x20->U+00A0).
120 zcat $1 | sed -n -e "$2 p" \
121 | sed -e 's/\([0-9A-F]*\)[^0-9A-F]*\([0-9A-F]*\).*/0x\2 0x\1/' \
122 | sort -r
123 elif [ "$3" = "UNICODE2" ] ; then
124 # Source format is:
125 # 0xXXXX 0xYYYY # ...
126 zcat $1 | sed -n -e "$2 p" \
127 | sed -e 's/\([0-9A-Fx]*\)[^0]*\([0-9A-Fx]*\).*/\1 \2/' \
128 | ${AWKPROG} | sort -n -k 4,4
129 elif [ "$3" = "YASUOKA" ] ; then
130 # Source format is:
131 # YYYY 0-XXXX (XXXX is a Kuten code)
132 zcat $1 | sed -n -e "$2 p" \
133 | sed -e 's/\([0-9A-F]*\)[^0]*0-\([0-9]*\).*/0x\2 0x\1/' \
134 | sort | ${AWKPROG}
135 elif [ "$3" = "KANJI-DATABASE" ] ; then
136 # Source format is:
137 # C?-XXXX U+YYYYY .....
138 zcat $1 | sed -n -e "$2 p" \
139 | sed -e 's/...\(....\) U+\([0-9A-F]*\).*/0x\1 0x\2/' \
140 | sort | ${AWKPROG}
141 else
142 echo "Invalid arguments: $3"
143 exit 1