X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPackets%2FPacketImpl.cti;h=308e7b392ac538d0998264de9be64781981631b6;hb=943a6b0973f66bc699c6e7b404da256145e93acf;hp=e3ec1eaf16fd7995add8f6c1bab119b55bc5e0fd;hpb=c505c034e5fdc932c02aa3dc3847a5551011d87e;p=senf.git diff --git a/senf/Packets/PacketImpl.cti b/senf/Packets/PacketImpl.cti index e3ec1ea..308e7b3 100644 --- a/senf/Packets/PacketImpl.cti +++ b/senf/Packets/PacketImpl.cti @@ -23,7 +23,7 @@ /** \file \brief PacketImpl inline template implementation */ -//#include "PacketImpl.ih" +#include "PacketImpl.ih" // Custom includes @@ -31,66 +31,49 @@ ///////////////////////////////cti.p/////////////////////////////////////// /////////////////////////////////////////////////////////////////////////// -// senf::detail::AnnotationIndexer +// senf::detail::AnnotationRegistry template -prefix_ senf::detail::AnnotationIndexer::AnnotationIndexer() - : index_ (maxAnnotations++) +prefix_ key_t senf::detail::AnnotationRegistry::registerAnnotation() { - small().push_back(Small); - registry().push_back(this); -} - -/////////////////////////////////////////////////////////////////////////// -// senf::detail::AnnotationIndexer - - -template -prefix_ void senf::detail::AnnotationIndexer::v_dump(PacketImpl * p, - std::ostream & os) -{ - - os << " " << senf::prettyName(typeid(Annotation)) << ": "; - p->dumpAnnotation(os); - os << "\n"; + key_t key (simpleAnnotationCount_ >= SENF_PACKET_ANNOTATION_SLOTS + || IsComplexAnnotation::value + ? - ++complexAnnotationCount_ + : simpleAnnotationCount_ ++); + registry_.insert(key, new Registration()); + std::cerr << ">> allocated key " << key + << " for " << prettyName(typeid(Annotation)) + << "(complex: " << IsComplexAnnotation::value + << ", convertible: " << boost::is_convertible::value + << ", size: " << sizeof(Annotation) + << ", max: " << SENF_PACKET_ANNOTATION_SLOTSIZE << ")" << std::endl; + return key; } template -prefix_ unsigned senf::detail::AnnotationIndexer::index() -{ - return AnnotationIndexer::instance().index_; -} - -/////////////////////////////////////////////////////////////////////////// -// senf::detail::GetAnnotation - -template -prefix_ Annotation & senf::detail::GetAnnotation::get(AnnotationEntry & e) -{ - if (!e.p) - e.p = new TAnnotationP(); - return static_cast< TAnnotationP* >(e.p)->annotation; -} - -template -prefix_ void senf::detail::GetAnnotation::dump(AnnotationEntry & e, - std::ostream & os) +prefix_ key_t senf::detail::AnnotationRegistry::lookup() { - if (!e.p) os << "no value"; - else os << get(e); + SENF_ASSERT( instance().keyBegin() <= AnnotationRegistry::Entry::key() + && AnnotationRegistry::Entry::key() < instance().keyEnd(), + "internal error: annotation key not registered" ); + SENF_ASSERT( AnnotationRegistry::Entry::key() < 0 + || ! IsComplexAnnotation::value, + "internal error: complex annotation registered with invalid key" ); + SENF_ASSERT( AnnotationRegistry::Entry::key() < SENF_PACKET_ANNOTATION_SLOTS, + "internal error: annotation key out of valid range" ); + return AnnotationRegistry::Entry::key(); } -template -prefix_ Annotation & senf::detail::GetAnnotation::get(AnnotationEntry & e) +prefix_ key_t senf::detail::AnnotationRegistry::keyBegin() + const { - return * static_cast(static_cast(& e.i)); + return -complexAnnotationCount_; } -template -prefix_ void senf::detail::GetAnnotation::dump(AnnotationEntry & e, - std::ostream & os) +prefix_ key_t senf::detail::AnnotationRegistry::keyEnd() + const { - os << get(e); + return simpleAnnotationCount_; } /////////////////////////////////////////////////////////////////////////// @@ -109,23 +92,20 @@ prefix_ void senf::detail::PacketImpl::insert(PacketData * self, iterator pos, F template prefix_ senf::detail::PacketImpl::PacketImpl(InputIterator first, InputIterator last) - : refcount_(0), data_(first,last), annotations_(AnnotationIndexerBase::maxAnnotations) -{} + : refcount_(0), data_(first,last) +{ + ::memset(simpleAnnotations_, 0, sizeof(simpleAnnotations_)); +} // Annotations template prefix_ Annotation & senf::detail::PacketImpl::annotation() { - return GetAnnotation::get( - annotations_[AnnotationIndexer::index()]); -} - -template -prefix_ void senf::detail::PacketImpl::dumpAnnotation(std::ostream & os) -{ - GetAnnotation::dump( - annotations_[AnnotationIndexer::index()], os); + AnnotationRegistry::key_t key (AnnotationRegistry::lookup()); + void * antn (key >= 0 ? & simpleAnnotations_[key] : complexAnnotation()); + SENF_ASSERT( antn, "internal error: null annotation pointer" ); + return * static_cast(antn); } ///////////////////////////////cti.e///////////////////////////////////////