]> git.lyx.org Git - lyx.git/blob - src/support/docstream.cpp
2fddca032070f595e3371db6f40334fb9579ad26
[lyx.git] / src / support / docstream.cpp
1 /**
2  * \file docstream.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Georg Baum
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "support/docstream.h"
14 #include "support/unicode.h"
15
16 #include <cerrno>
17 #include <cstdio>
18 #include <cstring>
19 #include <iconv.h>
20 #include <locale>
21
22 using namespace std;
23
24 using lyx::ucs4_codeset;
25
26 namespace {
27
28 // We use C IO throughout this file, because the facets might be used with
29 // lyxerr in the future.
30
31
32 /// codecvt facet for conversion of UCS4 (internal representation) to UTF8
33 /// (external representation) or vice versa
34 class iconv_codecvt_facet : public codecvt<lyx::char_type, char, mbstate_t>
35 {
36         typedef codecvt<lyx::char_type, char, mbstate_t> base;
37 public:
38         /// Constructor. You have to specify with \p inout whether you want
39         /// to use this facet only for input, only for output or for both.
40         explicit iconv_codecvt_facet(string const & encoding = "UTF-8",
41                         ios_base::openmode inout = ios_base::in | ios_base::out,
42                         size_t refs = 0)
43                 : base(refs), encoding_(encoding)
44         {
45                 if (inout & ios_base::in) {
46                         in_cd_ = iconv_open(ucs4_codeset, encoding.c_str());
47                         if (in_cd_ == (iconv_t)(-1)) {
48                                 fprintf(stderr, "Error %d returned from iconv_open(in_cd_): %s\n",
49                                         errno, strerror(errno));
50                                 fflush(stderr);
51                                 throw lyx::iconv_codecvt_facet_exception();
52                         }
53                 } else
54                         in_cd_ = (iconv_t)(-1);
55                 if (inout & ios_base::out) {
56                         out_cd_ = iconv_open(encoding.c_str(), ucs4_codeset);
57                         if (out_cd_ == (iconv_t)(-1)) {
58                                 fprintf(stderr, "Error %d returned from iconv_open(out_cd_): %s\n",
59                                         errno, strerror(errno));
60                                 fflush(stderr);
61                                 throw lyx::iconv_codecvt_facet_exception();
62                         }
63                 } else
64                         out_cd_ = (iconv_t)(-1);
65         }
66 protected:
67         virtual ~iconv_codecvt_facet()
68         {
69                 if (in_cd_ != (iconv_t)(-1))
70                         if (iconv_close(in_cd_) == -1) {
71                                 fprintf(stderr, "Error %d returned from iconv_close(in_cd_): %s\n",
72                                         errno, strerror(errno));
73                                 fflush(stderr);
74                         }
75                 if (out_cd_ != (iconv_t)(-1))
76                         if (iconv_close(out_cd_) == -1) {
77                                 fprintf(stderr, "Error %d returned from iconv_close(out_cd_): %s\n",
78                                         errno, strerror(errno));
79                                 fflush(stderr);
80                         }
81         }
82         virtual result do_out(state_type &, intern_type const * from,
83                         intern_type const * from_end, intern_type const *& from_next,
84                         extern_type * to, extern_type * to_end,
85                         extern_type *& to_next) const
86         {
87 #define WORKAROUND_ICONV_BUG 1
88 #if WORKAROUND_ICONV_BUG
89                 // Due to a bug in some iconv versions, when the last char
90                 // in the buffer is a wide char and the output encoding is
91                 // ISO-2022-JP and we are going to switch to another encoding,
92                 // the appropriate escape sequence for changing the character
93                 // set is not output (see bugs 5216, 5280, and also 5489).
94                 // As a workaround, we append a nul char in order to force
95                 // a switch to ASCII, and then remove it from output after
96                 // the conversion.
97                 intern_type * from_new = 0;
98                 intern_type const * from_old = from;
99                 size_t extra = 0;
100                 if (*(from_end - 1) >= 0x80 && encoding_ == "ISO-2022-JP") {
101                         size_t len = from_end - from;
102                         from_new = new intern_type[len + 1];
103                         memcpy(from_new, from, len * sizeof(intern_type));
104                         from_new[len] = 0;
105                         from_end = from_new + len + 1;
106                         from = from_new;
107                         extra = 1;
108                 }
109 #endif
110                 size_t inbytesleft = (from_end - from) * sizeof(intern_type);
111                 size_t outbytesleft = (to_end - to) * sizeof(extern_type);
112 #if WORKAROUND_ICONV_BUG
113                 outbytesleft += extra * sizeof(extern_type);
114 #endif
115                 from_next = from;
116                 to_next = to;
117                 result const retval = do_iconv(out_cd_,
118                                 reinterpret_cast<char const **>(&from_next),
119                                 &inbytesleft, &to_next, &outbytesleft);
120 #if WORKAROUND_ICONV_BUG
121                 // Remove from output the nul char that we inserted at the end
122                 // of the input buffer in order to circumvent an iconv bug.
123                 if (from_new) {
124                         --to_next;
125                         from_next = from_old + (from_next - from);
126                         delete[] from_new;
127                 }
128 #endif
129                 if (retval == base::error) {
130                         fprintf(stderr,
131                                 "Error %d returned from iconv when converting from %s to %s: %s\n",
132                                 errno, ucs4_codeset, encoding_.c_str(),
133                                 strerror(errno));
134                         fputs("Converted input:", stderr);
135                         for (intern_type const * i = from; i < from_next; ++i) {
136                                 unsigned int const c = *i;
137                                 fprintf(stderr, " 0x%04x", c);
138                         }
139                         unsigned int const c = *from_next;
140                         fprintf(stderr, "\nStopped at: 0x%04x\n", c);
141                         fputs("Unconverted input:", stderr);
142                         for (intern_type const * i = from_next + 1; i < from_end; ++i) {
143                                 unsigned int const c = *i;
144                                 fprintf(stderr, " 0x%04x", c);
145                         }
146                         fputs("\nConverted output:", stderr);
147                         for (extern_type const * i = to; i < to_next; ++i) {
148                                 // extern_type may be signed, avoid output of
149                                 // something like 0xffffffc2
150                                 unsigned int const c =
151                                         *reinterpret_cast<unsigned char const *>(i);
152                                 fprintf(stderr, " 0x%02x", c);
153                         }
154                         fputc('\n', stderr);
155                         fflush(stderr);
156                 }
157                 return retval;
158         }
159         virtual result do_unshift(state_type &, extern_type * to,
160                         extern_type *, extern_type *& to_next) const
161         {
162                 // utf8 does not use shifting
163                 to_next = to;
164                 return base::noconv;
165         }
166         virtual result do_in(state_type &,
167                         extern_type const * from, extern_type const * from_end,
168                         extern_type const *& from_next,
169                         intern_type * to, intern_type * to_end,
170                         intern_type *& to_next) const
171         {
172                 size_t inbytesleft = (from_end - from) * sizeof(extern_type);
173                 size_t outbytesleft = (to_end - to) * sizeof(intern_type);
174                 from_next = from;
175                 to_next = to;
176                 result const retval = do_iconv(in_cd_, &from_next, &inbytesleft,
177                                 reinterpret_cast<char **>(&to_next),
178                                 &outbytesleft);
179                 if (retval == base::error) {
180                         fprintf(stderr,
181                                 "Error %d returned from iconv when converting from %s to %s: %s\n",
182                                 errno, encoding_.c_str(), ucs4_codeset,
183                                 strerror(errno));
184                         fputs("Converted input:", stderr);
185                         for (extern_type const * i = from; i < from_next; ++i) {
186                                 // extern_type may be signed, avoid output of
187                                 // something like 0xffffffc2
188                                 unsigned int const c =
189                                         *reinterpret_cast<unsigned char const *>(i);
190                                 fprintf(stderr, " 0x%02x", c);
191                         }
192                         unsigned int const c =
193                                 *reinterpret_cast<unsigned char const *>(from_next);
194                         fprintf(stderr, "\nStopped at: 0x%02x\n", c);
195                         fputs("Unconverted input:", stderr);
196                         for (extern_type const * i = from_next + 1; i < from_end; ++i) {
197                                 unsigned int const c =
198                                         *reinterpret_cast<unsigned char const *>(i);
199                                 fprintf(stderr, " 0x%02x", c);
200                         }
201                         fputs("\nConverted output:", stderr);
202                         for (intern_type const * i = to; i < to_next; ++i) {
203                                 unsigned int const c = *i;
204                                 fprintf(stderr, " 0x%02x", c);
205                         }
206                         fputc('\n', stderr);
207                         fflush(stderr);
208                 }
209                 return retval;
210         }
211         virtual int do_encoding() const throw()
212         {
213                 return 0;
214         }
215         virtual bool do_always_noconv() const throw()
216         {
217                 return false;
218         }
219         virtual int do_length(state_type & /*state*/, extern_type const * from,
220                         extern_type const * end, size_t max) const
221         {
222                 // The docs are a bit unclear about this method.
223                 // It seems that we should calculate the actual length of the
224                 // converted sequence, but that would not make sense, since
225                 // once could just do the conversion directly.
226                 // Therefore we just return the number of unconverted
227                 // characters, since that is the best guess we can do.
228 #if 0
229                 intern_type * to = new intern_type[max];
230                 intern_type * to_end = to + max;
231                 intern_type * to_next = to;
232                 extern_type const * from_next = from;
233                 do_in(state, from, end, from_next, to, to_end, to_next);
234                 delete[] to;
235                 return to_next - to;
236 #else
237                 size_t const length = end - from;
238                 return min(length, max);
239 #endif
240         }
241         virtual int do_max_length() const throw()
242         {
243                 // FIXME: this information should be transferred to lib/encodings
244                 // UTF8 uses at most 4 bytes to represent one UCS4 code point
245                 // (see RFC 3629). RFC 2279 specifies 6 bytes, but that
246                 // information is outdated, and RFC 2279 has been superseded by
247                 // RFC 3629.
248                 // The CJK encodings use (different) multibyte representation as well.
249                 // All other encodings encode one UCS4 code point in one byte
250                 // (and can therefore only encode a subset of UCS4)
251                 // Note that BIG5 and SJIS do not work with LaTeX (see lib/encodings). 
252                 // Furthermore, all encodings that use shifting (like SJIS) do not work with 
253                 // iconv_codecvt_facet.
254                 if (encoding_ == "UTF-8" ||
255                     encoding_ == "GB" ||
256                     encoding_ == "EUC-TW")
257                         return 4;
258                 else if (encoding_ == "EUC-JP" ||
259                          encoding_ == "ISO-2022-JP")
260                         return 3;
261                 else if (encoding_ == "BIG5" ||
262                          encoding_ == "EUC-KR" ||
263                          encoding_ == "EUC-CN" ||
264                          encoding_ == "SJIS" ||
265                          encoding_ == "GBK")
266                         return 2;
267                 else
268                         return 1;
269         }
270 private:
271         /// Do the actual conversion. The interface is equivalent to that of
272         /// iconv() (but const correct).
273         inline base::result do_iconv(iconv_t cd, char const ** from,
274                         size_t * inbytesleft, char ** to, size_t * outbytesleft) const
275         {
276                 char const * const to_start = *to;
277                 size_t converted = iconv(cd, const_cast<char ICONV_CONST **>(from),
278                                 inbytesleft, to, outbytesleft);
279                 if (converted == (size_t)(-1)) {
280                         switch(errno) {
281                         case EINVAL:
282                         case E2BIG:
283                                 return base::partial;
284                         case EILSEQ:
285                         default:
286                                 return base::error;
287                         }
288                 }
289                 if (*to == to_start)
290                         return base::noconv;
291                 return base::ok;
292         }
293         iconv_t in_cd_;
294         iconv_t out_cd_;
295         /// The narrow encoding
296         string encoding_;
297 };
298
299 } // namespace anon
300
301
302 namespace lyx {
303
304 template<class Ios>
305 void setEncoding(Ios & ios, string const & encoding, ios_base::openmode mode)
306 {
307         // We must imbue the stream before openening the file
308         locale global;
309         locale locale(global, new iconv_codecvt_facet(encoding, mode));
310         ios.imbue(locale);
311 }
312
313
314 const char * iconv_codecvt_facet_exception::what() const throw()
315 {
316         return "iconv problem in iconv_codecvt_facet initialization";
317 }
318
319
320 ifdocstream::ifdocstream(string const & encoding) : base()
321 {
322         setEncoding(*this, encoding, in);
323 }
324
325
326 ifdocstream::ifdocstream(const char* s, ios_base::openmode mode,
327                          string const & encoding)
328         : base()
329 {
330         setEncoding(*this, encoding, in);
331         open(s, mode);
332 }
333
334
335 ofdocstream::ofdocstream(): base()
336 {
337         setEncoding(*this, "UTF-8", out);
338 }
339
340
341 ofdocstream::ofdocstream(const char* s, ios_base::openmode mode,
342                          string const & encoding)
343         : base()
344 {
345         setEncoding(*this, encoding, out);
346         open(s, mode);
347 }
348
349
350 void ofdocstream::reset(string const & encoding)
351 {
352         setEncoding(*this, encoding, out);
353 }
354
355
356
357 SetEnc setEncoding(string const & encoding)
358 {
359         return SetEnc(encoding);
360 }
361
362
363 odocstream & operator<<(odocstream & os, SetEnc e)
364 {
365         if (has_facet<iconv_codecvt_facet>(os.rdbuf()->getloc())) {
366                 // This stream must be a file stream, since we never imbue
367                 // any other stream with a locale having a iconv_codecvt_facet.
368                 // Flush the stream so that all pending output is written
369                 // with the old encoding.
370                 os.flush();
371                 locale locale(os.rdbuf()->getloc(),
372                         new iconv_codecvt_facet(e.encoding, ios_base::out));
373                 // FIXME Does changing the codecvt facet of an open file
374                 // stream always work? It does with gcc 4.1, but I have read
375                 // somewhere that it does not with MSVC.
376                 // What does the standard say?
377                 os.imbue(locale);
378         }
379         return os;
380 }
381
382
383 //CHECKME: I just copied the code above, and have no idea whether it
384 //is correct... (JMarc)
385 idocstream & operator<<(idocstream & is, SetEnc e)
386 {
387         if (has_facet<iconv_codecvt_facet>(is.rdbuf()->getloc())) {
388                 // This stream must be a file stream, since we never imbue
389                 // any other stream with a locale having a iconv_codecvt_facet.
390                 // Flush the stream so that all pending output is written
391                 // with the old encoding.
392                 //is.flush();
393                 locale locale(is.rdbuf()->getloc(),
394                         new iconv_codecvt_facet(e.encoding, ios_base::in));
395                 // FIXME Does changing the codecvt facet of an open file
396                 // stream always work? It does with gcc 4.1, but I have read
397                 // somewhere that it does not with MSVC.
398                 // What does the standard say?
399                 is.imbue(locale);
400         }
401         return is;
402 }
403
404
405 #if ! defined(USE_WCHAR_T)
406 odocstream & operator<<(odocstream & os, char c)
407 {
408         os.put(c);
409         return os;
410 }
411 #endif
412
413 }
414
415 #if ! defined(USE_WCHAR_T) && defined(__GNUC__)
416 // We get undefined references to these virtual methods. This looks like
417 // a bug in gcc. The implementation here does not do anything useful, since
418 // it is overriden in iconv_codecvt_facet.
419 namespace std {
420
421 template<> codecvt<lyx::char_type, char, mbstate_t>::result
422 codecvt<lyx::char_type, char, mbstate_t>::do_out(
423         mbstate_t &, const lyx::char_type *, const lyx::char_type *,
424         const lyx::char_type *&, char *, char *, char *&) const
425 {
426         return error;
427 }
428
429
430 template<> codecvt<lyx::char_type, char, mbstate_t>::result
431 codecvt<lyx::char_type, char, mbstate_t>::do_unshift(
432         mbstate_t &, char *, char *, char *&) const
433 {
434         return error;
435 }
436
437
438 template<> codecvt<lyx::char_type, char, mbstate_t>::result
439 codecvt<lyx::char_type, char, mbstate_t>::do_in(
440         mbstate_t &, const char *, const char *, const char *&,
441         lyx::char_type *, lyx::char_type *, lyx::char_type *&) const
442 {
443         return error;
444 }
445
446
447 template<>
448 int codecvt<lyx::char_type, char, mbstate_t>::do_encoding() const throw()
449 {
450         return 0;
451 }
452
453
454 template<>
455 bool codecvt<lyx::char_type, char, mbstate_t>::do_always_noconv() const throw()
456 {
457         return true;
458 }
459
460 #if __GNUC__ == 3 && __GNUC_MINOR__ < 4
461
462 template<>
463 int codecvt<lyx::char_type, char, mbstate_t>::do_length(
464         mbstate_t const &, const char *, const char *, size_t) const
465 {
466         return 1;
467 }
468
469 #else
470
471 template<>
472 int codecvt<lyx::char_type, char, mbstate_t>::do_length(
473         mbstate_t &, const char *, const char *, size_t) const
474 {
475         return 1;
476 }
477
478 #endif
479
480 template<>
481 int codecvt<lyx::char_type, char, mbstate_t>::do_max_length() const throw()
482 {
483         return 4;
484 }
485
486 } // namespace std
487 #endif