13

一些信息:

  • 我只在 Linux 上试过这个
  • 我已经尝试过 GCC (7.2.0) 和 Clang (3.8.1)
  • 据我了解,它需要 C++11 或更高版本

当我运行它时会发生什么

我得到重复的预期字符串“abcd”,直到它到达 4094 个字符的位置。之后它输出的就是这个符号“?” 直到文件结束。

我怎么看这件事?

我认为这不是预期的行为,它一定是某个地方的错误。

您可以使用以下代码进行测试:

#include <iostream>
#include <fstream>
#include <locale>
#include <codecvt>

void createTestFile() {
  std::ofstream file ("utf16le.txt", std::ofstream::binary);
  if (file.is_open()) {
    uint16_t bom = 0xFEFF; // UTF-16 little endian BOM
    uint64_t abcd = 0x0064006300620061; // UTF-16 "abcd" string
    file.write((char*)&bom,2);
    for (size_t i=0; i<2000; i++) {
      file.write((char*)&abcd,8);
    }
    file.close();
  }
}

int main() {
  //createTestFile(); // uncomment to make the test file

  std::wifstream file;
  std::wstring line;

  file.open("utf16le.txt");
  file.imbue(std::locale(file.getloc(), new std::codecvt_utf16<wchar_t, 0x10ffff, std::consume_header>));
  if (file.is_open()) {
    while (getline(file,line)) {
      std::wcout << line << std::endl;
    }
  }
}
4

1 回答 1

11

对我来说,这看起来像是一个库错误。使用 gcc 7.1.1 编译示例程序gdb

(gdb) n
28      while (getline(file,line)) {
(gdb) n
29        std::wcout << line << std::endl;
(gdb) p line.size()
$1 = 8000

正如预期的那样,读取了 8000 个字符。但是之后:

(gdb) p line[4092]
$18 = (__gnu_cxx::__alloc_traits<std::allocator<wchar_t> >::value_type &) @0x628240: 97 L'a'
(gdb) p line[4093]
$19 = (__gnu_cxx::__alloc_traits<std::allocator<wchar_t> >::value_type &) @0x628244: 98 L'b'
(gdb) p line[4094]
$20 = (__gnu_cxx::__alloc_traits<std::allocator<wchar_t> >::value_type &) @0x628248: 25344 L'挀'
(gdb) p line[4095]
$21 = (__gnu_cxx::__alloc_traits<std::allocator<wchar_t> >::value_type &) @0x62824c: 25600 L'搀'
(gdb) p line[4096]
$22 = (__gnu_cxx::__alloc_traits<std::allocator<wchar_t> >::value_type &) @0x628250: 24832 L'愀'

line[4092]看起来line[4093]不错。但是,我看到line[4094], line[4095], and line[4096], 包含6300, 6400and 6500, 而不是0063, 0064, and 0065

因此,实际上从字符 4094 而不是 4096 开始就搞砸了。我转储了二进制 UTF-16 文件,它看起来对我来说是正确的。BOM 标记之后是文件全部内容的一致字节序。

唯一令人费解的是为什么 clang 和 gcc 都会受到影响,但谷歌的快速搜索表明 clang 也使用 gcc 的 libstdc++,至少直到最近。所以,这对我来说就像一个 libstdc++ 错误。

于 2017-08-24T21:49:05.657 回答