X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacketImpl.hh;h=667eebb151ec9e237711d89891ac433b4b6109a9;hb=64a21c02b81501982ba4406ea69a388825c23057;hp=1d1373f0cfe148d8484a069a647e782330b5514e;hpb=9348e1098d66ac2684c8e280abf8d7143c887982;p=senf.git diff --git a/Packets/PacketImpl.hh b/Packets/PacketImpl.hh index 1d1373f..667eebb 100644 --- a/Packets/PacketImpl.hh +++ b/Packets/PacketImpl.hh @@ -30,6 +30,10 @@ #include #include #include +#include +#include +#include +#include #include "../Utils/pool_alloc_mixin.hh" #include "PacketTypes.hh" #include "../Utils/singleton.hh" @@ -38,8 +42,44 @@ ///////////////////////////////hh.p//////////////////////////////////////// namespace senf { + + /** \brief Marker base-class for complex annotations + + This class is used as a base class to mark an annotation type as complex. A complex + annotation will have it's constructor/destructor called. Non-complex annotations will not + have their constructor called, they will be zero initialized. The destructor of non-complex + annotations is never called. + + An annotation must be marked as complex if it is not POD. Simplified, an + annotation must be marked as ComplexAnnotation, if + + \li it has a (user defined) constructor or destructor + \li it has any data members which have (user defined) constructors or destructors + + \see \ref packet_usage_annotation + */ + struct ComplexAnnotation {}; + namespace detail { + struct AnnotationP + { + virtual ~AnnotationP(); + }; + + template + struct TAnnotationP + : public AnnotationP + { + Annotation annotation; + }; + + union AnnotationEntry { + AnnotationP * p; + unsigned long long i; + }; + struct AnnotationIndexerBase { static unsigned maxAnnotations; @@ -54,34 +94,29 @@ namespace detail { AnnotationIndexer(); unsigned index_; static unsigned index(); - static bool const Small = (sizeof(Annotation) <= sizeof(void*)); - }; + static bool const Complex = boost::is_base_of::value; + static bool const Small = (sizeof(Annotation) <= sizeof(AnnotationEntry) && ! Complex); - struct AnnotationP - { - virtual ~AnnotationP(); - }; +# ifdef BOOST_HAS_TYPE_TRAITS_INTRINSICS - template - struct TAnnotationP - : public AnnotationP - { - Annotation annotation; + BOOST_STATIC_ASSERT(( (boost::has_trivial_constructor::value + && boost::has_trivial_destructor::value) + || Complex )); + +# endif }; template ::Small> struct GetAnnotation { - static Annotation & get(AnnotationP * & p); + static Annotation & get(AnnotationEntry & e); }; -/* template struct GetAnnotation { - static Annotation & get(AnnotationP * & p); + static Annotation & get(AnnotationEntry & e); }; -*/ /** \brief Internal: Packet data storage @@ -171,7 +206,7 @@ namespace detail { raw_container data_; interpreter_list interpreters_; - typedef std::vector Annotations; + typedef std::vector Annotations; Annotations annotations_; void eraseInterpreters(interpreter_list::iterator b, interpreter_list::iterator e);