diff --git a/src/Standard/Standard_CLocaleSentry.cxx b/src/Standard/Standard_CLocaleSentry.cxx index ce3212f2af..8b30c2cbd4 100644 --- a/src/Standard/Standard_CLocaleSentry.cxx +++ b/src/Standard/Standard_CLocaleSentry.cxx @@ -30,7 +30,7 @@ namespace public: CLocalePtr() - #ifdef HAVE_XLOCALE_H + #ifdef OCCT_CLOCALE_POSIX2008 : myLocale (newlocale (LC_ALL_MASK, "C", NULL)) #elif defined(_MSC_VER) : myLocale (_create_locale (LC_ALL, "C")) @@ -41,7 +41,7 @@ namespace ~CLocalePtr() { - #ifdef HAVE_XLOCALE_H + #ifdef OCCT_CLOCALE_POSIX2008 freelocale (myLocale); #elif defined(_MSC_VER) _free_locale (myLocale); @@ -72,7 +72,7 @@ Standard_CLocaleSentry::clocale_t Standard_CLocaleSentry::GetCLocale() // purpose : // ======================================================================= Standard_CLocaleSentry::Standard_CLocaleSentry() -#ifdef HAVE_XLOCALE_H +#ifdef OCCT_CLOCALE_POSIX2008 : myPrevLocale (uselocale (theCLocale.myLocale)) // switch to C locale within this thread only using xlocale API #else : myPrevLocale (setlocale (LC_ALL, 0)) @@ -81,7 +81,7 @@ Standard_CLocaleSentry::Standard_CLocaleSentry() #endif #endif { -#if !defined(HAVE_XLOCALE_H) +#if !defined(OCCT_CLOCALE_POSIX2008) const char* aPrevLocale = (const char* )myPrevLocale; if (myPrevLocale == NULL || (aPrevLocale[0] == 'C' && aPrevLocale[1] == '\0')) @@ -104,7 +104,7 @@ Standard_CLocaleSentry::Standard_CLocaleSentry() // ======================================================================= Standard_CLocaleSentry::~Standard_CLocaleSentry() { -#if defined(HAVE_XLOCALE_H) +#if defined(OCCT_CLOCALE_POSIX2008) uselocale ((locale_t )myPrevLocale); #else if (myPrevLocale != NULL) diff --git a/src/Standard/Standard_CLocaleSentry.hxx b/src/Standard/Standard_CLocaleSentry.hxx index a94ade724d..3b3beba761 100755 --- a/src/Standard/Standard_CLocaleSentry.hxx +++ b/src/Standard/Standard_CLocaleSentry.hxx @@ -20,24 +20,25 @@ #include -#ifndef HAVE_XLOCALE_H - //! "xlocale.h" available in Mac OS X and glibc (Linux) for a long time as an extension - //! and become part of POSIX since '2008. - //! Notice that this is impossible to test (_POSIX_C_SOURCE >= 200809L) - //! since POSIX didn't declared such identifier. +#if defined(__APPLE__) + #include +#endif + +#ifndef OCCT_CLOCALE_POSIX2008 + //! @def OCCT_CLOCALE_POSIX2008 + //! + //! POSIX.1-2008 extends C locale API by providing methods like newlocale/freelocale/uselocale. + //! Presence of this extension cannot be checked in straightforward way (like (_POSIX_C_SOURCE >= 200809L)) + //! due to missing such declarations in standard. + //! On macOS new functions are declared within "xlocale.h" header (the same is for glibc, but this header has been removed since glibc 2.26). #if defined(__APPLE__) - #define HAVE_XLOCALE_H + #define OCCT_CLOCALE_POSIX2008 #endif //! We check _GNU_SOURCE for glibc extensions here and it is always defined by g++ compiler. #if defined(_GNU_SOURCE) && !defined(__ANDROID__) - #define HAVE_XLOCALE_H + #define OCCT_CLOCALE_POSIX2008 #endif -#endif // ifndef HAVE_LOCALE_H - -#if defined(HAVE_XLOCALE_H) && !(defined(__GLIBC__) && (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 24)) - // xlocale.h is actually a non-standard header file; glibc 2.26 has removed it altogether (all definition comes from locale.h) - #include #endif #if !defined(__ANDROID__) @@ -64,7 +65,7 @@ public: public: -#ifdef HAVE_XLOCALE_H +#ifdef OCCT_CLOCALE_POSIX2008 typedef locale_t clocale_t; #elif defined(_MSC_VER) typedef _locale_t clocale_t; diff --git a/src/Standard/Standard_CString.cxx b/src/Standard/Standard_CString.cxx index dc0a2223a1..d10974fafb 100755 --- a/src/Standard/Standard_CString.cxx +++ b/src/Standard/Standard_CString.cxx @@ -76,7 +76,7 @@ Standard_Integer HashCodes (const Standard_CString Value, // and newlocale/uselocale/freelocale to switch locale within current thread only. // So we switch to C locale temporarily #define SAVE_TL() Standard_CLocaleSentry aLocaleSentry; - #ifndef HAVE_XLOCALE_H + #ifndef OCCT_CLOCALE_POSIX2008 // glibc version for android platform use locale-independent implementation of // strtod, strtol, strtoll functions. For other system with locale-depended // implementations problems may appear if "C" locale is not set explicitly. diff --git a/src/Standard/Standard_Type.hxx b/src/Standard/Standard_Type.hxx index b21ba3a3b9..9fcdf55426 100644 --- a/src/Standard/Standard_Type.hxx +++ b/src/Standard/Standard_Type.hxx @@ -24,7 +24,7 @@ // Auxiliary tools to check at compile time that class declared as base in // DEFINE_STANDARD_RTTI* macro is actually a base class. -#if ! defined(OCC_CHECK_BASE_CLASS) +#if ! defined(OCCT_CHECK_BASE_CLASS) #if (defined(__GNUC__) && ((__GNUC__ == 4 && __GNUC_MINOR__ >= 7) || (__GNUC__ > 4))) @@ -58,7 +58,7 @@ namespace opencascade struct has_type > : std::true_type {}; } -#define OCC_CHECK_BASE_CLASS(Class,Base) \ +#define OCCT_CHECK_BASE_CLASS(Class,Base) \ using direct_base_classes = opencascade::direct_base_class_as_tuple::type>::type; \ static_assert(opencascade::has_type::type::value, "OCCT RTTI definition is incorrect: " #Base " is not direct base class of " #Class); \ static_assert(&get_type_name == &Class::get_type_name, "OCCT RTTI definition is misplaced: current class is not " #Class); @@ -66,25 +66,25 @@ namespace opencascade #elif (defined(_MSC_VER) && (_MSC_VER < 1600)) // VC9 does not support static_assert and decltype at all -#define OCC_CHECK_BASE_CLASS(Class,Base) +#define OCCT_CHECK_BASE_CLASS(Class,Base) #elif (defined(_MSC_VER) && (_MSC_VER >= 1900)) // VC14+ allow using address of member functions in static checks, // that allows checking for the current type being correctly named in the macro -#define OCC_CHECK_BASE_CLASS(Class,Base) \ +#define OCCT_CHECK_BASE_CLASS(Class,Base) \ static_assert(opencascade::is_base_but_not_same::value, "OCCT RTTI definition is incorrect: " #Base " is not base class of " #Class); \ static_assert(&get_type_name == &Class::get_type_name, "OCCT RTTI definition is misplaced: current class is not " #Class); #else // by default, check only the base class -#define OCC_CHECK_BASE_CLASS(Class,Base) \ +#define OCCT_CHECK_BASE_CLASS(Class,Base) \ static_assert(opencascade::is_base_but_not_same::value, "OCCT RTTI definition is incorrect: " #Base " is not base class of " #Class); #endif -#endif /* ! defined(OCC_CHECK_BASE_CLASS) */ +#endif /* ! defined(OCCT_CHECK_BASE_CLASS) */ //! Helper macro to get instance of a type descriptor for a class in a legacy way. #define STANDARD_TYPE(theType) theType::get_type_descriptor() @@ -97,7 +97,7 @@ namespace opencascade #define DEFINE_STANDARD_RTTI_INLINE(Class,Base) \ public: \ typedef Base base_type; \ - static const char* get_type_name () { return #Class; OCC_CHECK_BASE_CLASS(Class,Base) } \ + static const char* get_type_name () { return #Class; OCCT_CHECK_BASE_CLASS(Class,Base) } \ static const Handle(Standard_Type)& get_type_descriptor () { return Standard_Type::Instance(); } \ virtual const Handle(Standard_Type)& DynamicType() const Standard_OVERRIDE { return get_type_descriptor (); } @@ -108,7 +108,7 @@ public: \ #define DEFINE_STANDARD_RTTIEXT(Class,Base) \ public: \ typedef Base base_type; \ - static const char* get_type_name () { return #Class; OCC_CHECK_BASE_CLASS(Class,Base) } \ + static const char* get_type_name () { return #Class; OCCT_CHECK_BASE_CLASS(Class,Base) } \ Standard_EXPORT static const Handle(Standard_Type)& get_type_descriptor (); \ Standard_EXPORT virtual const Handle(Standard_Type)& DynamicType() const Standard_OVERRIDE;