X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacketImpl.cci;h=3c6cce0bc93e8e85f9d15d2ccd48488d207e4ac2;hb=1a29b75bf774444ec182dfff8480a0c53597bf85;hp=4bd2bf31d34b328a6cd37b87e4925b41fa7ef6a2;hpb=2ffca72ed06b10829071cd1b28d9047ff735f929;p=senf.git diff --git a/Packets/PacketImpl.cci b/Packets/PacketImpl.cci index 4bd2bf3..3c6cce0 100644 --- a/Packets/PacketImpl.cci +++ b/Packets/PacketImpl.cci @@ -33,12 +33,22 @@ /////////////////////////////////////////////////////////////////////////// // senf::detail::AnnotationIndexerBase +prefix_ senf::detail::AnnotationIndexerBase::~AnnotationIndexerBase() +{} + prefix_ std::vector & senf::detail::AnnotationIndexerBase::small() { static std::vector smalls; return smalls; } +prefix_ std::vector & +senf::detail::AnnotationIndexerBase::registry() +{ + static std::vector reg; + return reg; +} + /////////////////////////////////////////////////////////////////////////// // senf::detail::AnnotationP @@ -186,6 +196,27 @@ prefix_ senf::detail::PacketImpl::size_type senf::detail::PacketImpl::capacity() return data_.capacity(); } +prefix_ void senf::detail::PacketImpl::dumpAnnotations(std::ostream & os) +{ + AnnotationIndexerBase::dump(this, os); +} + +// This function has a problem being inlined. Somehow, often when calling this, the size of the +// resulting inlined code would be huge? + +prefix_ void senf::detail::PacketImpl::release(refcount_t n) +{ + SENF_ASSERT(refcount_ >= n); + // uah ... we need to be extremely careful here. If refcount_ is n, we want to commit suicide, + // however the destructor will remove all PacketInterpreters from the list and will thereby + // decrement refcount -> only decrenebt refcount_ when *not* caling delete + if (refcount_ == n) + delete this; + else + refcount_ -= n; +} + + /////////////////////////////////////////////////////////////////////////// // senf::detail::PacketImpl::Guard