Move sourcecode into 'senf/' directory
[senf.git] / senf / Packets / PacketInterpreter.cc
diff --git a/senf/Packets/PacketInterpreter.cc b/senf/Packets/PacketInterpreter.cc
new file mode 100644 (file)
index 0000000..fcd6783
--- /dev/null
@@ -0,0 +1,117 @@
+// $Id$
+//
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
+//     Stefan Bund <g0dil@berlios.de>
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the
+// Free Software Foundation, Inc.,
+// 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+
+/** \file
+    \brief PacketInterpreter non-inline non-template implementation */
+
+//#include "PacketInterpreter.ih"
+
+// Custom includes
+#include "Packets.hh"
+
+//#include "PacketInterpreter.mpp"
+#define prefix_
+///////////////////////////////cc.p////////////////////////////////////////
+
+///////////////////////////////////////////////////////////////////////////
+// senf::PacketInterpreterBase
+
+// structors and default members
+
+prefix_  senf::PacketInterpreterBase::~PacketInterpreterBase()
+{}
+
+prefix_ senf::PacketInterpreterBase::ptr senf::PacketInterpreterBase::clone()
+{
+    detail::PacketImpl::Guard p (new detail::PacketImpl(begin(),end()));
+    ptr pi (appendClone(p.p,begin(),p.p->begin()));
+    for (ptr i (next()); i; i = i->next())
+        i->appendClone(p.p,begin(),p.p->begin());
+    return pi;
+}
+
+// Interpreter chain access
+
+prefix_ senf::PacketInterpreterBase::ptr senf::PacketInterpreterBase::append(ptr packet)
+{
+    if (next())
+        impl().truncateInterpreters(next().get());
+    
+    optional_range r (nextPacketRange());
+    if (!r)
+        throw InvalidPacketChainException();
+    
+    ptr rv (packet->appendClone(&impl(), *r));
+    rv->data().resize(packet->data().size());
+    std::copy(packet->data().begin(), packet->data().end(), rv->data().begin());
+
+    for (ptr p (packet->next()) ; p ; p = p->next())
+        p->appendClone(&impl(), packet->data().begin(), rv->data().begin());
+
+    return rv;
+}
+
+// Access to the abstract interface
+
+prefix_ void senf::PacketInterpreterBase::dump(std::ostream & os)
+{
+    if (detail::AnnotationIndexerBase::maxAnnotations > 0) {
+        os << "Annotations:\n";
+        impl().dumpAnnotations(os);
+    }
+    v_dump(os);
+    for (ptr i (next()); i; i = i->next())
+        i->v_dump(os);
+}
+
+prefix_ void senf::PacketInterpreterBase::finalizeThis()
+{
+    v_finalize();
+}
+
+prefix_ void senf::PacketInterpreterBase::finalizeTo(ptr other)
+{
+    for (ptr i (other); i.get() != this && i.get(); i = i->prev())
+        i->finalizeThis();
+    finalizeThis();
+}
+
+///////////////////////////////////////////////////////////////////////////
+// senf::PacketInterpreterBase::Factory
+
+prefix_  senf::PacketInterpreterBase::Factory::~Factory()
+{}
+
+///////////////////////////////cc.e////////////////////////////////////////
+#undef prefix_
+//#include "PacketInterpreter.mpp"
+
+\f
+// Local Variables:
+// mode: c++
+// fill-column: 100
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
+// compile-command: "scons -u test"
+// comment-column: 40
+// End: