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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library 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 GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* Funktions for comparing with wild-cards */
  18. #include "mysys_priv.h"
  19. /* Test if a string is "comparable" to a wild-card string */
  20. /* returns 0 if the strings are "comparable" */
  21. char wild_many='*';
  22. char wild_one='?';
  23. char wild_prefix=0;
  24. int wild_compare(register const char *str, register const char *wildstr)
  25. {
  26.   reg3 int flag;
  27.   DBUG_ENTER("wild_compare");
  28.   while (*wildstr)
  29.   {
  30.     while (*wildstr && *wildstr != wild_many && *wildstr != wild_one)
  31.     {
  32.       if (*wildstr == wild_prefix && wildstr[1])
  33. wildstr++;
  34.       if (*wildstr++ != *str++) DBUG_RETURN(1);
  35.     }
  36.     if (! *wildstr ) DBUG_RETURN (*str != 0);
  37.     if (*wildstr++ == wild_one)
  38.     {
  39.       if (! *str++) DBUG_RETURN (1); /* One char; skipp */
  40.     }
  41.     else
  42.     { /* Found '*' */
  43.       if (!*wildstr) DBUG_RETURN(0); /* '*' as last char: OK */
  44.       flag=(*wildstr != wild_many && *wildstr != wild_one);
  45.       do
  46.       {
  47. if (flag)
  48. {
  49.   char cmp;
  50.   if ((cmp= *wildstr) == wild_prefix && wildstr[1])
  51.     cmp=wildstr[1];
  52.   while (*str && *str != cmp)
  53.     str++;
  54.   if (!*str) DBUG_RETURN (1);
  55. }
  56. if (wild_compare(str,wildstr) == 0) DBUG_RETURN (0);
  57.       } while (*str++ && wildstr[0] != wild_many);
  58.       DBUG_RETURN(1);
  59.     }
  60.   }
  61.   DBUG_RETURN (*str != '');
  62. } /* wild_compare */