From: Vladislav Zavjalov <slazav@altlinux.org>
To: ALT Linux Team development discussions <devel@lists.altlinux.org>
Subject: Re: [devel] Fwd: fuse-encfs-1.5.2-alt7: Sisyphus/x86_64 test rebuild failed [3]
Date: Thu, 11 Mar 2010 23:42:59 +0300
Message-ID: <20100311204259.GA29975@imap.altlinux.org> (raw)
In-Reply-To: <20100311175205.GB4491@mw.office.seiros.ru>
On Thu, Mar 11, 2010 at 08:52:05PM +0300, Денис Смирнов wrote:
> On Thu, Mar 11, 2010 at 04:03:54PM +0300, Dmitry V. Levin wrote:
>
> DVL> Апстриму отрепортить не пробовал?
>
> Проблема вылезла после обновления boost'а у нас.
>
> Притом я, честно говоря, совсем не в состоянии понять что там происходит,
> ибо C++ знаю на уровне "С с классами" и дать сколь-нибудь внятный репорт.
>
> Может просто линковаться со старым boost?
Покопался...
boost::archive используется для чтения/записи xml в FileUtils.cpp
Облом происходит в std::istream &operator >>
в test.cpp:230. Записать xml оно сумело, а прочитать - нет.
А прочитать оно его не сумело, поскольку была выставлена версия класса
20080816 (см BOOST_CLASS_VERSION в FileUtils.cpp), а в xml попало 26800 (а для
старых версий она хочет читать что-то другое).
Взяв минимальный пример с
http://www.boost.org/doc/libs/1_42_0/libs/serialization/doc/index.html
устроил такую штуку, показывающую, что с большими версиями классов
происходит фигня, а именно, они устанавливаются по модулю 65536:
Так что проблема в boost, и как ее хорошо обойти в fuse-encfs -
непонятно...
===
#include <iostream>
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#define VERSION 65536
struct test{
template<class Archive>
void serialize(Archive & ar, const unsigned int version)
{
std::cerr << "\n" << "new_version: " << version << "\n"
<< "old_version: " << VERSION << "\n";
ar & i;
}
int i;
};
BOOST_CLASS_VERSION(test, VERSION)
int main() {
test var;
var.i=100;
boost::archive::text_oarchive oa(std::cout);
oa << var;
}
next prev parent reply other threads:[~2010-03-11 20:42 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-11 12:49 ` Denis Smirnov
2010-03-11 13:03 ` Dmitry V. Levin
2010-03-11 17:52 ` Денис Смирнов
2010-03-11 20:42 ` Vladislav Zavjalov [this message]
2010-03-11 21:58 ` Vladislav Zavjalov
2010-03-12 15:21 ` Денис Смирнов
2010-03-12 15:49 ` Vladislav Zavjalov
2010-03-12 16:33 ` Денис Смирнов
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100311204259.GA29975@imap.altlinux.org \
--to=slazav@altlinux.org \
--cc=devel@lists.altlinux.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
ALT Linux Team development discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
public-inbox-index devel
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.devel
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git