mirror of
https://github.com/silentbreaksec/Throwback
synced 2026-06-08 17:25:56 +00:00
147 lines
4.4 KiB
C++
147 lines
4.4 KiB
C++
/**
|
|
* Copyright 2008-2009 Cheng Shi. All rights reserved.
|
|
* Email: shicheng107@hotmail.com
|
|
*/
|
|
|
|
#ifndef REGEXP_H
|
|
#define REGEXP_H
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
#pragma warning(push)
|
|
#pragma warning(disable: 6385 6011 4127)
|
|
#include ".\ThirdParty\ATLRegExp\atlrx.h"
|
|
#pragma warning(pop)
|
|
|
|
/*
|
|
* Parameters
|
|
* [in] regExp: Value of type string which is the input regular expression.
|
|
* [in] caseSensitive: Value of type bool which indicate whether the parse is case sensitive.
|
|
* [in] groupCount: Value of type int which is the group count of the regular expression.
|
|
* [in] source: Value of type string reference which is the source to parse.
|
|
* [out] result: Value of type vecotr of strings which is the output of the parse.
|
|
* [in] allowDuplicate: Value of type bool which indicates whether duplicate items are added to the output result.
|
|
*
|
|
* Return Value
|
|
* Returns true if the function succeeds, or false otherwise.
|
|
*
|
|
* Remarks
|
|
* The output result is devided into groups. User should get the groups according to the group count. For example:
|
|
* 1. RegExp = L"{ab}", source = L"abcabe", then result = L"ab", L"ab".
|
|
* 2. RegExp = L"{ab}{cd}", source = L"abcdeabecd", then result = L"ab", L"cd", L"ab", L"cd".
|
|
*/
|
|
inline bool ParseRegExp(const wstring ®Exp, bool caseSensitive, int groupCount, const wstring &source, vector<wstring> &result, bool allowDuplicate = false)
|
|
{
|
|
result.clear();
|
|
if (regExp.size() <= 0)
|
|
{
|
|
return false;
|
|
}
|
|
if (groupCount <= 0)
|
|
{
|
|
return false;
|
|
}
|
|
if (source.size() <= 0)
|
|
{
|
|
return false;
|
|
}
|
|
CAtlRegExp<> re;
|
|
REParseError error = re.Parse(regExp.c_str(), caseSensitive);
|
|
if (error != REPARSE_ERROR_OK)
|
|
{
|
|
return false;
|
|
}
|
|
wchar_t *pSource = new wchar_t[source.size()+1];
|
|
wchar_t *pSourceEnd = pSource + source.size();
|
|
if (pSource == NULL)
|
|
{
|
|
return false;
|
|
}
|
|
wcscpy_s(pSource, source.size()+1, source.c_str());
|
|
BOOL bSucceed = TRUE;
|
|
CAtlREMatchContext<> mc;
|
|
const wchar_t *pFrom = pSource;
|
|
const wchar_t *pTo = NULL;
|
|
while (bSucceed)
|
|
{
|
|
bSucceed = re.Match(pFrom, &mc, &pTo);
|
|
if (bSucceed)
|
|
{
|
|
const wchar_t *pStart = NULL;
|
|
const wchar_t *pEnd = NULL;
|
|
vector<wstring> tempMatch;
|
|
for (int i = 0; i < groupCount; i++)
|
|
{
|
|
mc.GetMatch(i, &pStart, &pEnd);
|
|
if (pStart != NULL && pEnd != NULL)
|
|
{
|
|
wstring match(pStart, pEnd-pStart);
|
|
tempMatch.push_back(match);
|
|
}
|
|
else
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
bool bAdd = true;
|
|
if (!allowDuplicate)
|
|
{
|
|
// Check whether this match already exists in the vector.
|
|
for (vector<wstring>::iterator it = result.begin(); it != result.end();)
|
|
{
|
|
bool bEqual = true;
|
|
for (vector<wstring>::iterator tempMatchIt = tempMatch.begin(); tempMatchIt != tempMatch.end(); tempMatchIt++, it++)
|
|
{
|
|
bool bGroupEqual = true;
|
|
if (caseSensitive)
|
|
{
|
|
bGroupEqual = (wcscmp(it->c_str(), tempMatchIt->c_str()) == 0);
|
|
}
|
|
else
|
|
{
|
|
bGroupEqual = (_wcsicmp(it->c_str(), tempMatchIt->c_str()) == 0);
|
|
}
|
|
if (!bGroupEqual)
|
|
{
|
|
bEqual = false;
|
|
}
|
|
}
|
|
if (bEqual)
|
|
{
|
|
bAdd = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (bAdd)
|
|
{
|
|
for (vector<wstring>::iterator tempMatchIt = tempMatch.begin(); tempMatchIt != tempMatch.end(); tempMatchIt++)
|
|
{
|
|
result.push_back(*tempMatchIt);
|
|
}
|
|
}
|
|
if (pTo < pSourceEnd)
|
|
{
|
|
pFrom = pTo;
|
|
}
|
|
else
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
delete[] pSource;
|
|
|
|
return true;
|
|
}
|
|
|
|
#endif // REGEXP_H
|