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

MySQL数据库

开发平台:

Visual C++

  1. /* Init cclasses array from ctypes */
  2. #include <my_global.h>
  3. #include <m_ctype.h>
  4. #include <m_string.h>
  5. #include "cclass.h"
  6. static bool regex_inited=0;
  7. void my_regex_init(CHARSET_INFO *cs)
  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 (my_isalnum(cs,i))
  19. buff[CCLASS_ALNUM][count[CCLASS_ALNUM]++]=(char) i;
  20.       if (my_isalpha(cs,i))
  21. buff[CCLASS_ALPHA][count[CCLASS_ALPHA]++]=(char) i;
  22.       if (my_iscntrl(cs,i))
  23. buff[CCLASS_CNTRL][count[CCLASS_CNTRL]++]=(char) i;
  24.       if (my_isdigit(cs,i))
  25. buff[CCLASS_DIGIT][count[CCLASS_DIGIT]++]=(char) i;
  26.       if (my_isgraph(cs,i))
  27. buff[CCLASS_GRAPH][count[CCLASS_GRAPH]++]=(char) i;
  28.       if (my_islower(cs,i))
  29. buff[CCLASS_LOWER][count[CCLASS_LOWER]++]=(char) i;
  30.       if (my_isprint(cs,i))
  31. buff[CCLASS_PRINT][count[CCLASS_PRINT]++]=(char) i;
  32.       if (my_ispunct(cs,i))
  33. buff[CCLASS_PUNCT][count[CCLASS_PUNCT]++]=(char) i;
  34.       if (my_isspace(cs,i))
  35. buff[CCLASS_SPACE][count[CCLASS_SPACE]++]=(char) i;
  36.       if (my_isupper(cs,i))
  37. buff[CCLASS_UPPER][count[CCLASS_UPPER]++]=(char) i;
  38.       if (my_isxdigit(cs,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.       if (!tmp)
  48.       {
  49. /*
  50.   This is very unlikely to happen as this function is called once
  51.   at program startup
  52. */
  53. fprintf(stderr,
  54. "Fatal error: Can't allocate memory in regex_initn");
  55. exit(1);
  56.       }
  57.       memcpy(tmp,buff[i],count[i]*sizeof(char));
  58.       tmp[count[i]]=0;
  59.       cclasses[i].chars=tmp;
  60.     }
  61.   }
  62.   return;
  63. }
  64. void my_regex_end()
  65. {
  66.   if (regex_inited)
  67.   {
  68.     int i;
  69.     for (i=0; i < CCLASS_LAST ; i++)
  70.       free((char*) cclasses[i].chars);
  71.     regex_inited=0;
  72.   }
  73. }