Textractor_test/extensions/regexfilter.cpp

65 lines
1.4 KiB
C++
Raw Normal View History

#include "extension.h"
#include "ui_regexfilter.h"
#include <QTimer>
2019-02-28 00:33:17 +08:00
extern const char* REGEX_FILTER;
extern const char* INVALID_REGEX;
extern const char* CURRENT_FILTER;
std::wregex regex;
2019-01-24 02:59:34 +08:00
std::shared_mutex m;
struct : QMainWindow
{
2018-12-22 04:11:12 +08:00
void launch()
{
ui.setupUi(this);
connect(ui.input, &QLineEdit::textEdited, [=](QString newRegex)
{
std::lock_guard l(m);
try { regex = newRegex.toStdWString(); }
2019-06-09 19:33:26 +08:00
catch (std::regex_error) { return ui.output->setText(INVALID_REGEX); }
ui.output->setText(QString(CURRENT_FILTER).arg(newRegex));
});
setWindowTitle(REGEX_FILTER);
show();
}
Ui::FilterWindow ui;
}*window = nullptr;
BOOL WINAPI DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
{
2018-12-19 01:15:18 +08:00
QTimer::singleShot(0, []
{
std::lock_guard l(m);
2018-12-22 04:11:12 +08:00
(window = new std::remove_pointer_t<decltype(window)>)->launch();
2018-12-19 01:15:18 +08:00
});
}
break;
case DLL_PROCESS_DETACH:
{
if (lpReserved == NULL) // https://blogs.msdn.microsoft.com/oldnewthing/20120105-00/?p=8683
{
2018-12-19 01:15:18 +08:00
std::lock_guard l(m);
delete window;
window = nullptr;
}
}
break;
}
return TRUE;
}
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
{
2019-01-24 02:59:34 +08:00
std::shared_lock l(m);
2019-02-22 02:09:44 +08:00
if (sentenceInfo["text number"] == 0) return false;
sentence = std::regex_replace(sentence, regex, L"");
return true;
}