mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
uca-dump.c:
Better variable names in dump. Dump tertiary weight in reverse order, to sort upper letters before their lower counterparts.
This commit is contained in:
parent
31f5d69d3a
commit
9f6d5a02ca
1 changed files with 13 additions and 4 deletions
|
@ -218,7 +218,6 @@ int main(int ac, char **av)
|
|||
*/
|
||||
if (ndefs == MY_UCA_NCHARS)
|
||||
{
|
||||
printf("/* Don't dump w=%d pg=%3X: ndefs=%d */\n",w, page, ndefs);
|
||||
continue;
|
||||
}
|
||||
switch (maxnum)
|
||||
|
@ -263,7 +262,17 @@ int main(int ac, char **av)
|
|||
|
||||
for (i=0; i < maxnum; i++)
|
||||
{
|
||||
printf("0x%04X",(int)weight[i]);
|
||||
/*
|
||||
Invert weights for secondary level to
|
||||
sort upper case letters before their
|
||||
lower case counter part.
|
||||
*/
|
||||
int tmp= weight[i];
|
||||
if (w == 2 && tmp)
|
||||
tmp= (int)(0x100 - weight[i]);
|
||||
|
||||
|
||||
printf("0x%04X", tmp);
|
||||
if ((offs+1 != MY_UCA_NCHARS) || (i+1!=maxnum))
|
||||
printf(",");
|
||||
nchars++;
|
||||
|
@ -281,7 +290,7 @@ int main(int ac, char **av)
|
|||
printf("};\n\n");
|
||||
}
|
||||
|
||||
printf("uchar ucal%s[%d]={\n", pname[w], MY_UCA_NPAGES);
|
||||
printf("uchar uca_length%s[%d]={\n", pname[w], MY_UCA_NPAGES);
|
||||
for (page=0; page < MY_UCA_NPAGES; page++)
|
||||
{
|
||||
printf("%d%s%s",pagemaxlen[page],page<MY_UCA_NPAGES-1?",":"",(page+1) % 16 ? "":"\n");
|
||||
|
@ -289,7 +298,7 @@ int main(int ac, char **av)
|
|||
printf("};\n");
|
||||
|
||||
|
||||
printf("uint16 *ucaw%s[%d]={\n", pname[w], MY_UCA_NPAGES);
|
||||
printf("uint16 *uca_weight%s[%d]={\n", pname[w], MY_UCA_NPAGES);
|
||||
for (page=0; page < MY_UCA_NPAGES; page++)
|
||||
{
|
||||
const char *comma= page < MY_UCA_NPAGES-1 ? "," : "";
|
||||
|
|
Loading…
Reference in a new issue