比较两个文件,知道分段错误发生在哪里

时间:2019-02-13 10:26:16

标签: c++ file-io segmentation-fault ifstream

我具有以下结构:

int main(int argc, char **argv) {
     try {
        FX3USBConnection fx3USB3Connection = FX3USB3Connection();
        fx3USB3Connection.send_text_file();
    }
    catch (ErrorOpeningLib& e) {
        printf("Error opening library\n");
        return -1;
    }
    catch (NoDeviceFound& e) {
        printf("No device found\n");
        return 0;
    }

    return 0;
}

在send_text_files中,我要做的最后一件事是比较两个txt文件,如下所示:

printf("Loopback recieved, checking if I received the same that I sended\n");
files_match(out_text_filename, in_text_filename);
printf("Exited without problem");
return; // (actually implicit)

我已经使用了files_match函数的2个版本,但最后一个是该Compare two files的精确副本。

bool FX3USB3Connection::files_match(const std::string &p1, const std::string &p2) {
    bool files_match;
    std::ifstream f1(p1, std::ifstream::binary|std::ifstream::ate);
    std::ifstream f2(p2, std::ifstream::binary|std::ifstream::ate);

    if (f1.fail() || f2.fail()) {
        return false; //file problem
    }

    if (f1.tellg() != f2.tellg()) {
        return false; //size mismatch
    }

    //seek back to beginning and use std::equal to compare contents
    f1.seekg(0, std::ifstream::beg);
    f2.seekg(0, std::ifstream::beg);
    files_match = std::equal(std::istreambuf_iterator<char>(f1.rdbuf()),
                      std::istreambuf_iterator<char>(),
                      std::istreambuf_iterator<char>(f2.rdbuf()));
    f1.close();
    f2.close();
    if (files_match) { printf("Files match\n"); }
    else { printf("Files not equal\n"); }
    return files_match;
}

有时我会报错,有时却没有。当我得到错误时,我得到:

Loopback recieved, checking if I received the same that I sended
Files match

Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)

因此,调用files_match之后的打印没有被打印,因此我想问题出在函数之内。但是,我在return语句之前进行打印,并且打印正确。

PS:我对函数files_match进行了注释,并且没有问题。

PS1:文件可以包含以下字符:¥

1 个答案:

答案 0 :(得分:-1)

是的,正如@john所建议的那样,我必须添加fflush()函数。在那里,我意识到错误实际上在所有循环之外,但实际上是在脱离try {}部分时。对我来说,这并没有破坏fx3USBConnection。

谢谢!知道fprint实际上已经缓冲了,我真是一个误导。