/* gendata.c - generate idna_table
Copyright (C) 2019 Orivej Desh
Libidn2 is free software: you can redistribute it and/or modify it
under the terms of either:
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at
your option) any later version.
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at
your option) any later version.
or both in parallel, as here.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see .
*/
#include
#include
#include
char line[1024];
int line_cnt = 0;
static int
next_line (void)
{
line_cnt++;
return fgets (line, sizeof line, stdin) != NULL;
}
static void
_ok (const char *fname, int fline, int rc)
{
if (!rc)
{
fprintf (stderr, "%s:%d: unexpected failure at input line %d\n",
fname, fline, line_cnt);
exit (EXIT_FAILURE);
}
}
#define ok(rc) _ok (__FILE__, __LINE__, ((rc) != 0))
int
main (void)
{
char *range_end;
char *property;
int idna_table_size = 0;
ok (next_line ());
ok (strstr (line, "Codepoint,Property,") == line);
puts ("/* This file is automatically generated. DO NOT EDIT! */");
puts ("");
puts ("#include ");
puts ("#include \"data.h\"");
puts ("");
puts ("const struct idna_table idna_table[] = {");
while (next_line ())
{
ok (strtok (line, ","));
property = strtok (NULL, ",");
ok (property);
if (!strcmp (property, "UNASSIGNED"))
continue;
strtok (line, "-");
range_end = strtok (NULL, "");
if (!range_end)
range_end = line;
printf (" {0x%s, 0x%s, %s},\n", line, range_end, property);
idna_table_size++;
}
puts ("};");
printf ("const size_t idna_table_size = %d;\n", idna_table_size);
return 0;
}