]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/match.c
Update #include's: remove unused and add missing ones
[ngircd-alex.git] / src / ngircd / match.c
index 75bf4358395d27fa21b8a9c213c307a82a2196d6..ce454bd34d2a52a4fd3103d2156076a0b7ba3fcf 100644 (file)
  * Wildcard pattern matching
  */
 
-#include "imp.h"
 #include <assert.h>
 #include <string.h>
 
-#include "exp.h"
-#include "match.h"
 #include "defines.h"
 #include "tool.h"
 
-
 /*
  * The pattern matching functions [Matche(), Matche_After_Star()] are based
  * on code of J. Kercheval. Version 1.1 has been released on 1991-03-12 as
  * "public domain": <http://c.snippets.org/snip_lister.php?fname=match.c>
  */
 
-
 static int Matche PARAMS(( const char *p, const char *t ));
 static int Matche_After_Star PARAMS(( const char *p, const char *t ));
 
-
 #define MATCH_PATTERN  6       /**< bad pattern */
 #define MATCH_LITERAL  5       /**< match failure on literal match */
 #define MATCH_RANGE    4       /**< match failure on [..] construct */
@@ -44,7 +38,6 @@ static int Matche_After_Star PARAMS(( const char *p, const char *t ));
 #define MATCH_END      2       /**< premature end of pattern string */
 #define MATCH_VALID    1       /**< valid match */
 
-
 /**
  * Match string with pattern.
  *
@@ -55,12 +48,10 @@ static int Matche_After_Star PARAMS(( const char *p, const char *t ));
 GLOBAL bool
 Match( const char *Pattern, const char *String )
 {
-       /* Pattern mit String vergleichen */
        if( Matche( Pattern, String ) == MATCH_VALID ) return true;
        else return false;
 } /* Match */
 
-
 /**
  * Match string with pattern case-insensitive.
  *
@@ -77,7 +68,6 @@ MatchCaseInsensitive(const char *Pattern, const char *String)
        return Match(Pattern, ngt_LowerStr(haystack));
 } /* MatchCaseInsensitive */
 
-
 /**
  * Match string with pattern case-insensitive.
  *
@@ -106,15 +96,9 @@ MatchCaseInsensitiveList(const char *Pattern, const char *String,
        return false;
 } /* MatchCaseInsensitive */
 
-
 static int
 Matche( const char *p, const char *t )
 {
-       register char range_start, range_end;
-       bool invert;
-       bool member_match;
-       bool loop;
-
        for( ; *p; p++, t++ )
        {
                /* if this is the end of the text then this is the end of the match */
@@ -132,118 +116,7 @@ Matche( const char *p, const char *t )
                        case '*':       /* multiple any character match */
                                return Matche_After_Star( p, t );
 
-                       case '[':       /* [..] construct, single member/exclusion character match */
-                               /* move to beginning of range */
-                               p++;
-
-                               /* check if this is a member match or exclusion match */
-                               invert = false;
-                               if( *p == '!' || *p == '^' )
-                               {
-                                       invert = true;
-                                       p++;
-                               }
-
-                               /* if closing bracket here or at range start then we have a malformed pattern */
-                               if ( *p == ']' ) return MATCH_PATTERN;
-
-                               member_match = false;
-                               loop = true;
-
-                               while( loop )
-                               {
-                                       /* if end of construct then loop is done */
-                                       if( *p == ']' )
-                                       {
-                                               loop = false;
-                                               continue;
-                                       }
-
-                                       /* matching a '!', '^', '-', '\' or a ']' */
-                                       if( *p == '\\' ) range_start = range_end = *++p;
-                                       else  range_start = range_end = *p;
-
-                                       /* if end of pattern then bad pattern (Missing ']') */
-                                       if( ! *p ) return MATCH_PATTERN;
-
-                                       /* check for range bar */
-                                       if( *++p == '-' )
-                                       {
-                                               /* get the range end */
-                                               range_end = *++p;
-
-                                               /* if end of pattern or construct then bad pattern */
-                                               if( range_end == '\0' || range_end == ']' ) return MATCH_PATTERN;
-
-                                               /* special character range end */
-                                               if( range_end == '\\' )
-                                               {
-                                                       range_end = *++p;
-
-                                                       /* if end of text then we have a bad pattern */
-                                                       if ( ! range_end ) return MATCH_PATTERN;
-                                               }
-
-                                               /* move just beyond this range */
-                                               p++;
-                                       }
-
-                                       /* if the text character is in range then match found. make sure the range
-                                        * letters have the proper relationship to one another before comparison */
-                                       if( range_start < range_end )
-                                       {
-                                               if( *t >= range_start && *t <= range_end )
-                                               {
-                                                       member_match = true;
-                                                       loop = false;
-                                               }
-                                       }
-                                       else
-                                       {
-                                               if( *t >= range_end && *t <= range_start )
-                                               {
-                                                       member_match = true;
-                                                       loop = false;
-                                               }
-                                       }
-                               }
-
-                               /* if there was a match in an exclusion set then no match */
-                               /* if there was no match in a member set then no match */
-                               if(( invert && member_match ) || ! ( invert || member_match )) return MATCH_RANGE;
-
-                               /* if this is not an exclusion then skip the rest of the [...]
-                                * construct that already matched. */
-                               if( member_match )
-                               {
-                                       while( *p != ']' )
-                                       {
-                                               /* bad pattern (Missing ']') */
-                                               if( ! *p ) return MATCH_PATTERN;
-
-                                               /* skip exact match */
-                                               if( *p == '\\' )
-                                               {
-                                                       p++;
-
-                                                       /* if end of text then we have a bad pattern */
-                                                       if( ! *p ) return MATCH_PATTERN;
-                                               }
-
-                                               /* move to next pattern char */
-                                               p++;
-                                       }
-                               }
-                               break;
-                       case '\\':      /* next character is quoted and must match exactly */
-                               /* move pattern pointer to quoted char and fall through */
-                               p++;
-
-                               /* if end of text then we have a bad pattern */
-                               if( ! *p ) return MATCH_PATTERN;
-
-                               /* must match this character exactly */
-                       default:
+                       default:        /* must match this character exactly */
                                if( *p != *t ) return MATCH_LITERAL;
                }
        }
@@ -253,7 +126,6 @@ Matche( const char *p, const char *t )
        else return MATCH_VALID;
 } /* Matche */
 
-
 static int
 Matche_After_Star( const char *p, const char *t )
 {
@@ -303,5 +175,4 @@ Matche_After_Star( const char *p, const char *t )
        return match;
 } /* Matche_After_Star */
 
-
 /* -eof- */