繁体   English   中英

如何在 C++ 中将 ISO-8859-7 字符串“转换”为 UTF-8?

[英]How can I “convert” ISO-8859-7 strings to UTF-8 in C++?

我正在使用 10 多年前的机器,这些机器使用 ISO 8859-7 来表示每个使用单个字节的希腊字符。 我需要捕获这些字符并将它们转换为 UTF-8,以便将它们注入 JSON 以通过 HTTPS 发送。 另外,我使用的是 GCC v4.4.7,我不想升级,所以我不能使用 codeconv 之类的。

示例: "OΛΑ": 我得到字符值[ 0xcf, 0xcb, 0xc1, ] ,我需要写这个字符串"\Ο\Λ\Α"

PS:我不是字符集专家,所以请避免像“ISO 8859 是 Unicode 的子集,因此您只需要实现算法”之类的哲学答案。

鉴于要映射的值很少,一个简单的解决方案是使用查找表。

伪代码:

id_offset    = 0x80  // 0x00 .. 0x7F same in UTF-8
c1_offset    = 0x20  // 0x80 .. 0x9F control characters

table_offset = id_offset + c1_offset

table = [
    u8"\u00A0",  // 0xA0
    u8"‘",       // 0xA1
    u8"’",
    u8"£",
    u8"€",
    u8"₯",
    // ... Refer to ISO 8859-7 for full list of characters.
]

let S be the input string
let O be an empty output string
for each char C in S
    reinterpret C as unsigned char U
    if U less than id_offset       // same in both encodings
        append C to O
    else if U less than table_offset  // control code
        append char '\xC2' to O  // lead byte
        append char C to O
    else
        append string table[U - table_offset] to O

综上所述,我建议使用库来节省一些时间。

一种方法是使用 Posix libiconv库。 在 Linux 上,所需的函数( iconv_openiconviconv_close )甚至包含在libc因此不需要额外的链接。 在您的旧机器上,您可能需要安装libiconv但我对此表示怀疑。

转换可能像这样简单:

#include <iconv.h>

#include <cerrno>
#include <cstring>
#include <iostream>
#include <iterator>
#include <stdexcept>
#include <string>

// A wrapper for the iconv functions
class Conv {
public:
    // Open a conversion descriptor for the two selected character sets
    Conv(const char* to, const char* from) : cd(iconv_open(to, from)) {
        if(cd == reinterpret_cast<iconv_t>(-1))
            throw std::runtime_error(std::strerror(errno));
    }

    Conv(const Conv&) = delete;

    ~Conv() { iconv_close(cd); }

    // the actual conversion function
    std::string convert(const std::string& in) {
        const char* inbuf = in.c_str();
        size_t inbytesleft = in.size();

        // make the "out" buffer big to fit whatever we throw at it and set pointers
        std::string out(inbytesleft * 6, '\0');
        char* outbuf = out.data();
        size_t outbytesleft = out.size();

        // the const_cast shouldn't be needed but my "iconv" function declares it
        // "char**" not "const char**"
        size_t non_rev_converted = iconv(cd, const_cast<char**>(&inbuf),
                                         &inbytesleft, &outbuf, &outbytesleft);

        if(non_rev_converted == static_cast<size_t>(-1)) {
            // here you can add misc handling like replacing erroneous chars
            // and continue converting etc.
            // I'll just throw...
            throw std::runtime_error(std::strerror(errno));
        }

        // shrink to keep only what we converted
        out.resize(outbuf - out.data());

        return out;
    }

private:
    iconv_t cd;
};

int main() {
    Conv cvt("UTF-8", "ISO-8859-7");

    // create a string from the ISO-8859-7 data
    unsigned char data[]{0xcf, 0xcb, 0xc1};
    std::string iso88597_str(std::begin(data), std::end(data));

    auto utf8 = cvt.convert(iso88597_str);
    std::cout << utf8 << '\n';
}

输出(UTF-8):

ΟΛΑ

使用它,您可以创建一个从 ISO-8859-7 到 UTF-8 的映射表,并将其包含在您的项目中而不是iconv

演示

好的,我决定自己做这件事,而不是寻找兼容的库。 这就是我所做的。

主要问题是弄清楚如何使用单个用于 ISO 的字节填充 Unicode 的两个字节,因此我使用调试器读取相同字符的值,首先由旧机器写入,然后用常量字符串(UTF -8 默认)。 我从“O”和“Π”开始,看到在 UTF-8 中,第一个字节总是 0xCE,而第二个字节填充了 ISO 值加上一个偏移量 (-0x30)。 我构建了以下代码来实现这一点,并使用了一个填充了所有希腊字母(大写和小写)的测试字符串。 然后我意识到从“π”(ISO 中的 0xF0)开始,第一个字节和第二个字节的偏移量都发生了变化,所以我添加了一个测试来确定应用这两个规则中的哪一个。 以下方法返回一个布尔值,让调用者知道原始字符串是否包含 ISO 字符(用于其他目的)并用新字符串覆盖作为参考传递的原始字符串。 我使用字符数组而不是字符串来与项目的其余部分保持一致,该项目基本上是一个用 C++ 编写的 C 项目。

bool iso_to_utf8(char* in){
bool wasISO=false;

if(in == NULL)
    return wasISO;

// count chars
int i=strlen(in);
if(!i)
    return wasISO;

// create and size new buffer
char *out = new char[2*i];
// fill with 0's, useful for watching the string as it gets built
memset(out, 0, 2*i);

// ready to start from head of old buffer
i=0;
// index for new buffer
int j=0;
// for each char in old buffer
while(in[i]!='\0'){
    if(in[i] >= 0){
        // it's already utf8-compliant, take it as it is
        out[j++] = in[i];
    }else{
        // it's ISO
        wasISO=true;
        // get plain value
        int val = in[i] & 0xFF;
        // first byte to CF or CE
        out[j++]= val > 0xEF ? 0xCF : 0xCE;
        // second char to plain value normalized
        out[j++] = val - (val > 0xEF ? 0x70 : 0x30);
    }
    i++;
}
// add string terminator
out[j]='\0';
// paste into old char array
strcpy(in, out);

return wasISO;

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM