2006-10-11 19:40:50 +00:00
|
|
|
/**
|
|
|
|
* \file docstream.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Georg Baum
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "docstream.h"
|
2006-10-17 11:58:21 +00:00
|
|
|
#include "unicode.h"
|
2006-10-11 19:40:50 +00:00
|
|
|
|
|
|
|
#include <cerrno>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <iconv.h>
|
|
|
|
#include <locale>
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
using lyx::ucs4_codeset;
|
|
|
|
using lyx::ucs2_codeset;
|
|
|
|
|
2006-10-26 15:01:45 +00:00
|
|
|
using std::string;
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
char const * utf8_codeset = "UTF-8";
|
|
|
|
|
|
|
|
// We use C IO throughout this file, because the facets might be used with
|
|
|
|
// lyxerr in the future.
|
|
|
|
|
|
|
|
|
|
|
|
/// codecvt facet for conversion of UCS4 (internal representation) to UTF8
|
|
|
|
/// (external representation) or vice versa
|
2006-10-26 15:01:45 +00:00
|
|
|
class iconv_codecvt_facet : public std::codecvt<lyx::char_type, char, std::mbstate_t>
|
2006-10-11 19:40:50 +00:00
|
|
|
{
|
|
|
|
typedef std::codecvt<lyx::char_type, char, std::mbstate_t> base;
|
|
|
|
public:
|
|
|
|
/// Constructor. You have to specify with \p inout whether you want
|
|
|
|
/// to use this facet only for input, only for output or for both.
|
2006-10-26 15:01:45 +00:00
|
|
|
explicit iconv_codecvt_facet(string const & encoding = "UTF-8",
|
|
|
|
std::ios_base::openmode inout = std::ios_base::in | std::ios_base::out,
|
2006-10-11 19:40:50 +00:00
|
|
|
size_t refs = 0)
|
2006-10-26 15:01:45 +00:00
|
|
|
: base(refs), utf8_(encoding == "UTF-8")
|
2006-10-11 19:40:50 +00:00
|
|
|
{
|
|
|
|
if (inout & std::ios_base::in) {
|
2006-10-26 15:01:45 +00:00
|
|
|
in_cd_ = iconv_open(ucs4_codeset, encoding.c_str());
|
2006-10-11 19:40:50 +00:00
|
|
|
if (in_cd_ == (iconv_t)(-1)) {
|
|
|
|
fprintf(stderr, "Error %d returned from iconv_open(in_cd_): %s\n",
|
|
|
|
errno, strerror(errno));
|
|
|
|
fflush(stderr);
|
2006-10-26 15:01:45 +00:00
|
|
|
throw lyx::iconv_codecvt_facet_exception();
|
2006-10-11 19:40:50 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
in_cd_ = (iconv_t)(-1);
|
|
|
|
if (inout & std::ios_base::out) {
|
2006-10-26 15:01:45 +00:00
|
|
|
out_cd_ = iconv_open(encoding.c_str(), ucs4_codeset);
|
2006-10-11 19:40:50 +00:00
|
|
|
if (out_cd_ == (iconv_t)(-1)) {
|
|
|
|
fprintf(stderr, "Error %d returned from iconv_open(out_cd_): %s\n",
|
|
|
|
errno, strerror(errno));
|
|
|
|
fflush(stderr);
|
2006-10-26 15:01:45 +00:00
|
|
|
throw lyx::iconv_codecvt_facet_exception();
|
2006-10-11 19:40:50 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
out_cd_ = (iconv_t)(-1);
|
|
|
|
}
|
|
|
|
protected:
|
2006-10-26 15:01:45 +00:00
|
|
|
virtual ~iconv_codecvt_facet()
|
2006-10-11 19:40:50 +00:00
|
|
|
{
|
|
|
|
if (in_cd_ != (iconv_t)(-1))
|
|
|
|
if (iconv_close(in_cd_) == -1) {
|
|
|
|
fprintf(stderr, "Error %d returned from iconv_close(in_cd_): %s\n",
|
|
|
|
errno, strerror(errno));
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
if (out_cd_ != (iconv_t)(-1))
|
|
|
|
if (iconv_close(out_cd_) == -1) {
|
|
|
|
fprintf(stderr, "Error %d returned from iconv_close(out_cd_): %s\n",
|
|
|
|
errno, strerror(errno));
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virtual result do_out(state_type &, intern_type const * from,
|
|
|
|
intern_type const * from_end, intern_type const *& from_next,
|
|
|
|
extern_type * to, extern_type * to_end,
|
|
|
|
extern_type *& to_next) const
|
|
|
|
{
|
|
|
|
size_t inbytesleft = (from_end - from) * sizeof(intern_type);
|
|
|
|
size_t outbytesleft = (to_end - to) * sizeof(extern_type);
|
|
|
|
from_next = from;
|
|
|
|
to_next = to;
|
|
|
|
return do_iconv(out_cd_, reinterpret_cast<char const **>(&from_next),
|
|
|
|
&inbytesleft, &to_next, &outbytesleft);
|
|
|
|
}
|
|
|
|
virtual result do_unshift(state_type &, extern_type * to,
|
|
|
|
extern_type *, extern_type *& to_next) const
|
|
|
|
{
|
|
|
|
// utf8 does not use shifting
|
|
|
|
to_next = to;
|
|
|
|
return base::noconv;
|
|
|
|
}
|
|
|
|
virtual result do_in(state_type &,
|
|
|
|
extern_type const * from, extern_type const * from_end,
|
|
|
|
extern_type const *& from_next,
|
|
|
|
intern_type * to, intern_type * to_end,
|
|
|
|
intern_type *& to_next) const
|
|
|
|
{
|
|
|
|
size_t inbytesleft = (from_end - from) * sizeof(extern_type);
|
|
|
|
size_t outbytesleft = (to_end - to) * sizeof(intern_type);
|
|
|
|
from_next = from;
|
|
|
|
to_next = to;
|
|
|
|
return do_iconv(in_cd_, &from_next, &inbytesleft,
|
|
|
|
reinterpret_cast<char **>(&to_next),
|
|
|
|
&outbytesleft);
|
|
|
|
}
|
|
|
|
virtual int do_encoding() const throw()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
virtual bool do_always_noconv() const throw()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual int do_length(state_type & /*state*/, extern_type const * from,
|
|
|
|
extern_type const * end, size_t max) const
|
|
|
|
{
|
|
|
|
// The docs are a bit unclear about this method.
|
|
|
|
// It seems that we should calculate the actual length of the
|
|
|
|
// converted sequence, but that would not make sense, since
|
|
|
|
// once could just do the conversion directly.
|
|
|
|
// Therefore we just return the number of unconverted
|
|
|
|
// characters, since that is the best guess we can do.
|
|
|
|
#if 0
|
|
|
|
intern_type * to = new intern_type[max];
|
|
|
|
intern_type * to_end = to + max;
|
|
|
|
intern_type * to_next = to;
|
|
|
|
extern_type const * from_next = from;
|
|
|
|
do_in(state, from, end, from_next, to, to_end, to_next);
|
|
|
|
delete[] to;
|
|
|
|
return to_next - to;
|
|
|
|
#else
|
|
|
|
size_t const length = end - from;
|
|
|
|
return std::min(length, max);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
virtual int do_max_length() const throw()
|
|
|
|
{
|
2006-10-26 15:01:45 +00:00
|
|
|
// UTF8 uses at most 6 bytes to represent one UCS4 code point.
|
|
|
|
// All other encodings encode one UCS4 code point in one byte
|
|
|
|
// (and can therefore only encode a subset of UCS4)
|
|
|
|
return utf8_ ? 6 : 1;
|
2006-10-11 19:40:50 +00:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
/// Do the actual conversion. The interface is equivalent to that of
|
|
|
|
/// iconv() (but const correct).
|
|
|
|
inline base::result do_iconv(iconv_t cd, char const ** from,
|
|
|
|
size_t * inbytesleft, char ** to, size_t * outbytesleft) const
|
|
|
|
{
|
|
|
|
char const * to_start = *to;
|
|
|
|
size_t converted = iconv(cd, const_cast<char ICONV_CONST **>(from),
|
|
|
|
inbytesleft, to, outbytesleft);
|
|
|
|
if (converted == (size_t)(-1)) {
|
|
|
|
switch(errno) {
|
|
|
|
case EINVAL:
|
|
|
|
case E2BIG:
|
|
|
|
return base::partial;
|
|
|
|
case EILSEQ:
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Error %d returned from iconv: %s\n",
|
|
|
|
errno, strerror(errno));
|
|
|
|
fflush(stderr);
|
|
|
|
return base::error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*to == to_start)
|
|
|
|
return base::noconv;
|
|
|
|
return base::ok;
|
|
|
|
}
|
|
|
|
iconv_t in_cd_;
|
|
|
|
iconv_t out_cd_;
|
2006-10-26 15:01:45 +00:00
|
|
|
/// Is the narrow encoding UTF8?
|
|
|
|
bool utf8_;
|
2006-10-11 19:40:50 +00:00
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace anon
|
2006-10-11 19:40:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2006-10-26 15:01:45 +00:00
|
|
|
const char * iconv_codecvt_facet_exception::what() const throw()
|
|
|
|
{
|
|
|
|
return "iconv problem in iconv_codecvt_facet initialization";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
idocfstream::idocfstream() : base()
|
|
|
|
{
|
|
|
|
std::locale global;
|
2006-10-26 15:01:45 +00:00
|
|
|
std::locale locale(global, new iconv_codecvt_facet(utf8_codeset, in));
|
2006-10-11 19:40:50 +00:00
|
|
|
imbue(locale);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
idocfstream::idocfstream(const char* s, std::ios_base::openmode mode)
|
|
|
|
: base()
|
|
|
|
{
|
|
|
|
// We must imbue the stream before openening the file
|
|
|
|
std::locale global;
|
2006-10-26 15:01:45 +00:00
|
|
|
std::locale locale(global, new iconv_codecvt_facet(utf8_codeset, in));
|
2006-10-11 19:40:50 +00:00
|
|
|
imbue(locale);
|
|
|
|
open(s, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-26 15:01:45 +00:00
|
|
|
odocfstream::odocfstream(string const & encoding) : base()
|
2006-10-11 19:40:50 +00:00
|
|
|
{
|
|
|
|
std::locale global;
|
2006-10-26 15:01:45 +00:00
|
|
|
std::locale locale(global, new iconv_codecvt_facet(encoding, out));
|
2006-10-11 19:40:50 +00:00
|
|
|
imbue(locale);
|
|
|
|
}
|
|
|
|
|
2006-10-26 15:01:45 +00:00
|
|
|
|
|
|
|
odocfstream::odocfstream(const char* s, std::ios_base::openmode mode,
|
|
|
|
string const & encoding)
|
2006-10-11 19:40:50 +00:00
|
|
|
: base()
|
|
|
|
{
|
|
|
|
// We must imbue the stream before openening the file
|
|
|
|
std::locale global;
|
2006-10-26 15:01:45 +00:00
|
|
|
std::locale locale(global, new iconv_codecvt_facet(encoding, out));
|
2006-10-11 19:40:50 +00:00
|
|
|
imbue(locale);
|
|
|
|
open(s, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2006-10-12 19:18:17 +00:00
|
|
|
|
|
|
|
#if (!defined(HAVE_WCHAR_T) || SIZEOF_WCHAR_T != 4) && defined(__GNUC__)
|
|
|
|
// We get undefined references to these virtual methods. This looks like
|
|
|
|
// a bug in gcc. The implementation here does not do anything useful, since
|
2006-10-26 15:01:45 +00:00
|
|
|
// it is overriden in iconv_codecvt_facet.
|
2006-10-12 19:18:17 +00:00
|
|
|
namespace std {
|
|
|
|
template<> codecvt<lyx::char_type, char, mbstate_t>::result
|
|
|
|
codecvt<lyx::char_type, char, mbstate_t>::do_out(mbstate_t &, const lyx::char_type *, const lyx::char_type *, const lyx::char_type *&,
|
|
|
|
char *, char *, char *&) const { return error; }
|
|
|
|
template<> codecvt<lyx::char_type, char, mbstate_t>::result
|
|
|
|
codecvt<lyx::char_type, char, mbstate_t>::do_unshift(mbstate_t &, char *, char *, char *&) const { return error; }
|
|
|
|
template<> codecvt<lyx::char_type, char, mbstate_t>::result
|
|
|
|
codecvt<lyx::char_type, char, mbstate_t>::do_in(mbstate_t &, const char *, const char *, const char *&,
|
|
|
|
lyx::char_type *, lyx::char_type *, lyx::char_type *&) const { return error; }
|
|
|
|
template<> int codecvt<lyx::char_type, char, mbstate_t>::do_encoding() const throw() { return 0; }
|
|
|
|
template<> bool codecvt<lyx::char_type, char, mbstate_t>::do_always_noconv() const throw() { return true; }
|
|
|
|
#if __GNUC__ == 3 && __GNUC_MINOR__ < 4
|
|
|
|
template<> int codecvt<lyx::char_type, char, mbstate_t>::do_length(mbstate_t const &, const char *, const char *, size_t) const { return 1; }
|
|
|
|
#else
|
|
|
|
template<> int codecvt<lyx::char_type, char, mbstate_t>::do_length(mbstate_t &, const char *, const char *, size_t) const { return 1; }
|
|
|
|
#endif
|
|
|
|
template<> int codecvt<lyx::char_type, char, mbstate_t>::do_max_length() const throw() { return 4; }
|
|
|
|
}
|
|
|
|
#endif
|