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