X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPackets%2FPacketImpl.cti;h=062775666ea57ef77dfe2ade8aa5d3c1e151b4fd;hb=961cf85a6abf2b5f0a7958bbfcd8f72e7b32721b;hp=e3ec1eaf16fd7995add8f6c1bab119b55bc5e0fd;hpb=601d1f509f5bb24df167a4dd5a20da67a0af9af8;p=senf.git diff --git a/senf/Packets/PacketImpl.cti b/senf/Packets/PacketImpl.cti index e3ec1ea..0627756 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,38 @@ ///////////////////////////////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); + 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_ Annotation & senf::detail::GetAnnotation::get(AnnotationEntry & e) +prefix_ senf::detail::AnnotationRegistry::key_type senf::detail::AnnotationRegistry::lookup() { - return * static_cast(static_cast(& e.i)); -} - -template -prefix_ void senf::detail::GetAnnotation::dump(AnnotationEntry & e, - std::ostream & os) -{ - 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(); } /////////////////////////////////////////////////////////////////////////// @@ -109,23 +81,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_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///////////////////////////////////////