added crc calculation to SNDU Packet
[senf.git] / Packets / MPEGDVBBundle / SNDUPacket.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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/PacketData.hh"
33
34 #define prefix_
35 ///////////////////////////////cc.p////////////////////////////////////////
36
37 //namespace {
38 //    senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::EthVLanPacketType>
39 //        registerEthVLanPacket(0x8100);
40 //}
41
42
43 prefix_ senf::PacketParserBase::size_type senf::Parse_SNDUPacket::bytes()
44     const
45 {
46     if ( d_bit() )
47         return 2 + 2 + 4;  // D-Bit + 15 bits length + 16 bits type field + 32 bits crc
48     else
49         return 2 + 2 + 4 + 6;  // + 6 Byte NPA destination address
50 }
51
52 prefix_ boost::uint32_t senf::Parse_SNDUPacket::calcCrc()
53     const
54 {
55     ule_crc32 result;
56     senf::PacketData::iterator i (data().begin());
57     senf::PacketData::iterator const i_end(boost::prior(data().end(),4));
58     for (; i!=i_end; ++i) 
59         result.process_byte(*i);
60     return result.checksum(); 
61 }
62
63 prefix_ void senf::SNDUPacketType::dump(packet p, std::ostream & os)
64 {
65     os << "SNDUPacket:\n"
66        << "  d_bit: " << p->d_bit() << "\n"
67        << "  length: " << unsigned(p->length()) << "\n"
68        << "  crc: " << unsigned(p->crc()) << "\n";
69 }
70
71 prefix_ senf::PacketParserBase::size_type senf::SNDUPacketType::initSize()
72 {
73     return 2 + 2 + 4;  // D-Bit + 15 bits length + 16 bits type field + 32 bits crc
74 }
75
76 prefix_ senf::PacketParserBase::size_type senf::SNDUPacketType::initHeadSize()
77 {
78     return 2 + 2;  // D-Bit + 15 bits length + 16 bits type field
79 }
80
81 ///////////////////////////////cc.e////////////////////////////////////////
82 #undef prefix_
83
84 \f
85 // Local Variables:
86 // mode: c++
87 // fill-column: 100
88 // c-file-style: "senf"
89 // indent-tabs-mode: nil
90 // ispell-local-dictionary: "american"
91 // compile-command: "scons -u test"
92 // comment-column: 40
93 // End: