Update contrib.
3 * Silicon Graphics Computer Systems, Inc.
8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
11 * Permission to use or copy this software for any purpose is hereby granted
12 * without fee, provided the above notices are retained on all copies.
13 * Permission to modify the code and to distribute modified code is granted,
14 * provided the above notices are retained, and a notice that the code was
15 * modified is included with the above copyright notice.
18 #ifndef MESSAGE_FACETS_H
19 #define MESSAGE_FACETS_H
27 #include "acquire_release.h"
30 _STLP_MOVE_TO_PRIV_NAMESPACE
32 // Class _Catalog_locale_map. The reason for this is that, internally,
33 // a message string is always a char*. We need a ctype facet to convert
34 // a string to and from wchar_t, and the user is permitted to provide such
35 // a facet when calling open().
37 struct _Catalog_locale_map {
38 _Catalog_locale_map() : M(0) {}
39 ~_Catalog_locale_map() { if (M) delete M; }
41 void insert(nl_catd_type key, const locale& L);
42 locale lookup(nl_catd_type key) const;
43 void erase(nl_catd_type key);
45 typedef hash_map<nl_catd_type, locale, hash<nl_catd_type>, equal_to<nl_catd_type> > map_type;
48 private: // Invalidate copy constructor and assignment
49 _Catalog_locale_map(const _Catalog_locale_map&);
50 void operator=(const _Catalog_locale_map&);
54 * In glibc nl_catd type is void *, but messages_base::catalog is defined as int
55 * by ISO/IEC 14882; The int may be too short to store pointer on 64-bit platforms;
56 * Another problem, is that do_open() may return negative value to indicate that no
57 * catalog open---this case can't be represented with pointers.
58 * The class _Catalog_nl_catd_map intended to make relation between
59 * messages_base::catalog and nl_catd handler.
63 #if defined (_STLP_REAL_LOCALE_IMPLEMENTED) && (defined (_STLP_USE_GLIBC) && !defined (__CYGWIN__))
64 # define _STLP_USE_NL_CATD_MAPPING
66 /* If no mapping a message_base::catalog entry, int typedef according C++ Standard 22.2.7.1,
67 * has to be large enough to contain a nl_catd_type value.
69 _STLP_STATIC_ASSERT(sizeof(nl_catd_type) <= sizeof(int))
72 class _STLP_CLASS_DECLSPEC _Catalog_nl_catd_map {
74 _Catalog_nl_catd_map()
76 ~_Catalog_nl_catd_map()
79 typedef hash_map<messages_base::catalog, nl_catd_type, hash<messages_base::catalog>, equal_to<messages_base::catalog> > map_type;
80 typedef hash_map<nl_catd_type, messages_base::catalog, hash<nl_catd_type>, equal_to<nl_catd_type> > rmap_type;
81 // typedef map<messages_base::catalog,nl_catd_type> map_type;
82 // typedef map<nl_catd_type,messages_base::catalog> rmap_type;
84 messages_base::catalog insert(nl_catd_type cat)
85 #if !defined (_STLP_USE_NL_CATD_MAPPING)
86 { return (messages_base::catalog)cat; }
91 void erase(messages_base::catalog)
92 #if !defined (_STLP_USE_NL_CATD_MAPPING)
98 nl_catd_type operator [] ( messages_base::catalog cat ) const
99 #if !defined (_STLP_USE_NL_CATD_MAPPING)
102 { return cat < 0 ? 0 : M[cat]; }
106 _Catalog_nl_catd_map(const _Catalog_nl_catd_map&);
107 _Catalog_nl_catd_map& operator =(const _Catalog_nl_catd_map&);
109 #if defined (_STLP_USE_NL_CATD_MAPPING)
111 mutable rmap_type Mr;
112 static _STLP_VOLATILE __stl_atomic_t _count;
116 class _STLP_CLASS_DECLSPEC _Messages {
118 typedef messages_base::catalog catalog;
122 virtual catalog do_open(const string& __fn, const locale& __loc) const;
123 virtual string do_get(catalog __c, int __set, int __msgid,
124 const string& __dfault) const;
125 #if !defined (_STLP_NO_WCHAR_T)
126 virtual wstring do_get(catalog __c, int __set, int __msgid,
127 const wstring& __dfault) const;
129 virtual void do_close(catalog __c) const;
130 virtual ~_Messages();
134 class _STLP_CLASS_DECLSPEC _Messages_impl : public _Messages {
136 _Messages_impl(bool, _Locale_name_hint* hint = 0);
137 _Messages_impl(bool, _Locale_messages*);
139 catalog do_open(const string& __fn, const locale& __loc) const;
140 string do_get(catalog __c, int __set, int __msgid,
141 const string& __dfault) const;
142 #if !defined (_STLP_NO_WCHAR_T)
143 wstring do_get(catalog __c, int __set, int __msgid,
144 const wstring& __dfault) const;
146 void do_close(catalog __c) const;
151 _Locale_messages* _M_message_obj;
152 _Catalog_locale_map* _M_map;
153 mutable _Catalog_nl_catd_map _M_cat;
155 //private definition to avoid warning (with ICL)
156 _Messages_impl(const _Messages_impl&);
157 _Messages_impl& operator=(const _Messages_impl&);
160 _STLP_MOVE_TO_STD_NAMESPACE