1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 19:56:38 +02:00
Files
anope/src/wildcard.cpp
T
rburchell 010c774bc2 Revert "Patch from DukePyrolator to replace all calls to match_wild() and match_wild_nocase() to use Anope::Match() instead. Also changes line-endings on wildcard.cpp to Unix-style, as well as fixes a small compile warning in language.c."
This reverts commit fcab9857f55567f10eaecbd6b26ee96f0f549d65.

This isn't a simple sed operation, the order of arguments changed, so this would break everything using it.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2081 5417fbe8-f217-4b02-8779-1006273d7864
2009-02-16 09:17:24 +00:00

82 lines
1.3 KiB
C++

#include "services.h"
static bool match_internal(const unsigned char *str, const unsigned char *mask, bool case_sensitive)
{
unsigned char *cp = NULL, *mp = NULL;
unsigned char* string = (unsigned char*)str;
unsigned char* wild = (unsigned char*)mask;
while ((*string) && (*wild != '*'))
{
if (case_sensitive)
{
if (*wild != *string && *wild != '?')
return false;
}
else
{
if (tolower(*wild) != tolower(*string) && *wild != '?')
return false;
}
wild++;
string++;
}
while (*string)
{
if (*wild == '*')
{
if (!*++wild)
{
return 1;
}
mp = wild;
cp = string+1;
}
else
{
if (case_sensitive)
{
if (*wild == *string || *wild == '?')
{
wild++;
string++;
}
else
{
wild = mp;
string = cp++;
}
}
else
{
if (tolower(*wild) == tolower(*string) || *wild == '?')
{
wild++;
string++;
}
else
{
wild = mp;
string = cp++;
}
}
}
}
while (*wild == '*')
{
wild++;
}
return !*wild;
}
CoreExport bool Anope::Match(const std::string &str, const std::string &mask, bool case_sensitive)
{
return match_internal((const unsigned char *)str.c_str(), (const unsigned char *)mask.c_str(), case_sensitive);
}