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