Fix SCons 1.2.0 build failure
[senf.git] / senf / Packets / PacketImpl.cti
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
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.
12 //
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.
17 //
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.
22
23 /** \file
24     \brief PacketImpl inline template implementation */
25
26 //#include "PacketImpl.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::detail::AnnotationIndexer<Annotation>
35
36 template <class Annotation>
37 prefix_ senf::detail::AnnotationIndexer<Annotation>::AnnotationIndexer()
38     : index_ (maxAnnotations++)
39 {
40     small().push_back(Small);
41     registry().push_back(this);
42 }
43
44 ///////////////////////////////////////////////////////////////////////////
45 // senf::detail::AnnotationIndexer<Annotation>
46
47
48 template <class Annotation>
49 prefix_ void senf::detail::AnnotationIndexer<Annotation>::v_dump(PacketImpl * p,
50                                                                  std::ostream & os)
51 {
52
53     os << "  " << senf::prettyName(typeid(Annotation)) << ": ";
54     p->dumpAnnotation<Annotation>(os);
55     os << "\n";
56 }
57
58 template <class Annotation>
59 prefix_ unsigned senf::detail::AnnotationIndexer<Annotation>::index()
60 {
61     return AnnotationIndexer::instance().index_;
62 }
63
64 ///////////////////////////////////////////////////////////////////////////
65 // senf::detail::GetAnnotation<Annotation,Small>
66
67 template <class Annotation, bool Small>
68 prefix_ Annotation & senf::detail::GetAnnotation<Annotation,Small>::get(AnnotationEntry & e)
69 {
70     if (!e.p)
71         e.p = new TAnnotationP<Annotation>();
72     return static_cast< TAnnotationP<Annotation>* >(e.p)->annotation;
73 }
74
75 template <class Annotation, bool Small>
76 prefix_ void senf::detail::GetAnnotation<Annotation,Small>::dump(AnnotationEntry & e,
77                                                                  std::ostream & os)
78 {
79     if (!e.p) os << "no value";
80     else      os << get(e);
81 }
82
83 template <class Annotation>
84 prefix_ Annotation & senf::detail::GetAnnotation<Annotation, true>::get(AnnotationEntry & e)
85 {
86     return * static_cast<Annotation*>(static_cast<void*>(& e.i));
87 }
88
89 template <class Annotation>
90 prefix_ void senf::detail::GetAnnotation<Annotation, true>::dump(AnnotationEntry & e,
91                                                                  std::ostream & os)
92 {
93     os << get(e);
94 }
95
96 ///////////////////////////////////////////////////////////////////////////
97 // senf::detail::PacketImpl
98
99 // Data container
100
101 template <class ForwardIterator>
102 prefix_ void senf::detail::PacketImpl::insert(PacketData * self, iterator pos, ForwardIterator f,
103                                               ForwardIterator l)
104 {
105     difference_type ix (std::distance(begin(),pos));
106     data_.insert(pos,f,l);
107     updateIterators(self,ix,std::distance(f,l));
108 }
109
110 template <class InputIterator>
111 prefix_ senf::detail::PacketImpl::PacketImpl(InputIterator first, InputIterator last)
112     : refcount_(0), data_(first,last), annotations_(AnnotationIndexerBase::maxAnnotations)
113 {}
114
115 // Annotations
116
117 template <class Annotation>
118 prefix_ Annotation & senf::detail::PacketImpl::annotation()
119 {
120     return GetAnnotation<Annotation>::get(
121         annotations_[AnnotationIndexer<Annotation>::index()]);
122 }
123
124 template <class Annotation>
125 prefix_ void senf::detail::PacketImpl::dumpAnnotation(std::ostream & os)
126 {
127     GetAnnotation<Annotation>::dump(
128         annotations_[AnnotationIndexer<Annotation>::index()], os);
129 }
130
131 ///////////////////////////////cti.e///////////////////////////////////////
132 #undef prefix_
133
134 \f
135 // Local Variables:
136 // mode: c++
137 // fill-column: 100
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
143 // End: