dee67d2b46be1e3bd1ca9e8e196b560f6d349817
[senf.git] / Packets / MPEGDVBBundle / MPESection.hh
1 // $Id:MPESection.hh 560 2007-12-13 14:39:37Z tho $
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Thorsten Horstmann <thorsten.horstmann@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 MPESection public header */
25
26 #ifndef HH_MPESection_
27 #define HH_MPESection_ 1
28
29 // Custom includes
30 #include <boost/crc.hpp>
31 #include <algorithm>
32 #include "../../Packets/Packets.hh"
33
34 //#include "MPESection.mpp"
35 ///////////////////////////////hh.p////////////////////////////////////////
36
37 namespace senf {
38
39     struct MPERealTimeParametersParser : public PacketParserBase
40     {
41 #       include SENF_FIXED_PARSER()
42
43         SENF_PARSER_BITFIELD ( delta_t,                  12, unsigned );
44         SENF_PARSER_BITFIELD ( table_boundary,           1,  bool     );
45         SENF_PARSER_BITFIELD ( frame_boundary,           1,  bool     );
46         SENF_PARSER_BITFIELD ( address,                  18, unsigned );
47         
48         SENF_PARSER_FINALIZE( MPERealTimeParametersParser );
49     };
50     
51
52     /** \brief Parse a MPE Section
53     
54         Parser implementing the header of a MPE Section
55         
56         \see MPESectionType
57      */
58     struct MPESectionParser : public PacketParserBase
59     {
60 #       include SENF_FIXED_PARSER()
61
62         SENF_PARSER_FIELD( table_id, UInt8Parser );
63         
64         SENF_PARSER_BITFIELD        ( section_syntax_indicator, 1,  bool     );
65         SENF_PARSER_BITFIELD        ( private_indicator,        1,  bool     );
66         SENF_PARSER_PRIVATE_BITFIELD( reserved_1,               2,  unsigned );
67         SENF_PARSER_BITFIELD        ( section_length,           12, unsigned );
68         
69         SENF_PARSER_FIELD( mac_addr_6, UInt8Parser );
70         SENF_PARSER_FIELD( mac_addr_5, UInt8Parser );
71         
72         SENF_PARSER_PRIVATE_BITFIELD( reserved_2,          2, unsigned );
73         SENF_PARSER_BITFIELD        ( payload_scrmbl_ctrl, 2, unsigned );
74         SENF_PARSER_BITFIELD        ( addr_scrmbl_ctrl,    2, unsigned );
75         SENF_PARSER_BITFIELD        ( llc_snap_flag,       1, bool     );
76         SENF_PARSER_BITFIELD        ( curr_next_indicator, 1, bool     );
77
78         SENF_PARSER_FIELD( section_num,      UInt8Parser );
79         SENF_PARSER_FIELD( last_section_num, UInt8Parser );
80
81         SENF_PARSER_FIELD( real_time_parameters, MPERealTimeParametersParser );
82         
83         SENF_PARSER_FINALIZE( MPESectionParser );
84         
85         SENF_PARSER_PRIVATE_BITFIELD( ip_datagram_version, 4, unsigned );
86         
87         SENF_PARSER_INIT() {
88             table_id() = 0x3e;
89             section_syntax_indicator() = 1;
90             private_indicator() = 0;
91             reserved_1() = 3;
92             reserved_2() = 3;
93             payload_scrmbl_ctrl() = 0;
94             addr_scrmbl_ctrl() = 0;
95             curr_next_indicator() = 1;
96         }
97         
98         UInt32Parser crc() const { return parse<UInt32Parser>( data().size()-4 ); }
99         
100 //        typedef boost::crc_optimal<32, 0x04C11DB7, 0xFFFFFFFF, 0, false, false> crc32_t;
101 //        boost::uint32_t calcCrc() const;
102         
103         friend class MPESectionType;
104     };
105     
106     
107     /** \brief MPE Section
108         
109         \par Packet type (typedef):
110             \ref MPESection
111
112         \par Fields:
113             \ref MPESectionParser
114
115         \ingroup protocolbundle_mpegdvb
116      */
117     struct MPESectionType
118         : public PacketTypeBase,
119           public PacketTypeMixin<MPESectionType>
120     {
121         typedef PacketTypeMixin<MPESectionType> mixin;
122         typedef ConcretePacket<MPESectionType> packet;
123         typedef MPESectionParser parser;
124
125         using mixin::nextPacketRange;
126         using mixin::init;
127         
128         static void dump(packet p, std::ostream & os);
129         static void finalize(packet p);
130         static factory_t nextPacketType(packet p);
131         static PacketParserBase::size_type initSize();
132         static PacketParserBase::size_type initHeadSize();
133     };
134         
135     typedef ConcretePacket<MPESectionType> MPESection;
136 }
137
138
139 ///////////////////////////////hh.e////////////////////////////////////////
140 //#include "MPESection.cci"
141 //#include "MPESection.ct"
142 //#include "MPESection.cti"
143 #endif
144
145 \f
146 // Local Variables:
147 // mode: c++
148 // fill-column: 100
149 // c-file-style: "senf"
150 // indent-tabs-mode: nil
151 // ispell-local-dictionary: "american"
152 // compile-command: "scons -u test"
153 // comment-column: 40
154 // End: