diff --git a/src/NCollection/NCollection_UtfString.cxx b/src/NCollection/NCollection_UtfString.cxx index 8d845b0fd2..07556e2c93 100644 --- a/src/NCollection/NCollection_UtfString.cxx +++ b/src/NCollection/NCollection_UtfString.cxx @@ -19,6 +19,7 @@ #include +#if !defined(__ANDROID__) //======================================================================= //function : ~NCollection_UtfStringTool //purpose : @@ -87,3 +88,4 @@ bool NCollection_UtfStringTool::ToLocale (const wchar_t* theWideString, } return true; } +#endif diff --git a/src/NCollection/NCollection_UtfString.lxx b/src/NCollection/NCollection_UtfString.lxx index c11070040b..24b6bb08c7 100755 --- a/src/NCollection/NCollection_UtfString.lxx +++ b/src/NCollection/NCollection_UtfString.lxx @@ -272,6 +272,7 @@ void NCollection_UtfString::FromUnicode (const TypeFrom* theStringU strFree (anOldBuffer); } +#if !defined(__ANDROID__) //! Auxiliary convertion tool. class NCollection_UtfStringTool { @@ -293,6 +294,7 @@ public: private: wchar_t* myWideBuffer; //!< temporary variable }; +#endif // ======================================================================= // function : FromLocale @@ -302,6 +304,10 @@ template inline void NCollection_UtfString::FromLocale (const char* theString, const Standard_Integer theLength) { +#if defined(__ANDROID__) + // no locales on Android + FromUnicode (theString, theLength); +#else NCollection_UtfStringTool aConvertor; wchar_t* aWideBuffer = aConvertor.FromLocale (theString); if (aWideBuffer == NULL) @@ -310,6 +316,7 @@ void NCollection_UtfString::FromLocale (const char* theString, return; } FromUnicode (aWideBuffer, theLength); +#endif } // ======================================================================= @@ -320,8 +327,20 @@ template inline bool NCollection_UtfString::ToLocale (char* theBuffer, const Standard_Integer theSizeBytes) const { +#if defined(__ANDROID__) + // no locales on Android + NCollection_UtfString anUtf8Copy (myString, myLength); + const Standard_Integer aSize = anUtf8Copy.Size() + 1; + if (theSizeBytes < aSize) + { + return false; + } + std::memcpy (theBuffer, anUtf8Copy.ToCString(), (Standard_Size )aSize); + return true; +#else NCollection_UtfString aWideCopy (myString, myLength); return NCollection_UtfStringTool::ToLocale (aWideCopy.ToCString(), theBuffer, theSizeBytes); +#endif } // =======================================================================