conf_to_src.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2004 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation.
  5.    There are special exceptions to the terms and conditions of the GPL as it
  6.    is applied to this software. View the full text of the exception in file
  7.    EXCEPTIONS-CLIENT in the directory of this software distribution.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software
  14.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  15. /* can't use -lmysys because this prog is used to create -lstrings */
  16. #include <my_global.h>
  17. #include <ctype.h>
  18. #include <string.h>
  19. #include <unistd.h>
  20. #define CHARSETS_SUBDIR "sql/share/charsets"
  21. #define CTYPE_TABLE_SIZE      257
  22. #define TO_LOWER_TABLE_SIZE   256
  23. #define TO_UPPER_TABLE_SIZE   256
  24. #define SORT_ORDER_TABLE_SIZE 256
  25. #define ROW_LEN 16
  26. void print_arrays_for(char *set);
  27. char *prog;
  28. char buf[1024], *p, *endptr;
  29. int
  30. main(int argc, char **argv)
  31. {
  32.   prog = *argv;
  33.   if (argc < 2) {
  34.     fprintf(stderr, "usage: %s source-dir [charset [, charset]]n", prog);
  35.     exit(EXIT_FAILURE);
  36.   }
  37.   --argc; ++argv;       /* skip program name */
  38.   if (chdir(*argv) != 0) {
  39.     fprintf(stderr, "%s: can't cd to %sn", prog, *argv);
  40.     exit(EXIT_FAILURE);
  41.   }
  42.   --argc; ++argv;
  43.   if (chdir(CHARSETS_SUBDIR) != 0) {
  44.     fprintf(stderr, "%s: can't cd to %sn", prog, CHARSETS_SUBDIR);
  45.     exit(EXIT_FAILURE);
  46.   }
  47.   while (argc--)
  48.     print_arrays_for(*argv++);
  49.   exit(EXIT_SUCCESS);
  50. }
  51. void
  52. print_array(FILE *f, const char *set, const char *name, int n)
  53. {
  54.   int i;
  55.   char val[100];
  56.   printf("uchar %s_%s[] = {n", name, set);
  57.   p = buf;
  58.   *buf = '';
  59.   for (i = 0; i < n; ++i)
  60.   {
  61.     /* get a word from f */
  62.     endptr = p;
  63.     for (;;)
  64.     {
  65.       while (isspace(*endptr))
  66.         ++endptr;
  67.       if (*endptr && *endptr != '#')    /* not comment */
  68.         break;
  69.       if ((fgets(buf, sizeof(buf), f)) == NULL)
  70.         return;         /* XXX: break silently */
  71.       endptr = buf;
  72.     }
  73.     p = val;
  74.     while (!isspace(*endptr))
  75.       *p++ = *endptr++;
  76.     *p = '';
  77.     p = endptr;
  78.     /* write the value out */
  79.     if (i == 0 || i % ROW_LEN == n % ROW_LEN)
  80.       printf("  ");
  81.     printf("%3d", (unsigned char) strtol(val, (char **) NULL, 16));
  82.     if (i < n - 1)
  83.       printf(",");
  84.     if ((i+1) % ROW_LEN == n % ROW_LEN)
  85.       printf("n");
  86.   }
  87.   printf("};nn");
  88. }
  89. void
  90. print_arrays_for(char *set)
  91. {
  92.   FILE *f;
  93.   sprintf(buf, "%s.conf", set);
  94.   if ((f = fopen(buf, "r")) == NULL) {
  95.     fprintf(stderr, "%s: can't read conf file for charset %sn", prog, set);
  96.     exit(EXIT_FAILURE);
  97.   }
  98.   printf("
  99. /* The %s character set.  Generated automatically by configure andn
  100.  * the %s programn
  101.  */nn",
  102.  set, prog);
  103.   /* it would be nice if this used the code in mysys/charset.c, but... */
  104.   print_array(f, set, "ctype",      CTYPE_TABLE_SIZE);
  105.   print_array(f, set, "to_lower",   TO_LOWER_TABLE_SIZE);
  106.   print_array(f, set, "to_upper",   TO_UPPER_TABLE_SIZE);
  107.   print_array(f, set, "sort_order", SORT_ORDER_TABLE_SIZE);
  108.   printf("n");
  109.   fclose(f);
  110.   return;
  111. }