4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 // Stefan Bund <g0dil@berlios.de>
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 \brief PacketImpl inline template implementation */
26 //#include "PacketImpl.ih"
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::detail::AnnotationIndexer<Annotation>
36 template <class Annotation>
37 prefix_ senf::detail::AnnotationIndexer<Annotation>::AnnotationIndexer()
38 : index_ (maxAnnotations++)
40 small().push_back(Small);
41 registry().push_back(this);
44 ///////////////////////////////////////////////////////////////////////////
45 // senf::detail::AnnotationIndexer<Annotation>
48 template <class Annotation>
49 prefix_ void senf::detail::AnnotationIndexer<Annotation>::v_dump(PacketImpl * p,
53 os << " " << senf::prettyName(typeid(Annotation)) << ": ";
54 p->dumpAnnotation<Annotation>(os);
58 template <class Annotation>
59 prefix_ unsigned senf::detail::AnnotationIndexer<Annotation>::index()
61 return AnnotationIndexer::instance().index_;
64 ///////////////////////////////////////////////////////////////////////////
65 // senf::detail::GetAnnotation<Annotation,Small>
67 template <class Annotation, bool Small>
68 prefix_ Annotation & senf::detail::GetAnnotation<Annotation,Small>::get(AnnotationEntry & e)
71 e.p = new TAnnotationP<Annotation>();
72 return static_cast< TAnnotationP<Annotation>* >(e.p)->annotation;
75 template <class Annotation, bool Small>
76 prefix_ void senf::detail::GetAnnotation<Annotation,Small>::dump(AnnotationEntry & e,
79 if (!e.p) os << "no value";
83 template <class Annotation>
84 prefix_ Annotation & senf::detail::GetAnnotation<Annotation, true>::get(AnnotationEntry & e)
86 return * static_cast<Annotation*>(static_cast<void*>(& e.i));
89 template <class Annotation>
90 prefix_ void senf::detail::GetAnnotation<Annotation, true>::dump(AnnotationEntry & e,
96 ///////////////////////////////////////////////////////////////////////////
97 // senf::detail::PacketImpl
101 template <class ForwardIterator>
102 prefix_ void senf::detail::PacketImpl::insert(PacketData * self, iterator pos, ForwardIterator f,
105 difference_type ix (std::distance(begin(),pos));
106 data_.insert(pos,f,l);
107 updateIterators(self,ix,std::distance(f,l));
110 template <class InputIterator>
111 prefix_ senf::detail::PacketImpl::PacketImpl(InputIterator first, InputIterator last)
112 : refcount_(0), data_(first,last), annotations_(AnnotationIndexerBase::maxAnnotations)
117 template <class Annotation>
118 prefix_ Annotation & senf::detail::PacketImpl::annotation()
120 return GetAnnotation<Annotation>::get(
121 annotations_[AnnotationIndexer<Annotation>::index()]);
124 template <class Annotation>
125 prefix_ void senf::detail::PacketImpl::dumpAnnotation(std::ostream & os)
127 GetAnnotation<Annotation>::dump(
128 annotations_[AnnotationIndexer<Annotation>::index()], os);
131 ///////////////////////////////cti.e///////////////////////////////////////
138 // c-file-style: "senf"
139 // indent-tabs-mode: nil
140 // ispell-local-dictionary: "american"
141 // compile-command: "scons -u test"
142 // comment-column: 40