The GetUntranslatedString() hack keeps a global copy of all strings, so
that it can return a const reference as wxGetTranslation() return value.
A global wxHashSet instance shared by all threads won't do, even guarded
with a critical section, because it may internally copy values on any
insert and thus invalidate pointers that may still be used on another
thread.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74833
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- Fix build with wxUSE_FFILE==0 (jroemmler).
- Add wxDEPRECATED_MSG() and use it in a few places.
- Return the old file descriptor/pointer from wx(F)File::Detach() (troelsk).
+- _() and wxGetTranslation() are now thread-safe.
All (GUI):
class WXDLLIMPEXP_FWD_BASE wxLog;
+#if wxUSE_INTL
+#include "wx/hashset.h"
+WX_DECLARE_HASH_SET(wxString, wxStringHash, wxStringEqual,
+ wxLocaleUntranslatedStrings);
+#endif
+
+
// ----------------------------------------------------------------------------
// wxThreadSpecificInfo: contains all thread-specific information used by wx
// ----------------------------------------------------------------------------
// logging
bool loggingDisabled;
+#if wxUSE_INTL
+ // Storage for wxTranslations::GetUntranslatedString()
+ wxLocaleUntranslatedStrings untranslatedStrings;
+#endif
+
private:
wxThreadSpecificInfo() : logger(NULL), loggingDisabled(false) {}
};
error message is generated the first time a string is not found; use
wxLogNull to suppress it).
+ This function is thread-safe.
+
@remarks Domains are searched in the last to first order, i.e. catalogs
added later override those added before.
*/
See GNU gettext manual for additional information on plural forms handling.
This method is called by the wxGetTranslation() function and _() macro.
+ This function is thread-safe.
+
@remarks Domains are searched in the last to first order, i.e. catalogs
added later override those added before.
*/
This function calls wxTranslations::GetString().
+ This function is thread-safe.
+
@note This function is not suitable for literal strings in Unicode builds
since the literal strings must be enclosed in wxT() macro which makes
them unrecognised by @c xgettext, and so they are not extracted to
<http://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms>
For a shorter alternative see the wxPLURAL() macro.
- This function calls wxLocale::GetString().
+ This function calls wxTranslation::GetString().
+
+ This function is thread-safe.
@header{wx/intl.h}
*/
also returns the translation of the string for the current locale during
execution.
+ This macro is thread-safe.
+
@header{wx/intl.h}
*/
const wxString& _(const wxString& string);
#include "wx/tokenzr.h"
#include "wx/fontmap.h"
#include "wx/stdpaths.h"
-#include "wx/hashset.h"
+#include "wx/private/threadinfo.h"
#ifdef __WINDOWS__
#include "wx/dynlib.h"
}
-namespace
-{
-WX_DECLARE_HASH_SET(wxString, wxStringHash, wxStringEqual,
- wxLocaleUntranslatedStrings);
-}
-
/* static */
const wxString& wxTranslations::GetUntranslatedString(const wxString& str)
{
- static wxLocaleUntranslatedStrings s_strings;
+ wxLocaleUntranslatedStrings& strings = wxThreadInfo.untranslatedStrings;
- wxLocaleUntranslatedStrings::iterator i = s_strings.find(str);
- if ( i == s_strings.end() )
- return *s_strings.insert(str).first;
+ wxLocaleUntranslatedStrings::iterator i = strings.find(str);
+ if ( i == strings.end() )
+ return *strings.insert(str).first;
return *i;
}