os/ossrv/stdcpp/src/message_facets.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 * Copyright (c) 1999
sl@0
     4
 * Silicon Graphics Computer Systems, Inc.
sl@0
     5
 *
sl@0
     6
 * Copyright (c) 1999 
sl@0
     7
 * Boris Fomitchev
sl@0
     8
 *
sl@0
     9
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    10
 * or implied. Any use is at your own risk.
sl@0
    11
 *
sl@0
    12
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    13
 * without fee, provided the above notices are retained on all copies.
sl@0
    14
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    15
 * provided the above notices are retained, and a notice that the code was
sl@0
    16
 * modified is included with the above copyright notice.
sl@0
    17
 *
sl@0
    18
 */ 
sl@0
    19
#ifndef MESSAGE_FACETS_H
sl@0
    20
# define MESSAGE_FACETS_H
sl@0
    21
sl@0
    22
#include <string>
sl@0
    23
#include <stl/_messages_facets.h>
sl@0
    24
#include <stl/_ctype.h>
sl@0
    25
// #include <istream>
sl@0
    26
#include <typeinfo>
sl@0
    27
#include <hash_map>
sl@0
    28
#include "c_locale.h"
sl@0
    29
sl@0
    30
_STLP_BEGIN_NAMESPACE
sl@0
    31
sl@0
    32
// Forward declaration of an opaque type.
sl@0
    33
struct _Catalog_locale_map;
sl@0
    34
sl@0
    35
_Locale_messages* __acquire_messages(const char* name); 
sl@0
    36
void __release_messages(_Locale_messages* cat);
sl@0
    37
sl@0
    38
// Class _Catalog_locale_map.  The reason for this is that, internally,
sl@0
    39
// a message string is always a char*.  We need a ctype facet to convert
sl@0
    40
// a string to and from wchar_t, and the user is permitted to provide such
sl@0
    41
// a facet when calling open().
sl@0
    42
sl@0
    43
struct _Catalog_locale_map
sl@0
    44
{
sl@0
    45
  _Catalog_locale_map() : M(0) {}
sl@0
    46
  ~_Catalog_locale_map() { if (M) delete M; }
sl@0
    47
sl@0
    48
  void insert(int key, const locale& L);
sl@0
    49
  locale lookup(int key) const;
sl@0
    50
  void erase(int key);
sl@0
    51
sl@0
    52
  hash_map<int, locale, hash<int>, equal_to<int> >* M;
sl@0
    53
sl@0
    54
private:                        // Invalidate copy constructor and assignment
sl@0
    55
  _Catalog_locale_map(const _Catalog_locale_map&);
sl@0
    56
  void operator=(const _Catalog_locale_map&);
sl@0
    57
};
sl@0
    58
sl@0
    59
sl@0
    60
class _Messages {
sl@0
    61
public:
sl@0
    62
  typedef messages_base::catalog catalog;
sl@0
    63
sl@0
    64
  _STLP_DECLSPEC _Messages();
sl@0
    65
sl@0
    66
  virtual catalog     do_open(const string& __fn, const locale& __loc) const;
sl@0
    67
  virtual string do_get(catalog __c, int __set, int __msgid,
sl@0
    68
			const string& __dfault) const;
sl@0
    69
# ifndef _STLP_NO_WCHAR_T
sl@0
    70
  virtual wstring do_get(catalog __c, int __set, int __msgid,
sl@0
    71
                             const wstring& __dfault) const;
sl@0
    72
# endif
sl@0
    73
  virtual void        do_close(catalog __c) const;
sl@0
    74
  virtual _STLP_DECLSPEC ~_Messages();
sl@0
    75
  bool _M_delete;
sl@0
    76
};
sl@0
    77
sl@0
    78
class _Messages_impl : public _Messages {
sl@0
    79
public:
sl@0
    80
sl@0
    81
  _Messages_impl(bool);
sl@0
    82
sl@0
    83
  _Messages_impl(bool, _Locale_messages*);
sl@0
    84
sl@0
    85
  catalog     do_open(const string& __fn, const locale& __loc) const;
sl@0
    86
  string do_get(catalog __c, int __set, int __msgid,
sl@0
    87
			const string& __dfault) const;
sl@0
    88
# ifndef _STLP_NO_WCHAR_T
sl@0
    89
  wstring do_get(catalog __c, int __set, int __msgid,
sl@0
    90
		 const wstring& __dfault) const;
sl@0
    91
# endif
sl@0
    92
  void        do_close(catalog __c) const;
sl@0
    93
  
sl@0
    94
  ~_Messages_impl();
sl@0
    95
sl@0
    96
private:
sl@0
    97
  _Locale_messages* _M_message_obj;
sl@0
    98
  _Catalog_locale_map* _M_map;
sl@0
    99
};
sl@0
   100
sl@0
   101
_STLP_END_NAMESPACE
sl@0
   102
sl@0
   103
#endif