- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
当我尝试反序列化二进制数据时,我得到了这个:
异常:boost::archive::archive_exception 在内存位置
写:
std::ofstream ofs(savePath);
boost::archive::binary_oarchive out_arch(ofs);
out_arch << mData;
ofs.close();
阅读:
std::ifstream ifs(loadPath);
boost::archive::binary_iarchive in_arch(ifs);
in_arch >> _mData;
当我使用 text_iarchive\text_oarchive 时工作正常。
序列化数据结构mData为ColorMatrix<std::map<int, float>>
数据;
#include <algorithm>
#include <memory>
#include <boost/serialization/vector.hpp>
template<class T, class A = std::allocator<T> >
struct ColorMatrix {
typedef T value_type;
typedef std::vector<value_type, A> Container;
ColorMatrix() : _b(0) {}
ColorMatrix(int a, int b, value_type const& initial = value_type())
: _b(0)
{
resize(a, b, initial);
}
ColorMatrix(ColorMatrix const& other)
: _data(other._data), _b(other._b)
{}
ColorMatrix& operator=(ColorMatrix copy) {
swap(*this, copy);
return *this;
}
bool empty() const { return _data.empty(); }
void clear() { _data.clear(); _b = 0; }
int dim_a() const { return _b ? _data.size() / _b : 0; }
int dim_b() const { return _b; }
value_type* operator[](int a) {
return &_data[a * _b];
}
value_type const* operator[](int a) const {
return &_data[a * _b];
}
void resize(int a, int b, value_type const& initial = value_type()) {
if (a == 0) {
b = 0;
}
_data.resize(a * b, initial);
_b = b;
}
void copyTo(ColorMatrix<T, A> &other){
int myA = dim_a();
int myB = dim_b();
int otherB = other.dim_b();
for (int line = 0; line < myA; ++line){
int myStart = line * myB;
int myEnd = (line + 1) * myB;
int otherStart = line*otherB;
std::cout << "Line: " << line << " S1: " << myStart << " E1: " << myEnd << " S2: " << otherStart << std::endl;
std::copy(_data.begin() + myStart,
_data.begin() + myEnd,
other._data.begin() + otherStart);
}
}
friend void swap(ColorMatrix& a, ColorMatrix& b) {
using std::swap;
swap(a._data, b._data);
swap(a._b, b._b);
}
private:
Container _data;
int _b;
friend class boost::serialization::access;
template<class Archive>
void serialize(Archive & ar, const unsigned int version)
{
ar & _data;
ar & _b;
}
};
UPD1
我在序列化步骤中发现了一个问题。有测试数据一切ok。
测试代码一切正常:
#include <iostream>
#include <vector>
#include <math.h>
#include <fstream>
#include <map>
#include <fstream>
#include <boost/archive/binary_oarchive.hpp>
#include <boost/archive/binary_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/serialization/map.hpp>
#include "ColorMatrix.h"
using namespace std;
int main()
{
cout << "start program" << endl;
ColorMatrix<std::map<int, float>> mData;
ColorMatrix<std::map<int, float>> mData2;
const int mSize = 200;
mData.resize(mSize, mSize);
cout << "init" << endl;
for (int x = 0; x < mSize; x++){
for (int y = 0; y < mSize; y++){
if (y % 2 == 0){
mData[x][y][0] = 1.f;
mData[x][y][1] = 0.66666f;
}
else if (y % 3 == 0){
mData[x][y][0] = 1.f;
mData[x][y][1] = 0.1111111111f;
mData[x][y][3] = 0.44444444f;
}
else{
mData[x][y][0] = 1.f;
}
}
}
cout << "write data" << endl;
std::ofstream ofs("data.dat");
boost::archive::binary_oarchive out_arch(ofs);
//boost::archive::text_oarchive out_arch(ofs);
out_arch << mData;
ofs.close();
cout << "read data" << endl;
std::ifstream ifs("data.dat");
if (!ifs) {
cout << "read error!" << endl;
return 1;
}
boost::archive::binary_iarchive in_arch(ifs);
//boost::archive::text_iarchive in_arch(ifs);
in_arch >> mData2;
cout << "complete" << endl;
return 0;
}
最佳答案
两个提示
确保存档的生命周期是封闭的,特别是不要重叠
文本存档工作的事实让我想知道您是否正确地编写了二进制流。另请注意,您不能在 Boost Serialisation 中不将多个存档安全地连接到同一个 steam。
我有另一个答案,详细说明了这种情况以及它似乎如何适用于本网站的文本文件。
更新
查看代码后(谢谢!)我发现以下注意事项适用:
事实上,在简单示例中,您未能明确管理存档对象的生命周期。我已经看到这会导致问题(在 MSVC IIRC 上)。您也可以在 [SO] 上找到它。所以,写:
cout << "write data" << endl;
{
std::ofstream ofs("data.dat");
boost::archive::binary_oarchive out_arch(ofs);
//boost::archive::text_oarchive out_arch(ofs);
out_arch << mData;
}
cout << "read data" << endl;
{
std::ifstream ifs("data.dat");
if (!ifs) {
cout << "read error!" << endl;
return 1;
}
boost::archive::binary_iarchive in_arch(ifs);
//boost::archive::text_iarchive in_arch(ifs);
in_arch >> mData2;
}
您不使用 std::ios::binary
,这可能会产生影响(可能取决于平台):
std::ofstream ofs("data.dat", std::ios::binary);
// ...
std::ifstream ifs("data.dat", std::ios::binary);
I'd also suggest improving the naming of the fields and parameters in teh
ColorMatrix
class.
关于c++ - 异常:内存位置的 boost::archive::archive_exception,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33317403/
我在具有 2CPU 和 3.75GB 内存 (https://aws.amazon.com/ec2/instance-types/) 的 c3.large Amazon EC2 ubuntu 机器上运
我想通过用户空间中的mmap-ing并将地址发送到内核空间从用户空间写入VGA内存(视频内存,而不是缓冲区),我将使用pfn remap将这些mmap-ed地址映射到vga内存(我将通过 lspci
在 Mathematica 中,如果你想让一个函数记住它的值,它在语法上是很轻松的。例如,这是标准示例 - 斐波那契: fib[1] = 1 fib[2] = 1 fib[n_]:= fib[n] =
我读到动态内存是在运行时在堆上分配的,而静态内存是在编译时在堆栈上分配的,因为编译器知道在编译时必须分配多少内存。 考虑以下代码: int n; cin>>n; int a[n]; 如果仅在运行期间读
我是 Python 的新手,但我之前还不知道这一点。我在 for 循环中有一个基本程序,它从站点请求数据并将其保存到文本文件但是当我检查我的任务管理器时,我发现内存使用量只增加了?长时间运行时,这对我
我正在设计一组数学函数并在 CPU 和 GPU(使用 CUDA)版本中实现它们。 其中一些函数基于查找表。大多数表占用 4KB,其中一些占用更多。基于查找表的函数接受一个输入,选择查找表的一两个条目,
读入一个文件,内存被动态分配给一个字符串,文件内容将被放置在这里。这是在函数内部完成的,字符串作为 char **str 传递。 使用 gdb 我发现在行 **(str+i) = fgetc(aFil
我需要证实一个理论。我正在学习 JSP/Java。 在查看了一个现有的应用程序(我没有写)之后,我注意到一些我认为导致我们的性能问题的东西。或者至少是其中的一部分。 它是这样工作的: 1)用户打开搜索
n我想使用memoization缓存某些昂贵操作的结果,这样就不会一遍又一遍地计算它们。 两个memoise和 R.cache适合我的需要。但是,我发现缓存在调用之间并不可靠。 这是一个演示我看到的问
我目前正在分析一些 javascript shell 代码。这是该脚本中的一行: function having() { memory = memory; setTimeout("F0
我有一种情况,我想一次查询数据库,然后再将整个数据缓存在内存中。 我得到了内存中 Elasticsearch 的建议,我用谷歌搜索了它是什么,以及如何在自己的 spring boot 应用程序中实现它
我正在研究 Project Euler (http://projecteuler.net/problem=14) 的第 14 题。我正在尝试使用内存功能,以便将给定数字的序列长度保存为部分结果。我正在
所以,我一直在做 Java 内存/注意力游戏作业。我还没有达到我想要的程度,它只完成了一半,但我确实让 GUI 大部分工作了......直到我尝试向我的框架添加单选按钮。我认为问题可能是因为我将 JF
我一直在尝试使用 Flask-Cache 的 memoize 功能来仅返回 statusTS() 的缓存结果,除非在另一个请求中满足特定条件,然后删除缓存。 但它并没有被删除,并且 Jinja 模板仍
我对如何使用 & 运算符来减少内存感到非常困惑。 我可以回答下面的问题吗? clase C{ function B(&$a){ $this->a = &$a; $thi
在编写代码时,我遇到了一个有趣的问题。 我有一个 PersonPOJO,其 name 作为其 String 成员之一及其 getter 和 setter class PersonPOJO { priv
在此代码中 public class Base { int length, breadth, height; Base(int l, int b, int h) { l
Definition Structure padding is the process of aligning data members of the structure in accordance
在 JavaScript Ninja 的 secret 中,作者提出了以下方案,用于在没有闭包的情况下内存函数结果。他们通过利用函数是对象这一事实并在函数上定义一个属性来存储过去调用函数的结果来实现这
我正在尝试找出 map 消耗的 RAM 量。所以,我做了以下事情;- Map cr = crPair.collectAsMap(); // 200+ entries System.out.printl
我是一名优秀的程序员,十分优秀!