Packets: internal pointer access optimization in ConcretePacket
[senf.git] / senf / Packets / PacketInterpreter.cc
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 PacketInterpreter non-inline non-template implementation */
25
26 //#include "PacketInterpreter.ih"
27
28 // Custom includes
29 #include "Packets.hh"
30
31 //#include "PacketInterpreter.mpp"
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 ///////////////////////////////////////////////////////////////////////////
36 // senf::PacketInterpreterBase
37
38 // structors and default members
39
40 prefix_  senf::PacketInterpreterBase::~PacketInterpreterBase()
41 {}
42
43 prefix_ senf::PacketInterpreterBase::ptr senf::PacketInterpreterBase::clone()
44 {
45     detail::PacketImpl::Guard p (new detail::PacketImpl(begin(),end()));
46     ptr pi (appendClone(p.p,begin(),p.p->begin()));
47     for (ptr i (next()); i; i = i->next())
48         i->appendClone(p.p,begin(),p.p->begin());
49     return pi;
50 }
51
52 // Interpreter chain access
53
54 prefix_ senf::PacketInterpreterBase::ptr senf::PacketInterpreterBase::append(ptr packet)
55 {
56     if (next())
57         impl().truncateInterpreters(next().get());
58
59     optional_range r (nextPacketRange());
60     if (!r)
61         throw InvalidPacketChainException();
62
63     ptr rv (packet->appendClone(&impl(), *r));
64     rv->data().resize(packet->data().size());
65     std::copy(packet->data().begin(), packet->data().end(), rv->data().begin());
66
67     for (ptr p (packet->next()) ; p ; p = p->next())
68         p->appendClone(&impl(), packet->data().begin(), rv->data().begin());
69
70     return rv;
71 }
72
73 // Access to the abstract interface
74
75 prefix_ void senf::PacketInterpreterBase::dump(std::ostream & os)
76 {
77     try {
78         if (detail::AnnotationRegistry::instance().begin()
79             != detail::AnnotationRegistry::instance().end()) {
80             os << "Annotations:\n";
81             impl().dumpAnnotations(os);
82         }
83         v_dump(os);
84         for (ptr i (next()); i; i = i->next())
85             i->v_dump(os);
86     }
87     catch (senf::Exception & e) {
88         os << "[Exception: " << e.message() << "]\n";
89     }
90 }
91
92 prefix_ void senf::PacketInterpreterBase::finalizeThis()
93 {
94     v_finalize();
95 }
96
97 prefix_ void senf::PacketInterpreterBase::finalizeTo(ptr other)
98 {
99     for (ptr i (other); i.get() != this && i.get(); i = i->prev())
100         i->finalizeThis();
101     finalizeThis();
102 }
103
104 // reference/memory management
105
106 prefix_ void senf::PacketInterpreterBase::add_ref()
107 {
108     if (impl_ && !refcount())
109         impl_->add_ref();
110     intrusive_refcount_t<PacketInterpreterBase>::add_ref();
111 }
112
113 prefix_ void senf::PacketInterpreterBase::release()
114 {
115     if (impl_ && refcount()==1)
116         // This call will set impl_ to 0 if we just removed the last reference ...
117         impl_->release();
118     if (intrusive_refcount_t<PacketInterpreterBase>::release() && !impl_)
119         delete this;
120 }
121
122 ///////////////////////////////////////////////////////////////////////////
123 // senf::PacketInterpreterBase::Factory
124
125 prefix_  senf::PacketInterpreterBase::Factory::~Factory()
126 {}
127
128 ///////////////////////////////cc.e////////////////////////////////////////
129 #undef prefix_
130 //#include "PacketInterpreter.mpp"
131
132 \f
133 // Local Variables:
134 // mode: c++
135 // fill-column: 100
136 // c-file-style: "senf"
137 // indent-tabs-mode: nil
138 // ispell-local-dictionary: "american"
139 // compile-command: "scons -u test"
140 // comment-column: 40
141 // End: