Utils/Daemon: Add warning when the scheduler has registered events at a fork()
[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(AnnotationP * & p)
54 {
55     if (!p)
56         p = new TAnnotationP<Annotation>();
57     return static_cast< TAnnotationP<Annotation>* >(p)->annotation;
58 }
59
60 /*
61 template <class Annotation>
62 prefix_ Annotation & senf::detail::GetAnnotation<Annotation, true>::get(AnnotationP * & p)
63 {
64     return * reinterpret_cast<Annotation*>(p);
65 }
66 */
67
68 ///////////////////////////////////////////////////////////////////////////
69 // senf::detail::PacketImpl
70
71 // Data container
72
73 template <class ForwardIterator>
74 prefix_ void senf::detail::PacketImpl::insert(PacketData * self, iterator pos, ForwardIterator f,
75                                               ForwardIterator l)
76 {
77     difference_type ix (std::distance(begin(),pos));
78     data_.insert(pos,f,l);
79     updateIterators(self,ix,std::distance(f,l));
80 }
81
82 template <class InputIterator>
83 prefix_ senf::detail::PacketImpl::PacketImpl(InputIterator first, InputIterator last)
84     : refcount_(0), data_(first,last), annotations_(AnnotationIndexerBase::maxAnnotations, 0)
85 {}
86
87 // Annotations
88
89 template <class Annotation>
90 prefix_ Annotation & senf::detail::PacketImpl::annotation()
91 {
92     return GetAnnotation<Annotation>::get(
93         annotations_[AnnotationIndexer<Annotation>::index()]);
94 }
95
96 ///////////////////////////////cti.e///////////////////////////////////////
97 #undef prefix_
98
99 \f
100 // Local Variables:
101 // mode: c++
102 // fill-column: 100
103 // c-file-style: "senf"
104 // indent-tabs-mode: nil
105 // ispell-local-dictionary: "american"
106 // compile-command: "scons -u test"
107 // comment-column: 40
108 // End: