mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-20 11:54:07 +03:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
85 lines
2.9 KiB
C++
Executable File
85 lines
2.9 KiB
C++
Executable File
// Created on: 2013-01-17
|
|
// Created by: Kirill GAVRILOV
|
|
// Copyright (c) 2013 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 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.
|
|
|
|
#ifndef _Standard_CLocaleSentry_H__
|
|
#define _Standard_CLocaleSentry_H__
|
|
|
|
#include <Standard_Macro.hxx>
|
|
|
|
#include <locale.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.
|
|
//! We check _GNU_SOURCE for glibc extensions here and it is always defined by g++ compiler.
|
|
#if defined(__APPLE__) || defined(_GNU_SOURCE) || defined(HAVE_XLOCALE_H)
|
|
#include <xlocale.h>
|
|
#ifndef HAVE_XLOCALE_H
|
|
#define HAVE_XLOCALE_H
|
|
#endif
|
|
#endif
|
|
|
|
//! This class intended to temporary switch C locale and logically equivalent to setlocale(LC_ALL, "C").
|
|
//! It is intended to format text regardless of user locale settings (for import/export functionality).
|
|
//! Thus following calls to sprintf, atoi and other functions will use "C" locale.
|
|
//! Destructor of this class will return original locale.
|
|
//!
|
|
//! Notice that this functionality is platfrom dependent and intended only to workaround alien code
|
|
//! that doesn't setup locale correctly.
|
|
//!
|
|
//! Internally you should prefer more portable C++ locale interfaces
|
|
//! or OCCT wrappers to some C functions like Sprintf, Atof, Strtod.
|
|
class Standard_CLocaleSentry
|
|
{
|
|
public:
|
|
|
|
//! Setup current C locale to "C".
|
|
Standard_EXPORT Standard_CLocaleSentry();
|
|
|
|
//! Restore previous locale.
|
|
Standard_EXPORT virtual ~Standard_CLocaleSentry();
|
|
|
|
public:
|
|
|
|
#ifdef HAVE_XLOCALE_H
|
|
typedef locale_t clocale_t;
|
|
#elif defined(_WIN32)
|
|
typedef _locale_t clocale_t;
|
|
#else
|
|
typedef void* clocale_t;
|
|
#endif
|
|
|
|
//! @return locale "C" instance (locale_t within xlocale or _locale_t within Windows)
|
|
//! to be used for _l functions with locale argument.
|
|
static Standard_EXPORT clocale_t GetCLocale();
|
|
|
|
private:
|
|
|
|
void* myPrevLocale; //!< previous locale, platform-dependent pointer!
|
|
#ifdef _WIN32
|
|
int myPrevTLocaleState; //!< previous thread-locale state, MSVCRT-specific
|
|
#endif
|
|
|
|
private:
|
|
|
|
//! Copying disallowed
|
|
Standard_CLocaleSentry (const Standard_CLocaleSentry& );
|
|
Standard_CLocaleSentry& operator= (const Standard_CLocaleSentry& );
|
|
|
|
};
|
|
|
|
#endif // _Standard_CLocaleSentry_H__
|