home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / mf_wcomp.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  69 lines

  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.  
  18. /* Funktions for comparing with wild-cards */
  19.  
  20. #include "mysys_priv.h"
  21.  
  22.     /* Test if a string is "comparable" to a wild-card string */
  23.     /* returns 0 if the strings are "comparable" */
  24.  
  25. char wild_many='*';
  26. char wild_one='?';
  27. char wild_prefix=0;
  28.  
  29. int wild_compare(register const char *str, register const char *wildstr)
  30. {
  31.   reg3 int flag;
  32.   DBUG_ENTER("wild_compare");
  33.  
  34.   while (*wildstr)
  35.   {
  36.     while (*wildstr && *wildstr != wild_many && *wildstr != wild_one)
  37.     {
  38.       if (*wildstr == wild_prefix && wildstr[1])
  39.     wildstr++;
  40.       if (*wildstr++ != *str++) DBUG_RETURN(1);
  41.     }
  42.     if (! *wildstr ) DBUG_RETURN (*str != 0);
  43.     if (*wildstr++ == wild_one)
  44.     {
  45.       if (! *str++) DBUG_RETURN (1);    /* One char; skipp */
  46.     }
  47.     else
  48.     {                        /* Found '*' */
  49.       if (!*wildstr) DBUG_RETURN(0);        /* '*' as last char: OK */
  50.       flag=(*wildstr != wild_many && *wildstr != wild_one);
  51.       do
  52.       {
  53.     if (flag)
  54.     {
  55.       char cmp;
  56.       if ((cmp= *wildstr) == wild_prefix && wildstr[1])
  57.         cmp=wildstr[1];
  58.       while (*str && *str != cmp)
  59.         str++;
  60.       if (!*str) DBUG_RETURN (1);
  61.     }
  62.     if (wild_compare(str,wildstr) == 0) DBUG_RETURN (0);
  63.       } while (*str++ && wildstr[0] != wild_many);
  64.       DBUG_RETURN(1);
  65.     }
  66.   }
  67.   DBUG_RETURN (*str != '\0');
  68. } /* wild_compare */
  69.