reginit.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Init cclasses array from ctypes */
  2. #include <global.h>
  3. #include <m_ctype.h>
  4. #include <m_string.h>
  5. #include "cclass.h"
  6. static bool regex_inited=0;
  7. void regex_init()
  8. {
  9.   char buff[CCLASS_LAST][256];
  10.   int  count[CCLASS_LAST];
  11.   uint i;
  12.   if (!regex_inited)
  13.   {
  14.     regex_inited=1;
  15.     bzero((gptr) &count,sizeof(count));
  16.     for (i=1 ; i<= 255; i++)
  17.     {
  18.       if (isalnum(i))
  19. buff[CCLASS_ALNUM][count[CCLASS_ALNUM]++]=(char) i;
  20.       if (isalpha(i))
  21. buff[CCLASS_ALPHA][count[CCLASS_ALPHA]++]=(char) i;
  22.       if (iscntrl(i))
  23. buff[CCLASS_CNTRL][count[CCLASS_CNTRL]++]=(char) i;
  24.       if (isdigit(i))
  25. buff[CCLASS_DIGIT][count[CCLASS_DIGIT]++]=(char) i;
  26.       if (isgraph(i))
  27. buff[CCLASS_GRAPH][count[CCLASS_GRAPH]++]=(char) i;
  28.       if (islower(i))
  29. buff[CCLASS_LOWER][count[CCLASS_LOWER]++]=(char) i;
  30.       if (isprint(i))
  31. buff[CCLASS_PRINT][count[CCLASS_PRINT]++]=(char) i;
  32.       if (ispunct(i))
  33. buff[CCLASS_PUNCT][count[CCLASS_PUNCT]++]=(char) i;
  34.       if (isspace(i))
  35. buff[CCLASS_SPACE][count[CCLASS_SPACE]++]=(char) i;
  36.       if (isupper(i))
  37. buff[CCLASS_UPPER][count[CCLASS_UPPER]++]=(char) i;
  38.       if (isxdigit(i))
  39. buff[CCLASS_XDIGIT][count[CCLASS_XDIGIT]++]=(char) i;
  40.     }
  41.     buff[CCLASS_BLANK][0]=' ';
  42.     buff[CCLASS_BLANK][1]='t';
  43.     count[CCLASS_BLANK]=2;
  44.     for (i=0; i < CCLASS_LAST ; i++)
  45.     {
  46.       char *tmp=(char*) malloc(count[i]+1);
  47.       memcpy(tmp,buff[i],count[i]*sizeof(char));
  48.       tmp[count[i]]=0;
  49.       cclasses[i].chars=tmp;
  50.     }
  51.   }
  52.   return;
  53. }
  54. void regex_end()
  55. {
  56.   if (regex_inited)
  57.   {
  58.     int i;
  59.     for (i=0; i < CCLASS_LAST ; i++)
  60.       free(cclasses[i].chars);
  61.     regex_inited=0;
  62.   }
  63. }