Textractor_test/extensions/removerepeat/removerepeat.cpp

61 lines
1.7 KiB
C++
Raw Normal View History

2018-11-04 11:26:27 +08:00
#include "../extension.h"
bool RemoveRepeatedChars(std::wstring& sentence)
{
2018-09-23 03:45:54 +08:00
int repeatNumber = 0;
wchar_t prevChar = sentence[0];
2018-10-31 09:21:21 +08:00
for (auto c : sentence)
if (c == prevChar) repeatNumber++;
else break;
if (repeatNumber == 1) return false;
for (int i = 0; i < sentence.size(); i += repeatNumber)
for (int j = i; j < sentence.size(); ++j)
if (sentence[j] != sentence[i])
if ((j - i) % repeatNumber != 0) return false;
else break;
2018-09-13 14:50:03 +08:00
std::wstring newSentence = L"";
for (int i = 0; i < sentence.size(); ++i) if (i % repeatNumber == 0) newSentence.push_back(sentence[i]);
sentence = newSentence;
return true;
}
bool RemoveCyclicRepeats(std::wstring& sentence)
{
2018-10-12 02:29:11 +08:00
if (sentence == L"") Skip();
2018-09-23 03:45:54 +08:00
int junkLength = 0;
2018-09-13 14:50:03 +08:00
wchar_t junk[2000] = {};
while (wcsstr(sentence.c_str() + junkLength, junk))
{
2018-09-13 14:50:03 +08:00
junk[junkLength] = sentence[junkLength];
if (++junkLength >= 2000) return false;
}
2018-09-13 14:50:03 +08:00
if (--junkLength >= 5) // If the first 5 characters appear later on, there's probably a repetition issue.
{
2018-09-13 14:50:03 +08:00
sentence = std::wstring(sentence.c_str() + junkLength);
RemoveCyclicRepeats(sentence);
return true;
}
return false;
}
2018-09-23 03:45:54 +08:00
bool RemoveRepeatedSentences(std::wstring& sentence, int64_t handle)
{
2018-11-05 10:19:00 +08:00
static std::unordered_map<int64_t, std::unordered_set<std::wstring>> seenSentences;
static std::mutex m;
std::lock_guard<std::mutex> l(m);
2018-11-05 10:19:00 +08:00
if (seenSentences[handle].count(sentence)) Skip();
seenSentences[handle].insert(sentence);
return false;
}
2018-09-23 03:08:31 +08:00
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
{
2018-09-23 03:08:31 +08:00
if (sentenceInfo["hook address"] == -1) return false;
2018-09-13 14:50:03 +08:00
bool ret = false;
ret |= RemoveRepeatedChars(sentence);
ret |= RemoveCyclicRepeats(sentence);
2018-09-23 03:08:31 +08:00
ret |= RemoveRepeatedSentences(sentence, sentenceInfo["text handle"]);
2018-09-13 14:50:03 +08:00
return ret;
}