os/ossrv/stdcpp/src/locale_impl.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2  * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
     3  *
     4  * Copyright (c) 1999
     5  * Silicon Graphics Computer Systems, Inc.
     6  *
     7  * Copyright (c) 1999
     8  * Boris Fomitchev
     9  *
    10  * This material is provided "as is", with absolutely no warranty expressed
    11  * or implied. Any use is at your own risk.
    12  *
    13  * Permission to use or copy this software for any purpose is hereby granted
    14  * without fee, provided the above notices are retained on all copies.
    15  * Permission to modify the code and to distribute modified code is granted,
    16  * provided the above notices are retained, and a notice that the code was
    17  * modified is included with the above copyright notice.
    18  *
    19  */
    20 
    21 # ifndef LOCALE_IMPL_H
    22 #  define  LOCALE_IMPL_H
    23 
    24 #include <clocale>             // C locale header file.
    25 #include <vector>
    26 #include <string>
    27 #include <stl/_locale.h>
    28 #include "c_locale.h"
    29 
    30 _STLP_BEGIN_NAMESPACE
    31 
    32 //----------------------------------------------------------------------
    33 // Class _Locale_impl
    34 // This is the base class which implements access only and is supposed to
    35 // be used for classic locale only
    36 class _STLP_CLASS_DECLSPEC _Locale_impl
    37 {
    38 public:
    39   _Locale_impl(const char* s);
    40   //  _Locale_impl(const _Locale_impl&);
    41   virtual ~_Locale_impl();
    42 
    43   virtual void incr();
    44   virtual void decr();
    45 
    46   size_t size() const { return _M_size; }
    47 
    48   static _Locale_impl* make_classic_locale();
    49 
    50   locale::facet** facets;
    51   size_t _M_size;
    52 
    53   basic_string<char, char_traits<char>, allocator<char> > name;
    54 
    55   static void _STLP_CALL _M_throw_bad_cast();
    56 
    57  public:
    58 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
    59   static _Locale_impl*&  get_locale_impl_S_global_impl();
    60   //  static locale          _S_classic;
    61   static _STLP_STATIC_MUTEX& get_locale_impl_S_global_locale_lock();
    62 # else
    63   static _Locale_impl*   _S_global_impl;
    64   //  static locale          _S_classic;
    65   static _STLP_STATIC_MUTEX _S_global_locale_lock;
    66 # endif
    67 private:
    68   void operator=(const _Locale_impl&);
    69 };
    70 
    71 inline _Locale_impl*  _STLP_CALL _S_copy_impl(_Locale_impl* I) {
    72     _STLP_ASSERT( I != 0 );
    73     I->incr();
    74     return I;
    75 }
    76 
    77 _STLP_END_NAMESPACE
    78 
    79 #endif
    80 
    81