X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPackets%2FPacketImpl.cti;h=863c42aa92148647ab25776e203f40580346b08b;hb=e3179a2123ad51d0d9eb63834a581145c4f77c92;hp=e3ec1eaf16fd7995add8f6c1bab119b55bc5e0fd;hpb=601d1f509f5bb24df167a4dd5a20da67a0af9af8;p=senf.git diff --git a/senf/Packets/PacketImpl.cti b/senf/Packets/PacketImpl.cti index e3ec1ea..863c42a 100644 --- a/senf/Packets/PacketImpl.cti +++ b/senf/Packets/PacketImpl.cti @@ -23,77 +23,49 @@ /** \file \brief PacketImpl inline template implementation */ -//#include "PacketImpl.ih" +#include "PacketImpl.ih" // Custom includes #define prefix_ inline -///////////////////////////////cti.p/////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////// -// senf::detail::AnnotationIndexer +//-///////////////////////////////////////////////////////////////////////////////////////////////// +// senf::detail::AnnotationRegistry template -prefix_ senf::detail::AnnotationIndexer::AnnotationIndexer() - : index_ (maxAnnotations++) +prefix_ senf::detail::AnnotationRegistry::key_type +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"; -} - -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) -{ - if (!e.p) os << "no value"; - else os << get(e); -} - -template -prefix_ Annotation & senf::detail::GetAnnotation::get(AnnotationEntry & e) -{ - return * static_cast(static_cast(& e.i)); + key_type key (simpleAnnotationCount_ >= SENF_PACKET_ANNOTATION_SLOTS + || IsComplexAnnotation::value + ? - ++complexAnnotationCount_ + : simpleAnnotationCount_ ++); + std::pair reg ( + registry_.insert(key, new Registration())); + SENF_ASSERT(reg.second, "internal error: duplicate annotation key"); + index_.insert(std::make_pair(reg.first->second->v_name(), key)); + return key; } template -prefix_ void senf::detail::GetAnnotation::dump(AnnotationEntry & e, - std::ostream & os) +prefix_ senf::detail::AnnotationRegistry::key_type senf::detail::AnnotationRegistry::lookup() { - os << get(e); + SENF_ASSERT( + -instance().complexAnnotationCount_ <= AnnotationRegistry::Entry::key() + && AnnotationRegistry::Entry::key() < instance().simpleAnnotationCount_, + "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(); } -/////////////////////////////////////////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// // senf::detail::PacketImpl // Data container @@ -109,26 +81,23 @@ 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_type key (AnnotationRegistry::lookup()); + void * antn (key >= 0 ? & simpleAnnotations_[key] : complexAnnotation()); + SENF_ASSERT( antn, "internal error: null annotation pointer" ); + return * static_cast(antn); } -///////////////////////////////cti.e/////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #undef prefix_