diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-10-21 13:49:35 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-10-21 13:49:35 -0400 |
commit | e32227e90b8911200bfd103ff466ddb9231c6619 (patch) | |
tree | ab8052cbb14066c95c88f11d621b3239d8154913 /indra/newview/lltranslate.h | |
parent | 1c58b3b18ea732e0032e70ae6dc9c8ec2f2834b4 (diff) |
SH-2557 WIP - some cleanup, added error message to try to isolate causes of translation failure
Diffstat (limited to 'indra/newview/lltranslate.h')
-rwxr-xr-x[-rw-r--r--] | indra/newview/lltranslate.h | 39 |
1 files changed, 3 insertions, 36 deletions
diff --git a/indra/newview/lltranslate.h b/indra/newview/lltranslate.h index e85a42e878..c7d6eac33f 100644..100755 --- a/indra/newview/lltranslate.h +++ b/indra/newview/lltranslate.h @@ -43,8 +43,8 @@ public : { } - virtual void handleResponse(const std::string &translation, const std::string &recognized_lang) {}; - virtual void handleFailure() {}; + virtual void handleResponse(const std::string &translation, const std::string &recognized_lang) = 0; + virtual void handleFailure() = 0; public: ~TranslationReceiver() @@ -54,40 +54,7 @@ public : virtual void completedRaw( U32 status, const std::string& reason, const LLChannelDescriptors& channels, - const LLIOPipe::buffer_ptr_t& buffer) - { - if (200 <= status && status < 300) - { - LLBufferStream istr(channels, buffer.get()); - std::stringstream strstrm; - strstrm << istr.rdbuf(); - - const std::string result = strstrm.str(); - std::string translation; - std::string detected_language; - - if (!parseGoogleTranslate(result, translation, detected_language)) - { - handleFailure(); - return; - } - - // Fix up the response - LLStringUtil::replaceString(translation, "<", "<"); - LLStringUtil::replaceString(translation, ">",">"); - LLStringUtil::replaceString(translation, ""","\""); - LLStringUtil::replaceString(translation, "'","'"); - LLStringUtil::replaceString(translation, "&","&"); - LLStringUtil::replaceString(translation, "'","'"); - - handleResponse(translation, detected_language); - } - else - { - LL_WARNS("Translate") << "HTTP request for Google Translate failed with status " << status << ", reason: " << reason << LL_ENDL; - handleFailure(); - } - } + const LLIOPipe::buffer_ptr_t& buffer); protected: const std::string m_toLang; |