Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
4 * Silicon Graphics Computer Systems, Inc.
9 * This material is provided "as is", with absolutely no warranty expressed
10 * or implied. Any use is at your own risk.
12 * Permission to use or copy this software for any purpose is hereby granted
13 * without fee, provided the above notices are retained on all copies.
14 * Permission to modify the code and to distribute modified code is granted,
15 * provided the above notices are retained, and a notice that the code was
16 * modified is included with the above copyright notice.
19 #ifndef MESSAGE_FACETS_H
20 # define MESSAGE_FACETS_H
23 #include <stl/_messages_facets.h>
24 #include <stl/_ctype.h>
32 // Forward declaration of an opaque type.
33 struct _Catalog_locale_map;
35 _Locale_messages* __acquire_messages(const char* name);
36 void __release_messages(_Locale_messages* cat);
38 // Class _Catalog_locale_map. The reason for this is that, internally,
39 // a message string is always a char*. We need a ctype facet to convert
40 // a string to and from wchar_t, and the user is permitted to provide such
41 // a facet when calling open().
43 struct _Catalog_locale_map
45 _Catalog_locale_map() : M(0) {}
46 ~_Catalog_locale_map() { if (M) delete M; }
48 void insert(int key, const locale& L);
49 locale lookup(int key) const;
52 hash_map<int, locale, hash<int>, equal_to<int> >* M;
54 private: // Invalidate copy constructor and assignment
55 _Catalog_locale_map(const _Catalog_locale_map&);
56 void operator=(const _Catalog_locale_map&);
62 typedef messages_base::catalog catalog;
64 _STLP_DECLSPEC _Messages();
66 virtual catalog do_open(const string& __fn, const locale& __loc) const;
67 virtual string do_get(catalog __c, int __set, int __msgid,
68 const string& __dfault) const;
69 # ifndef _STLP_NO_WCHAR_T
70 virtual wstring do_get(catalog __c, int __set, int __msgid,
71 const wstring& __dfault) const;
73 virtual void do_close(catalog __c) const;
74 virtual _STLP_DECLSPEC ~_Messages();
78 class _Messages_impl : public _Messages {
83 _Messages_impl(bool, _Locale_messages*);
85 catalog do_open(const string& __fn, const locale& __loc) const;
86 string do_get(catalog __c, int __set, int __msgid,
87 const string& __dfault) const;
88 # ifndef _STLP_NO_WCHAR_T
89 wstring do_get(catalog __c, int __set, int __msgid,
90 const wstring& __dfault) const;
92 void do_close(catalog __c) const;
97 _Locale_messages* _M_message_obj;
98 _Catalog_locale_map* _M_map;