dftables.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dftables.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:01:43  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*************************************************
  10. *      Perl-Compatible Regular Expressions       *
  11. *************************************************/
  12. /*
  13. PCRE is a library of functions to support regular expressions whose syntax
  14. and semantics are as close as possible to those of the Perl 5 language.
  15. Written by: Philip Hazel <ph10@cam.ac.uk>
  16.            Copyright (c) 1997-2001 University of Cambridge
  17. -----------------------------------------------------------------------------
  18. Permission is granted to anyone to use this software for any purpose on any
  19. computer system, and to redistribute it freely, subject to the following
  20. restrictions:
  21. 1. This software is distributed in the hope that it will be useful,
  22.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  24. 2. The origin of this software must not be misrepresented, either by
  25.    explicit claim or by omission.
  26. 3. Altered versions must be plainly marked as such, and must not be
  27.    misrepresented as being the original software.
  28. 4. If PCRE is embedded in any software that is released under the GNU
  29.    General Purpose Licence (GPL), then the terms of that licence shall
  30.    supersede any condition above with which it is incompatible.
  31. -----------------------------------------------------------------------------
  32. See the file Tech.Notes for some information on the internals.
  33. */
  34. /* This is a support program to generate the file chartables.c, containing
  35. character tables of various kinds. They are built according to the default C
  36. locale and used as the default tables by PCRE. Now that pcre_maketables is
  37. a function visible to the outside world, we make use of its code from here in
  38. order to be consistent. */
  39. #include <ctype.h>
  40. #include <stdio.h>
  41. #include <string.h>
  42. #include "internal.h"
  43. #define DFTABLES          /* maketables.c notices this */
  44. #include "maketables.c"
  45. int main(void)
  46. {
  47. int i;
  48. const unsigned char *tables = pcre_maketables();
  49. printf(
  50.   "/*************************************************n"
  51.   "*      Perl-Compatible Regular Expressions       *n"
  52.   "*************************************************/nn"
  53.   "/* This file is automatically written by the dftables auxiliary n"
  54.   "program. If you edit it by hand, you might like to edit the Makefile to n"
  55.   "prevent its ever being regenerated.nn"
  56.   "This file is #included in the compilation of pcre.c to build the defaultn"
  57.   "character tables which are used when no tables are passed to the compilen"
  58.   "function. */nn"
  59.   "static unsigned char pcre_default_tables[] = {nn"
  60.   "/* This table is a lower casing table. */nn");
  61. printf("  ");
  62. for (i = 0; i < 256; i++)
  63.   {
  64.   if ((i & 7) == 0 && i != 0) printf("n  ");
  65.   printf("%3d", *tables++);
  66.   if (i != 255) printf(",");
  67.   }
  68. printf(",nn");
  69. printf("/* This table is a case flipping table. */nn");
  70. printf("  ");
  71. for (i = 0; i < 256; i++)
  72.   {
  73.   if ((i & 7) == 0 && i != 0) printf("n  ");
  74.   printf("%3d", *tables++);
  75.   if (i != 255) printf(",");
  76.   }
  77. printf(",nn");
  78. printf(
  79.   "/* This table contains bit maps for various character classes.n"
  80.   "Each map is 32 bytes long and the bits run from the leastn"
  81.   "significant end of each byte. The classes that have their ownn"
  82.   "maps are: space, xdigit, digit, upper, lower, word, graphn"
  83.   "print, punct, and cntrl. Other classes are built from combinations. */nn");
  84. printf("  ");
  85. for (i = 0; i < cbit_length; i++)
  86.   {
  87.   if ((i & 7) == 0 && i != 0)
  88.     {
  89.     if ((i & 31) == 0) printf("n");
  90.     printf("n  ");
  91.     }
  92.   printf("0x%02x", *tables++);
  93.   if (i != cbit_length - 1) printf(",");
  94.   }
  95. printf(",nn");
  96. printf(
  97.   "/* This table identifies various classes of character by individual bits:n"
  98.   "  0x%02x   white space charactern"
  99.   "  0x%02x   lettern"
  100.   "  0x%02x   decimal digitn"
  101.   "  0x%02x   hexadecimal digitn"
  102.   "  0x%02x   alphanumeric or '_'n"
  103.   "  0x%02x   regular expression metacharacter or binary zeron*/nn",
  104.   ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word,
  105.   ctype_meta);
  106. printf("  ");
  107. for (i = 0; i < 256; i++)
  108.   {
  109.   if ((i & 7) == 0 && i != 0)
  110.     {
  111.     printf(" /* ");
  112.     if (isprint(i-8)) printf(" %c -", i-8);
  113.       else printf("%3d-", i-8);
  114.     if (isprint(i-1)) printf(" %c ", i-1);
  115.       else printf("%3d", i-1);
  116.     printf(" */n  ");
  117.     }
  118.   printf("0x%02x", *tables++);
  119.   if (i != 255) printf(",");
  120.   }
  121. printf("};/* ");
  122. if (isprint(i-8)) printf(" %c -", i-8);
  123.   else printf("%3d-", i-8);
  124. if (isprint(i-1)) printf(" %c ", i-1);
  125.   else printf("%3d", i-1);
  126. printf(" */nn/* End of chartables.c */n");
  127. return 0;
  128. }
  129. /* End of dftables.c */