Local-MT-Extension/ExampleExtension/ExtensionImpl.cpp

34 lines
1.8 KiB
C++
Raw Normal View History

2018-10-12 03:23:59 +08:00
#include "extension.h"
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo);
/**
* You shouldn't mess with this or even look at it unless you're certain you know what you're doing.
* Param sentence: pointer to sentence received by Textractor (UTF-16).
2019-02-14 07:28:23 +08:00
* You should not write beyond the end of this sentence. If you want Textractor to receive a larger sentence, copy it into your own buffer and return that.
2018-10-12 03:23:59 +08:00
* Please allocate the buffer using HeapAlloc() and not new[] or malloc() or something else: Textractor uses HeapFree() to free it.
2019-02-14 07:28:23 +08:00
* Param miscInfo: pointer to array containing misc info about the sentence. End of array is marked with name being nullptr.
2018-10-12 03:23:59 +08:00
* Return value: pointer to sentence Textractor takes for future processing and display. If nullptr, Textractor will destroy the sentence.
* Return 'sentence' unless you created a new sentence/buffer as mentioned above.
* Textractor will display the sentence after all extensions have had a chance to process and/or modify it.
* THIS FUNCTION MAY BE RUN SEVERAL TIMES CONCURRENTLY: PLEASE ENSURE THAT IT IS THREAD SAFE!
*/
2019-01-24 21:14:30 +08:00
extern "C" __declspec(dllexport) wchar_t* OnNewSentence(wchar_t* sentence, const InfoForExtension* miscInfo)
2018-10-12 03:23:59 +08:00
{
try
{
std::wstring sentenceStr(sentence);
2019-01-24 21:14:30 +08:00
int origLength = sentenceStr.size();
2018-10-12 03:23:59 +08:00
if (ProcessSentence(sentenceStr, SentenceInfo{ miscInfo }))
{
2019-01-31 03:50:54 +08:00
if (sentenceStr.empty()) return nullptr;
2018-10-12 03:23:59 +08:00
// No need to worry about freeing this: Textractor does it for you.
2019-01-24 21:14:30 +08:00
wchar_t* newSentence = sentenceStr.size() > origLength ? (wchar_t*)HeapAlloc(GetProcessHeap(), 0, (sentenceStr.size() + 1) * sizeof(wchar_t)) : sentence;
2018-10-12 03:23:59 +08:00
wcscpy_s(newSentence, sentenceStr.size() + 1, sentenceStr.c_str());
return newSentence;
}
else return sentence;
}
catch (SKIP) { return nullptr; }
}