用C ++读取二进制文件并输出结果为hexdump

时间:2015-02-14 09:19:24

标签: c++ fstream binaryfiles hexdump

我正在为学校项目构建一个更简单的xxd版本,并且我只在阅读二进制文件时挂起文件输出(即当我读取纯文本文件时,所有内容按预期工作。)

预期产出:

0000000: 504b 0304 1400 0000 0800 70b6 4746 562d  PK........p.GFV-
0000010: e841 3600 0000 3f00 0000 0900 1c00 706c  .A6...?.......pl
0000020: 6169 6e2e 7478 7455 5409 0003 7307 d754  ain.txtUT...s..T
0000030: ba1d d754 7578 0b00 0104 f501 0000 0414  ...Tux..........
0000040: 0000 000b c9c8 2c56 00a2 e2fc dc54 85e2  ......,V.....T..
0000050: c4dc 829c 5485 92d4 8a12 ae10 a844 625e  ....T........Db^
0000060: 7e49 466a 9142 4e66 5eaa 4266 9e02 9003  ~IFj.BNf^.Bf....
0000070: 56a0 9096 9993 ca05 0050 4b01 021e 0314  V........PK.....
0000080: 0000 0008 0070 b647 4656 2de8 4136 0000  .....p.GFV-.A6..
0000090: 003f 0000 0009 0018 0000 0000 0001 0000  .?..............
00000a0: 00a4 8100 0000 0070 6c61 696e 2e74 7874  .......plain.txt
00000b0: 5554 0500 0373 07d7 5475 780b 0001 04f5  UT...s..Tux.....
00000c0: 0100 0004 1400 0000 504b 0506 0000 0000  ........PK......
00000d0: 0100 0100 4f00 0000 7900 0000 0000       ....O...y.....

实际输出:

0000000: 504b 0304 1400 0000 0800 70ffb6 4746 562d  PK........p.GFV-
0000010: ffe841 3600 0000 3f00 0000 0900 1c00 706c  .A6...?.......pl
0000020: 6169 6e2e 7478 7455 5409 0003 7307 ffd754  ain.txtUT...s..T
0000030: ffba1d ffd754 7578 0b00 0104 fff501 0000 0414  ...Tux..........
0000040: 0000 000b ffc9ffc8 2c56 00ffa2 ffe2fffc ffdc54 ff85ffe2  ......,V.....T..
0000050: ffc4ffdc ff82ff9c 54ff85 ff92ffd4 ff8a12 ffae10 ffa844 625e  ....T........Db^
0000060: 7e49 466a ff9142 4e66 5effaa 4266 ff9e02 ff9003  ~IFj.BNf^.Bf....
0000070: 56ffa0 ff90ff96 ff99ff93 ffca05 0050 4b01 021e 0314  V........PK.....
0000080: 0000 0008 0070 ffb647 4656 2dffe8 4136 0000  .....p.GFV-.A6..
0000090: 003f 0000 0009 0018 0000 0000 0001 0000  .?..............
00000a0: 00ffa4 ff8100 0000 0070 6c61 696e 2e74 7874  .......plain.txt
00000b0: 5554 0500 0373 07ffd7 5475 780b 0001 04fff5  UT...s..Tux.....
00000c0: 0100 0004 1400 0000 504b 0506 0000 0000  ........PK......
00000d0: 0100 0100 4f00 0000 7900 0000 0000 0000  ....O...y.......

Here's a quick diff of the two files for easy reference.

我感觉这就是我阅读文件的方式。我决定坚持使用C ++库并使用std::ifstream来读取文件。这是我的实施:

void DumpUtility::dump(const char* filename) {
    std::ifstream file(filename, std::ifstream::in|std::ifstream::binary); // open file for reading

    if(file.is_open()) { // ensure file is open and ready to go
        std::cout << std::hex << std::setfill('0'); // pad PC with leading zeros
        char buffer[this->bytesPerLine]; // buffer symbols

        while(file.good()) {
            file.read(buffer, this->bytesPerLine);
            std::cout << std::setw(7) << this->pc << ":";
            for(unsigned int i = 0; i < this->bytesPerLine; i++) {
                if(i % 2 == 0) std::cout << " ";

                std::cout << std::setw(2) << (unsigned short)buffer[i];
            }

            std::cout << "  ";
            for(unsigned int i = 0; i < this->bytesPerLine; i++) {
                if(isprint(buffer[i]) == 0) { // checks if character is printable
                    std::cout << ".";
                } else {
                    std::cout << buffer[i];
                }
            }
            std::cout << std::endl;
            this->pc += this->bytesPerLine;
        }
    } else {
        std::cerr << "Couldn't open file. General error..." << std::endl;
        exit(EXIT_FAILURE);
    }

    file.close();
}

因此,file.read(buffer, this->bytesPerLine);是读取文件的行,我通过iomanip格式化数据。我也试过使用printf(%02X, (unsigned short)buffer[i]);没有运气 - 输出相同。

做了什么

  • 使用多个编译器重新编译程序
    • clang++ -O0 -g -Wall -c
    • g++ -g -Wall -c
  • g++的两个版本
    • 4.2.1 - OS X 10.10
    • 3.4.6 - Sun Solaris 10
  • lldbgdb中进行调试,以便了解这些额外F的来源,我一无所获。

似乎std::ifstream::read()正在做的事情不仅仅是存储特殊字符。有谁知道这些额外的F's代表什么,有人能指出我正确的方向来解决这个问题吗?

注意:我尝试使用std::ifstream了解如何执行此操作,而不是使用cstdio。如果最坏的情况发生,那么我将使用cstdio中的文件IO实用程序来实现该方法。如果我不能使用ifstream执行此操作,那么我很乐意接受解释,以便我可以学习!

2 个答案:

答案 0 :(得分:2)

您的问题是您的char类型已签名。所以当你写(unsigned short)buffer[i]时,它被翻译为char - &gt; int - &gt;未签约的短片。

如果字节低于0x7f,则视为&gt; = 0并且一切正常,但如果没有,则在内部用1位填充以形成负int。你的第一个问题是b6。实际发生的是:

b6 (signed char) -> FFFFFFb6 (signed int) -> FFB6 (unsigned short)

希望修复很简单。你只需写:

std::cout << std::setw(2) << (unsigned short) (unsigned char) buffer[i];

因为现在转换将正确:

b6 (signed char) -> b6 (unsigned char) -> b6 (signed int) -> b6 (unsigned short)

答案 1 :(得分:0)

尝试以下方法:

std::cout << std::setw(2) << (unsigned short)buffer[i] & 0xFF;

或者

std::cout << std::setw(2) << (unsigned short)(unsigned char)buffer[i];

或者

unsigned char buffer[this->bytesPerLine];
...
std::cout << (char)buffer[i];

isprint对签名字符使用不正确。问题类似:当char值为负时,它会扩展为负整数,而不是值为127以上的正整数(isprint期望的值。)

因此,如果您使用签名字符,则呼叫应为:

if(isprint((unsigned char)buffer[i]) == 0)