gpt4 book ai didi

c++ - Boost::Serialization 和 MFC Doc/View 架构

转载 作者:太空狗 更新时间:2023-10-29 21:28:37 25 4
gpt4 key购买 nike

我正在移植现有的 MFC C++ 应用程序以对 XML 文件使用 Boost::Serialization。我的 CDocument 对象包含应用程序的所有数据。我已经将序列化函数实现为:

template<class Archive>
void CMyDoc::serialize(Archive& ar, const unsigned int version)
{
ar & BOOST_SERIALIZATION_NVP(m_Param1)
& BOOST_SERIALIZATION_NVP(m_Param2);
}

为了捕获保存和加载事件,在 CDoc *.cpp 文件中我重载了基类函数 OnOpenDocument() 和 OnSaveDocument() 以实现 Boost::Serialization:

BOOL CMyDoc::OnOpenDocument(LPCTSTR lpszPathName)
{
clear(); // clear current params

//if (!CDocument::OnOpenDocument(lpszPathName)) // Old MFC serialize code
// return FALSE;

CEvolveTrafficDoc* pDoc = this; // pointers the same here
std::ifstream ifs(lpszPathName);
boost::archive::xml_iarchive ia(ifs);
ia >> boost::serialization::make_nvp("MyDoc",pDoc); // pointer changes here
// *this = *pDoc; // POSSIBLE solution with CMyDoc copy constructor implemented

return TRUE;
}

BOOL CMyDoc::OnSaveDocument(LPCTSTR lpszPathName)
{
//if (!CDocument::OnSaveDocument(lpszPathName)) // Old MFC serialize code
// return FALSE;

std::ofstream ofs(lpszPathName);
boost::archive::xml_oarchive oa(ofs);
oa << boost::serialization::make_nvp("MyDoc",this);

return TRUE;
}

保存文档工作正常。问题是加载文档不起作用。 boost 库似乎复制了 CMyDoc 对象,因为指针返回了不同的地址。这意味着加载的文件没有加载到当前文档中。 CDoc 可以用 boost 覆盖自身吗?它可以与 MFC CArchive 一起使用。

我考虑过将行指示为“可能的解决方案”,但这意味着要为 CMyDoc 类实现复制构造函数。这消除了 boost 的一个好处,因为我将为每个变量编写两行代码:1. ar & BOOST_SERIALIZATION_NVP(m_Param1)//用于保存和加载到 pDoc2. this->m_Param1 = pDoc.m_Param1//CMyDoc拷贝构造函数

如果我重载 CMyView 以捕获文件打开和保存事件,则 Doc/View 架构提供的 MRU 列表管理将不会发生。

我敢肯定这已经做了一百万次了,但是我在网上找不到任何信息。诡异的!非常感谢任何帮助:D


仔细阅读文档,我看到 Boost 承认任何序列化的指针都使用新关键字反序列化:“指针的序列化在库中使用类似于以下的代码实现:”

// load data required for construction and invoke constructor in place
template<class Archive, class T>
inline void load_construct_data(
Archive & ar, T * t, const unsigned int file_version
){
// default just uses the default constructor to initialize
// previously allocated memory.
::new(t)T();
}

文档建议在必要时重载此函数:

template<class Archive>
inline void load_construct_data(
Archive & ar, my_class * t, const unsigned int file_version
){
// retrieve data from archive required to construct new instance
int attribute;
ar >> attribute;
// invoke inplace constructor to initialize instance of my_class
::new(t)my_class(attribute);
}

但这会再次导致需要实现 CMyDoc 复制构造函数。啊啊啊!!


为了帮助任何人,我收到了 Robert Ramey 的回复。基本上,我没有遗漏一些明显的东西:CMyDoc serialize(Archive& ar, const unsigned int version) 函数不是运行器,所以我实现了单独的 boost_save 和 boost_load 函数。我不得不重载 OnOpenDocument 和 OnSaveDocument,例如:

BOOL CMyDoc::OnOpenDocument(LPCTSTR lpszPathName){ 清除();

// Call base class function with empty local Serialize function
// to check file exists etc
if (!CDocument::OnOpenDocument(lpszPathName))
return FALSE;

std::string file( lpszPathName );
boost_load(file);
return TRUE;

这是必要的,因为在 MFC 序列化函数退出之前 MFC CArchive 拥有该文件,不允许 boost::serialization 访问该文件。即使在 Serialize 函数中调用 ar.Abort() 也不起作用,因为 CDocument 基类假定 ar 在返回到基类 Serialize 函数时存在。

最佳答案

有一个使用 Boost.IOStreams 的非常巧妙的解决方案:

// We mean to not track this class, or you'll get object-tracking warnings
BOOST_CLASS_TRACKING(MyDoc, boost::serialization::track_never)

void MyDoc::Serialize(CArchive& ar)
{
namespace io = boost::iostreams;
io::file_descriptor fd(ar.GetFile()->m_hFile, io::never_close_handle);
io::stream<io::file_descriptor> file(fd);

if (ar.IsStoring())
{
boost::archive::xml_oarchive oa(file);
oa << *this;
}
else
{
boost::archive::xml_iarchive ia(file);
ia >> *this;
// then update the views...
}
}

template<class Archive>
void MyDoc::serialize(Archive & ar, unsigned version)
{
// Your Boost.Serialization code here
ar & BOOST_SERIALIZATION_NVP(member);
}

您不必费心使用 OnOpenDocument/OnSaveDocument。只需覆盖 CDocument::Serialize 并将其转发给 Boost.Serialization。

关于c++ - Boost::Serialization 和 MFC Doc/View 架构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6557983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com