Boost logo

Boost Users :

Subject: Re: [Boost-users] [serialization] compile-time detection of whether serialization is implemented for a class
From: Ioannis Papadopoulos (ipapadop_at_[hidden])
Date: 2012-02-16 15:27:37


On 02/16/2012 08:45 AM, Nelson, Erik - 2 wrote:
> I'm using the Serialization library and am trying to find a way to detect at compile-time whether or not serialization is implemented for a given type. For example, if I have
>
> #include "boost/archive/binary_oarchive.hpp"
> #include<strstream>
>
> struct A{};
>
> void function()
> {
> const A a;
> std::strstream s;
> boost::archive::binary_oarchive oa(s);
> oa<< a;
> }
>
> I get an error (as expected) along the lines of
>
> C:\work\boost\boost/serialization/access.hpp(118): error C2039: 'serialize' : is not a member of 'A'
>
> What I'd like is a compile-time way of detecting that 'A' is not serializable, maybe Boost Type Traits-style, something like
>
> is_serializable<A>::value or is_serializable<binary_oarchive, A>::value that can detect whether or not the object has serialization available.
>
> If it could work for testing pointer serialization as well (is_serializable<A*>::value or is_ptr_serializable<A>::value) that would be doubly super.
>
>
> Thanks
>
> Erik
>
> ----------------------------------------------------------------------
> This message w/attachments (message) is intended solely for the use of the intended recipient(s) and may contain information that is privileged, confidential or proprietary. If you are not an intended recipient, please notify the sender, and then please delete and destroy all copies and attachments, and be advised that any review or dissemination of, or the taking of any action in reliance on, the information contained in or attached to this message is prohibited.
> Unless specifically indicated, this message is not an offer to sell or a solicitation of any investment products or other financial product or service, an official confirmation of any transaction, or an official statement of Sender. Subject to applicable law, Sender may intercept, monitor, review and retain e-communications (EC) traveling through its networks/systems and may produce any such EC to regulators, law enforcement, in litigation and as required by law.
> The laws of the country of each sender/recipient may impact the handling of EC, and EC may be archived, supervised and produced in countries other than the country in which you are located. This message cannot be guaranteed to be secure or free of errors or viruses.
>
> References to "Sender" are references to any subsidiary of Bank of America Corporation. Securities and Insurance Products: * Are Not FDIC Insured * Are Not Bank Guaranteed * May Lose Value * Are Not a Bank Deposit * Are Not a Condition to Any Banking Service or Activity * Are Not Insured by Any Federal Government Agency. Attachments that are part of this EC may have additional important disclosures and disclaimers, which you should read. This message is subject to terms available at the following link:
> http://www.bankofamerica.com/emaildisclaimer. By messaging with Sender you consent to the foregoing.

I was trying to do something like that before. The problem is that
1) serialize() might be private so any metaprogramming trick you are
going to try will be met with a compiler error
2) how do you detect if serialization is supported using a non-intrusive
way? I made a relevant question some time ago and requires decltype :(

Some additional discussion:
http://lists.boost.org/Archives/boost/2010/10/172236.php

Bottom line, I don't think it can happen without assistance from
Boost.Serialization


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net