added documentation stub for the MPEG/DVB Bundle
[senf.git] / Packets / MPEGDVBBundle / DatagramSection.hh
1 // $Id:DatagramSection.hh 327 2007-07-20 10:03:44Z tho $
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 #ifndef HH_DatagramSection_
24 #define HH_DatagramSection_ 1
25
26 // Custom includes
27 #include <algorithm>
28 #include "Packets/PacketType.hh"
29 #include "Packets/ParseInt.hh"
30 #include "Packets/PacketRegistry.hh"
31 #include "Packets/PacketParser.hh"
32 #include "Packets/MPEGDVBBundle/DSMCCSection.hh"
33
34
35 //#include "DatagramSection.mpp"
36 ///////////////////////////////hh.p////////////////////////////////////////
37
38 namespace senf {
39
40     ///\addtogroup protocolbundle_mpegdvb
41     ///@{
42
43     struct Parse_DatagramSection : public Parse_DSMCCSection
44     {
45         //SENF_PACKET_PARSER_NO_INIT(Parse_DatagramSection);
46         Parse_DatagramSection(data_iterator i, state_type s) : senf::Parse_DSMCCSection(i,s) {}
47
48         ///////////////////////////////////////////////////////////////////////////
49
50         typedef Parse_UIntField < 2,  4 > Parse_payload_scrmbl_ctrl;
51         typedef Parse_UIntField < 4,  6 > Parse_addr_scrmbl_ctrl;
52         typedef Parse_Flag      <     6 > Parse_llc_snap_flag;
53                 
54         SENF_PACKET_PARSER_DEFINE_FIXED_FIELDS_OFFSET(Parse_DSMCCSection::fixed_bytes,
55             ((Field       ) ( mac_addr_4, Parse_UInt8 ))
56             ((Field       ) ( mac_addr_3, Parse_UInt8 ))
57             ((Field       ) ( mac_addr_2, Parse_UInt8 ))
58             ((Field       ) ( mac_addr_1, Parse_UInt8 ))
59         );
60         
61         Parse_UInt8 mac_addr_6() const { return parse<Parse_UInt8>( 3 ); }
62         Parse_UInt8 mac_addr_5() const { return parse<Parse_UInt8>( 4 ); }
63         Parse_payload_scrmbl_ctrl payload_scrmbl_ctrl() const {
64             return parse<Parse_payload_scrmbl_ctrl>( 5 );
65         }
66         Parse_addr_scrmbl_ctrl addr_scrmbl_ctrl() const {
67             return parse<Parse_addr_scrmbl_ctrl>( 5 );
68         }
69         Parse_llc_snap_flag llc_snap_flag() const {
70             return parse<Parse_llc_snap_flag>( 5 );
71         }
72         
73         void init() 
74         {
75             Parse_DSMCCSection::init();
76             defaultInit();
77         }  
78     };
79
80     struct DatagramSectionType
81         : public DSMCCSectionType,
82           public PacketTypeMixin<DatagramSectionType>
83     {
84         typedef PacketTypeMixin<DatagramSectionType> mixin;
85         typedef ConcretePacket<DatagramSectionType> packet;
86         typedef Parse_DatagramSection parser;
87
88         using mixin::nextPacketRange;
89 //          using mixin::nextPacketType;
90         //using mixin::initSize;
91         using mixin::init;
92         
93         static void dump(packet p, std::ostream & os);
94         
95         static PacketParserBase::size_type initSize();
96         static PacketParserBase::size_type initHeadSize();
97     };
98         
99     typedef DatagramSectionType::packet DatagramSection;
100     
101     ///@}
102 }
103
104
105 ///////////////////////////////hh.e////////////////////////////////////////
106 //#include "DatagramSection.cci"
107 //#include "DatagramSection.ct"
108 //#include "DatagramSection.cti"
109 #endif
110
111 \f
112 // Local Variables:
113 // mode: c++
114 // fill-column: 100
115 // c-file-style: "senf"
116 // indent-tabs-mode: nil
117 // ispell-local-dictionary: "american"
118 // compile-command: "scons -u test"
119 // comment-column: 40
120 // End: