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