]> git.lyx.org Git - lyx.git/blob - src/messages.C
989bb9a0d0c5b84bd0b48d0948d2105cbe455be9
[lyx.git] / src / messages.C
1 /* \file messages.C
2  * This file is part of LyX, the document processor.
3  * Licence details can be found in the file COPYING.
4  *
5  * \author Lars Gullik Bjønnes
6  *
7  * Full author contact details are available in file CREDITS.
8  */
9
10 #include <config.h>
11
12 #include "debug.h"
13 #include "messages.h"
14 #include "support/filetools.h"
15 #include "support/environment.h"
16 #include "support/package.h"
17
18 #include <boost/current_function.hpp>
19 #include <boost/regex.hpp>
20
21 #include <cerrno>
22
23 using lyx::support::package;
24 using lyx::support::getEnv;
25 using lyx::support::setEnv;
26
27 using std::string;
28
29
30 #ifdef ENABLE_NLS
31
32
33 #if 0
34
35 -#include <locale>
36
37 // This version of the Pimpl utilizes the message capability of
38 // libstdc++ that is distributed with GNU G++.
39 class Messages::Pimpl {
40 public:
41         typedef std::messages<char>::catalog catalog;
42
43         Pimpl(string const & l)
44                 : lang_(l),
45                   loc_gl(lang_.c_str()),
46                   mssg_gl(std::use_facet<std::messages<char> >(loc_gl))
47         {
48                 //lyxerr << "Messages: language(" << l
49                 //       << ") in dir(" << dir << ")" << std::endl;
50
51                 cat_gl = mssg_gl.open(PACKAGE, loc_gl, package().locale_dir().c_str());
52
53         }
54
55         ~Pimpl()
56         {
57                 mssg_gl.close(cat_gl);
58         }
59
60         string const get(string const & msg) const
61         {
62                 return mssg_gl.get(cat_gl, 0, 0, msg);
63         }
64 private:
65         ///
66         string lang_;
67         ///
68         std::locale loc_gl;
69         ///
70         std::messages<char> const & mssg_gl;
71         ///
72         catalog cat_gl;
73 };
74 #else
75
76 #ifdef HAVE_LOCALE_H
77 #  include <locale.h>
78 #endif
79
80 #  if HAVE_GETTEXT
81 #    include <libintl.h>      // use the header already in the system *EK*
82 #  else
83 #    include "../intl/libintl.h"
84 #  endif
85
86 // This is a more traditional variant.
87 class Messages::Pimpl {
88 public:
89         Pimpl(string const & l)
90                 : lang_(l)
91         {
92                 if ( lang_.empty() ) {
93                         char const * lc_msgs = setlocale(LC_MESSAGES, NULL);
94                         lang_ = lc_msgs ? lc_msgs : "";
95                 }
96                 // strip off any encoding suffix, i.e., assume 8-bit po files
97                 string::size_type i = lang_.find(".");
98                 lang_ = lang_.substr(0, i);
99                 lyxerr[Debug::DEBUG] << BOOST_CURRENT_FUNCTION
100                                      << ": language(" << lang_ << ")" << std::endl;
101         }
102
103         ~Pimpl() {}
104
105         string const get(string const & m) const
106         {
107                 if (m.empty())
108                         return m;
109
110                 // In this order, see support/filetools.C:
111                 string lang = getEnv("LC_ALL");
112                 if (lang.empty()) {
113                         lang = getEnv("LC_MESSAGES");
114                         if (lang.empty()) {
115                                 lang = getEnv("LANG");
116                                 if (lang.empty())
117                                         lang = "C";
118                         }
119                 }
120                 
121                 char const * lc_msgs = setlocale(LC_MESSAGES, lang_.c_str());
122                 // setlocale fails (returns NULL) if the corresponding locale
123                 // is not installed.
124                 // On windows (mingw) it always returns NULL.
125                 // Since this method gets called for every translatable
126                 // buffer string like e.g. "Figure:" we warn only once.
127 #ifndef _WIN32
128                 static bool warned = false;
129                 if (!warned && !lc_msgs) {
130                         warned = true;
131                         lyxerr << "Locale " << lang_ << " could not be set" << std::endl;
132                 }
133 #endif
134                 // CTYPE controls what getmessage thinks what encoding the po file uses
135                 char const * lc_ctype = setlocale(LC_CTYPE, NULL);
136                 string oldCTYPE = lc_ctype ? lc_ctype : "";
137
138                 setlocale(LC_CTYPE, lang_.c_str());
139                 errno = 0;
140                 char const * c = bindtextdomain(PACKAGE, package().locale_dir().c_str());
141                 int e = errno;
142                 if (e) {
143                         lyxerr[Debug::DEBUG]
144                                 << BOOST_CURRENT_FUNCTION << '\n'
145                                 << "Error code: " << errno << '\n'
146                                 << "Lang, mess: " << lang_ << " " << m << '\n'
147                                 << "Directory : " << package().locale_dir() << '\n'
148                                 << "Rtn value : " << c << std::endl;
149                 }
150                 textdomain(PACKAGE);
151                 const char* msg = gettext(m.c_str());
152                 string translated(msg ? msg : m);
153                 // Some english words have different translations, depending
154                 // on context. In these cases the original string is
155                 // augmented by context information (e.g.
156                 // "To:[[as in 'From page x to page y']]" and
157                 // "To:[[as in 'From format x to format y']]".
158                 // This means that we need to filter out everything in
159                 // double square brackets at the end of the string,
160                 // otherwise the user sees bogus messages.
161                 // If we are unable to honour the request we just
162                 // return what we got in.
163                 static boost::regex const reg("^([^\\[]*)\\[\\[[^\\]]*\\]\\]$");
164                 boost::smatch sub;
165                 if (regex_match(translated, sub, reg))
166                         translated = sub.str(1);
167                 setlocale(LC_MESSAGES, lang.c_str());
168                 setlocale(LC_CTYPE, oldCTYPE.c_str());
169                 return translated;
170         }
171 private:
172         ///
173         string lang_;
174 };
175 #endif
176
177 #else // ENABLE_NLS
178 // This is the dummy variant.
179 class Messages::Pimpl {
180 public:
181         Pimpl(string const &) {}
182
183         ~Pimpl() {}
184
185         string const get(string const & m) const
186         {
187                 return m;
188         }
189 };
190 #endif
191
192
193 Messages::Messages()
194         : pimpl_(new Pimpl(""))
195 {}
196
197
198 Messages::Messages(string const & l)
199         : pimpl_(new Pimpl(l))
200 {}
201
202
203 // We need this for the sake of scoped_ptr
204 Messages::~Messages()
205 {}
206
207
208 string const Messages::get(string const & msg) const
209 {
210         return pimpl_->get(msg);
211 }