使用虚拟方法将对象写入和读取到二进制文件

时间:2011-02-26 10:03:33

标签: c++

您好我正在开发一个模拟程序,它会在请求时尝试将程序的状态(变量和对象)保存到二进制文件中,以便在需要时可以恢复模拟。

正如笔记:我知道这在不同的CPU架构中是不兼容的,这绝对没问题!

在编写一个具有虚拟方法的对象然后尝试将其读回来之前,一切似乎都工作正常。

以下代码说明了此问题:

header.hpp

using namespace std;

class parent
{
        public:
                int mValue;
                virtual string getName() =0;
                virtual size_t getSize() =0;

                parent(int value) : mValue(value)
                {

                }
};

class bob : public parent
{
        public:
                bob(int value) : parent(value)
                {

                }

        string getName();
        size_t getSize() { return sizeof(bob); }
};

string bob::getName()
{
        string name("bob");
        return name;
}

class sarah : public parent
{
        public:
                sarah(int value) : parent(value)
                {

                }

        string getName();
        size_t getSize() { return sizeof(sarah); }
};

string sarah::getName()
{
        string name("sarah");
        return name;
}

write.cpp

#include <iostream>
#include <fstream>
#include <string>
#include "header.hpp"

int main()
{
    sarah girl(1);
    bob boy(2);

    parent* child1 = &girl;
    parent* child2 = &boy;

    cout << "Created child called " << child1->getName() << endl;
    cout << "Created child called " << child2->getName() << endl;

    //save sarah and bob to a binary file
    ofstream file("temp.bin", ios::binary | ios::trunc);

    if(!file.is_open())
            return 1;

    //format <size><data><size><data>....
    size_t tempSize=0;

    //write child1
    tempSize = child1->getSize();
    file.write( (char*) &tempSize,sizeof(size_t));

    file.write( (char*) child1,tempSize);

    tempSize = child2->getSize();
    file.write( (char*) &tempSize,sizeof(size_t));

    file.write( (char*) child2,tempSize);

    file.close();

    return 0;
}

read.cpp

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
#include "header.hpp"

int main()
{

    //read sarah and bob from a binary file
    ifstream file("temp.bin", ios::binary);

    //format <size><data><size><data>....
    size_t tempSize=0;

    //get size of child1
    file.read( (char*) &tempSize, sizeof(size_t));

    //allocate memory for child1
    parent* child1= (parent*) malloc(tempSize);
    //read child 1 back
    file.read( (char*) child1,tempSize);

    //get size of child2
    file.read( (char*) &tempSize, sizeof(size_t));

    //allocate memory for child2
    parent* child2= (parent*) malloc(tempSize);
    //read child 2 back
    file.read( (char*) child2,tempSize);

    file.close();

    //Using virtual methods causes SEGFAULT
    cout << "Recreated child" << child1->getName() << endl;
    cout << "Recreated child" << child2->getName() << endl;



    return 0;
}

构建和运行如下:

g++ -g write.cpp -o write ; ./write
g++ -g read.cpp -o read  ; ./read

当我逐步浏览gdb中的读取程序时,我发现问题似乎是v表指针。当我在读取程序中重新创建“sarah”(child1)时,v表指针是写程序存在的指针,而不是读取程序。因此,可能这个写程序中“sarah”的v表指针指向导致SEGFAULT的无效内存区域。

我有两个问题:

  • 是否可以将v-table指针信息保存到“write”程序中的二进制文件中,以便在“正确”的程序中完美地重新创建我的对象,而无需使用诸如Boost ::之类的库。序列化或POST ++为我处理这个?

  • 如果不可能......或者它非常复杂,那么我将不得不添加一个构造函数和一个“saveState()”方法(可以分别对ifstream和ofstream对象起作用),这样每个类(在本例中为sarah和bob)处理从二进制文件中保存和读取它的状态。这个问题是我有多个派生自类“parent”的类,所以我需要一种方法让“read”程序找出从读取二进制文件调用的构造函数。

    我想出了一种方法来确定要调用哪个构造函数。这将是

  • 为每个来自“父”的类提供唯一ID

  • 在“写入”程序中,为二进制文件添加唯一ID
  • 在“读取”程序中读取每个唯一ID,然后使用switch语句调用相关的构造函数。

    这不是很优雅,但每当我添加一个派生自“parent”的新类时,我必须给它一个ID并将其添加到“read”中的switch语句中。有更好的方法吗?

感谢阅读,我知道我的帖子很长!

1 个答案:

答案 0 :(得分:1)

每次编译程序时,它都会将函数放在内存中的不同位置。此外,在某些操作系统配置中,每次重新启动程序时,功能甚至可能会移动。这是一种称为地址空间布局随机化的安全功能。如果你知道肯定你将从完全相同的二进制文件中读取和写入一个对象,那么你可以 通过放置你的读写函数来做你想做的事情在同一个程序中,而不是两个不同的程序。但是,即使这样也存在一个问题,即如果进行更改并重新编译,则无法再读取旧的数据文件。

Boost::Serialization是专门为避免所有这些问题而创建的,包括我确定一些我甚至都不知道,经过大量同行评审和测试,并且作为奖金获得了非常宽松的许可。使用这样的图书馆不是“诉诸”的,这是一种特权。