added an exception class for my ULE decoder
[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
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     return std::for_each(
56             data().begin(), 
57             boost::prior(data().end(), 4), 
58             ule_crc32() ).checksum();
59 }
60
61 prefix_ void senf::SNDUPacketType::dump(packet p, std::ostream & os)
62 {
63     os << "SNDUPacket:\n"
64        << "  d_bit: " << p->d_bit() << "\n"
65        << "  length: " << unsigned(p->length()) << "\n"
66        << "  crc: " << unsigned(p->crc()) << "\n";
67 }
68
69 prefix_ senf::PacketParserBase::size_type senf::SNDUPacketType::initSize()
70 {
71     return 2 + 2 + 4;  // D-Bit + 15 bits length + 16 bits type field + 32 bits crc
72 }
73
74 prefix_ senf::PacketParserBase::size_type senf::SNDUPacketType::initHeadSize()
75 {
76     return 2 + 2;  // D-Bit + 15 bits length + 16 bits type field
77 }
78
79 ///////////////////////////////cc.e////////////////////////////////////////
80 #undef prefix_
81
82 \f
83 // Local Variables:
84 // mode: c++
85 // fill-column: 100
86 // c-file-style: "senf"
87 // indent-tabs-mode: nil
88 // ispell-local-dictionary: "american"
89 // compile-command: "scons -u test"
90 // comment-column: 40
91 // End: