mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-05 11:24:17 +03:00
Standard_CLocaleSentry does not include xlocale.h when using glibc anymore. HAVE_XLOCALE_H has been renamed to OCCT_CLOCALE_POSIX2008 to avoid confusion. Renamed macros OCC_CHECK_BASE_CLASS -> OCCT_CHECK_BASE_CLASS.
126 lines
3.4 KiB
C++
126 lines
3.4 KiB
C++
// Created on: 2013-01-17
|
|
// Created by: Kirill GAVRILOV
|
|
// Copyright (c) 2013-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#include <Standard_CLocaleSentry.hxx>
|
|
|
|
#include <Standard_TypeDef.hxx>
|
|
|
|
#include <cstring>
|
|
|
|
#if !defined(__ANDROID__)
|
|
|
|
namespace
|
|
{
|
|
|
|
//! CLocalePtr - static object representing C locale
|
|
class CLocalePtr
|
|
{
|
|
public:
|
|
|
|
CLocalePtr()
|
|
#ifdef OCCT_CLOCALE_POSIX2008
|
|
: myLocale (newlocale (LC_ALL_MASK, "C", NULL))
|
|
#elif defined(_MSC_VER)
|
|
: myLocale (_create_locale (LC_ALL, "C"))
|
|
#else
|
|
: myLocale (NULL)
|
|
#endif
|
|
{}
|
|
|
|
~CLocalePtr()
|
|
{
|
|
#ifdef OCCT_CLOCALE_POSIX2008
|
|
freelocale (myLocale);
|
|
#elif defined(_MSC_VER)
|
|
_free_locale (myLocale);
|
|
#endif
|
|
}
|
|
|
|
public:
|
|
|
|
Standard_CLocaleSentry::clocale_t myLocale;
|
|
|
|
};
|
|
|
|
static CLocalePtr theCLocale;
|
|
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : GetCLocale
|
|
// purpose :
|
|
// =======================================================================
|
|
Standard_CLocaleSentry::clocale_t Standard_CLocaleSentry::GetCLocale()
|
|
{
|
|
return theCLocale.myLocale;
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : Standard_CLocaleSentry
|
|
// purpose :
|
|
// =======================================================================
|
|
Standard_CLocaleSentry::Standard_CLocaleSentry()
|
|
#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))
|
|
#if defined(_MSC_VER) && (_MSC_VER > 1400)
|
|
, myPrevTLocaleState (_configthreadlocale (_ENABLE_PER_THREAD_LOCALE))
|
|
#endif
|
|
#endif
|
|
{
|
|
#if !defined(OCCT_CLOCALE_POSIX2008)
|
|
const char* aPrevLocale = (const char* )myPrevLocale;
|
|
if (myPrevLocale == NULL
|
|
|| (aPrevLocale[0] == 'C' && aPrevLocale[1] == '\0'))
|
|
{
|
|
myPrevLocale = NULL; // already C locale
|
|
return;
|
|
}
|
|
// copy string as following setlocale calls may invalidate returned pointer
|
|
Standard_Size aLen = std::strlen (aPrevLocale) + 1;
|
|
myPrevLocale = new char[aLen];
|
|
memcpy (myPrevLocale, aPrevLocale, aLen);
|
|
|
|
setlocale (LC_ALL, "C");
|
|
#endif
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : ~Standard_CLocaleSentry
|
|
// purpose :
|
|
// =======================================================================
|
|
Standard_CLocaleSentry::~Standard_CLocaleSentry()
|
|
{
|
|
#if defined(OCCT_CLOCALE_POSIX2008)
|
|
uselocale ((locale_t )myPrevLocale);
|
|
#else
|
|
if (myPrevLocale != NULL)
|
|
{
|
|
const char* aPrevLocale = (const char* )myPrevLocale;
|
|
setlocale (LC_ALL, aPrevLocale);
|
|
delete[] aPrevLocale;
|
|
}
|
|
#if defined(_MSC_VER) && (_MSC_VER > 1400)
|
|
if (myPrevTLocaleState != _ENABLE_PER_THREAD_LOCALE)
|
|
{
|
|
_configthreadlocale (myPrevTLocaleState);
|
|
}
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
#endif // __ANDROID__
|