Utils/Console: Add short help to 'ls' output
[senf.git] / 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 }
42
43 template <class Annotation>
44 prefix_ unsigned senf::detail::AnnotationIndexer<Annotation>::index()
45 {
46     return AnnotationIndexer::instance().index_;
47 }
48
49 ///////////////////////////////////////////////////////////////////////////
50 // senf::detail::GetAnnotation<Annotation,Small>
51
52 template <class Annotation, bool Small>
53 prefix_ Annotation & senf::detail::GetAnnotation<Annotation,Small>::get(AnnotationEntry & e)
54 {
55     if (!e.p)
56         e.p = new TAnnotationP<Annotation>();
57     return static_cast< TAnnotationP<Annotation>* >(e.p)->annotation;
58 }
59
60 template <class Annotation>
61 prefix_ Annotation & senf::detail::GetAnnotation<Annotation, true>::get(AnnotationEntry & e)
62 {
63     return * static_cast<Annotation*>(static_cast<void*>(& e.i));
64 }
65
66 ///////////////////////////////////////////////////////////////////////////
67 // senf::detail::PacketImpl
68
69 // Data container
70
71 template <class ForwardIterator>
72 prefix_ void senf::detail::PacketImpl::insert(PacketData * self, iterator pos, ForwardIterator f,
73                                               ForwardIterator l)
74 {
75     difference_type ix (std::distance(begin(),pos));
76     data_.insert(pos,f,l);
77     updateIterators(self,ix,std::distance(f,l));
78 }
79
80 template <class InputIterator>
81 prefix_ senf::detail::PacketImpl::PacketImpl(InputIterator first, InputIterator last)
82     : refcount_(0), data_(first,last), annotations_(AnnotationIndexerBase::maxAnnotations)
83 {}
84
85 // Annotations
86
87 template <class Annotation>
88 prefix_ Annotation & senf::detail::PacketImpl::annotation()
89 {
90     return GetAnnotation<Annotation>::get(
91         annotations_[AnnotationIndexer<Annotation>::index()]);
92 }
93
94 ///////////////////////////////cti.e///////////////////////////////////////
95 #undef prefix_
96
97 \f
98 // Local Variables:
99 // mode: c++
100 // fill-column: 100
101 // c-file-style: "senf"
102 // indent-tabs-mode: nil
103 // ispell-local-dictionary: "american"
104 // compile-command: "scons -u test"
105 // comment-column: 40
106 // End: