Packets: Add PacketParserBase::i(size_type) utility
[senf.git] / Packets / MPEGDVBBundle / SNDUPacket.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 //     Thorsten Horstmann <tho@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 DSMCCSection non-inline non-template implementation */
25
26 #include "SNDUPacket.hh"
27 //#include "SNDUPacket.ih"
28
29 // Custom includes
30 #include <iomanip>
31 #include "../../Utils/hexdump.hh"
32 #include "../../Packets/DefaultBundle/EthernetPacket.hh"
33
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 //namespace {
39 //    senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::EthVLanPacketType>
40 //        registerEthVLanPacket(0x8100);
41 //}
42
43
44 prefix_ boost::uint32_t senf::SNDUPacketParser::calcCrc()
45     const
46 {
47     return std::for_each(
48             data().begin(), 
49             boost::prior(data().end(), 4), 
50             ule_crc32() ).checksum();
51 }
52
53 //prefix_ senf::SNDUPacketType::key_t senf::SNDUPacketType::nextPacketKey(packet p)
54 //{
55 //    return p->type(); 
56 //}
57
58 prefix_ void senf::SNDUPacketType::init(packet p)
59 {
60     p->init();
61 }
62
63 prefix_ senf::PacketInterpreterBase::factory_t senf::SNDUPacketType::nextPacketType(packet p)
64 {
65     if (p.data().size() < 8)
66         return no_factory();
67     PkReg_Entry const * e;
68     if (p->type() < 1536)
69         e = PacketRegistry<senf::ULEExtHeaderTypes>::lookup( p->type(), nothrow );
70     else
71         e = PacketRegistry<senf::EtherTypes>::lookup( p->type(), nothrow );
72     return e ? e->factory() : no_factory();
73 }
74
75 prefix_ senf::PacketInterpreterBase::optional_range 
76 senf::SNDUPacketType::nextPacketRange(packet p) 
77 {
78     if (p.data().size() < 8)
79         return no_range();
80     
81     size_type sz = 2 + 2;  // D-Bit + 15 bits length + 16 bits type field
82     if (! p->d_bit() )
83         sz += 6;  // + 6 Byte NPA destination address
84     return range(
85             boost::next(p.data().begin(), sz),
86             boost::prior(p.data().end(), 4));  // - 32 bits crc
87 }
88
89 prefix_ void senf::SNDUPacketType::dump(packet p, std::ostream & os)
90 {
91     os << "SNDUPacket:\n"
92        << std::dec
93        << "  d_bit: " << p->d_bit() << "\n"
94        << "  length: " << unsigned(p->length()) << "\n"
95        << std::hex
96        << "  type: 0x" << unsigned(p->type()) << "\n"
97        << std::dec
98        << "  crc: " << unsigned(p->crc()) << "\n";
99 }
100
101 prefix_ senf::PacketParserBase::size_type senf::SNDUPacketType::initSize()
102 {
103     return 2 + 2 + 4;  // D-Bit + 15 bits length + 16 bits type field + 32 bits crc
104 }
105
106 prefix_ senf::PacketParserBase::size_type senf::SNDUPacketType::initHeadSize()
107 {
108     return 2 + 2;  // D-Bit + 15 bits length + 16 bits type field
109 }
110
111 ///////////////////////////////cc.e////////////////////////////////////////
112 #undef prefix_
113
114 \f
115 // Local Variables:
116 // mode: c++
117 // fill-column: 100
118 // c-file-style: "senf"
119 // indent-tabs-mode: nil
120 // ispell-local-dictionary: "american"
121 // compile-command: "scons -u test"
122 // comment-column: 40
123 // End: