wrong paremeter in DVBDemuxHandles::setSectionFiltler iocall
[senf.git] / Socket / Protocols / DVB / DVBDemuxHandles.hh
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 DVBDemuxHandles public header */
25
26 #ifndef HH_SENF_Socket_Protocols_DVB_DVBDemuxHandles_
27 #define HH_SENF_Socket_Protocols_DVB_DVBDemuxHandles_ 1
28
29 // Custom includes
30 #include "../../../Socket/FramingPolicy.hh"
31 #include "../../../Socket/CommunicationPolicy.hh"
32 #include "../../../Socket/ReadWritePolicy.hh"
33 #include "../../../Socket/ProtocolClientSocketHandle.hh"
34 #include "DVBDemuxSocketProtocol.hh"
35
36 //#include "DVBDemuxHandles.mpp"
37 ///////////////////////////////hh.p////////////////////////////////////////
38
39 namespace senf {
40
41     /// \addtogroup concrete_protocol_group
42     /// @{
43
44     typedef MakeSocketPolicy<
45         NoAddressingPolicy,
46         DatagramFramingPolicy,
47         UnconnectedCommunicationPolicy,
48         ReadablePolicy,
49         NotWriteablePolicy
50         >::policy DVBDemux_Policy;   ///< Socket Policy for xxxx
51
52     /** \brief xxx
53      */
54     class DVBDemuxSectionSocketProtocol
55         : public ConcreteSocketProtocol<DVBDemux_Policy, DVBDemuxSectionSocketProtocol>,
56           public DVBDemuxSocketProtocol
57     {
58     public:
59         ///////////////////////////////////////////////////////////////////////////
60         // internal interface
61
62         ///\name Constructors
63         ///@{
64
65         void init_client(unsigned short adapter=0, unsigned short device=0) const;       ///< xxx
66                                         /**< \note This member is implicitly called from the
67                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
68                                              constructor */
69
70         ///@}
71         ///\name Abstract Interface Implementation
72         ///@{
73         
74         unsigned available() const;
75
76         ///@}
77         
78         void setSectionFilter(unsigned short int pid, 
79                 unsigned char filter,
80                 unsigned int flags, 
81                 unsigned char mask, 
82                 unsigned char mode,
83                 unsigned int timeout ) const;    
84     };
85
86     typedef ProtocolClientSocketHandle<DVBDemuxSectionSocketProtocol> DVBDemuxSectionHandle;
87     
88     // ----------------------------------------------------------------
89     
90     /** \brief xxx
91      */
92     class DVBDemuxPESSocketProtocol
93         : public ConcreteSocketProtocol<DVBDemux_Policy,DVBDemuxPESSocketProtocol>,
94           public DVBDemuxSocketProtocol
95     {
96     public:
97         ///////////////////////////////////////////////////////////////////////////
98         // internal interface
99
100         ///\name Constructors
101         ///@{
102
103         void init_client(unsigned short adapter=0, unsigned short device=0) const;       ///< xxx
104                                         /**< \note This member is implicitly called from the
105                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
106                                              constructor */
107
108         ///@}
109         ///\name Abstract Interface Implementation
110         ///@{
111         
112         unsigned available() const;
113
114         ///@}
115         
116         void setPESFilter(struct dmx_pes_filter_params *filter) const;    
117     };
118
119     typedef ProtocolClientSocketHandle<DVBDemuxPESSocketProtocol> DVBDemuxPESHandle;
120
121     
122     // ----------------------------------------------------------------
123     
124     
125     /** \brief xxx
126          */
127     class DVBDvrSocketProtocol
128         : public ConcreteSocketProtocol<DVBDemux_Policy, DVBDvrSocketProtocol>,
129           public DVBDemuxSocketProtocol
130     {
131     public:
132         ///////////////////////////////////////////////////////////////////////////
133         // internal interface
134
135         ///\name Constructors
136         ///@{
137
138         void init_client(unsigned short adapter=0, unsigned short device=0) const;       ///< xxx
139                                         /**< \note This member is implicitly called from the
140                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
141                                              constructor */
142
143         ///@}
144         ///\name Abstract Interface Implementation
145         ///@{
146         
147         unsigned available() const;
148
149         ///@}
150      };
151
152      typedef ProtocolClientSocketHandle<DVBDvrSocketProtocol> DVBDvrHandle;
153
154     ///@}
155     
156 }
157
158 ///////////////////////////////hh.e////////////////////////////////////////
159 //#include "DVBDemuxHandles.cci"
160 //#include "DVBDemuxHandles.ct"
161 //#include "DVBDemuxHandles.cti"
162 #endif
163
164 \f
165 // Local Variables:
166 // mode: c++
167 // fill-column: 100
168 // c-file-style: "senf"
169 // indent-tabs-mode: nil
170 // ispell-local-dictionary: "american"
171 // compile-command: "scons -u test"
172 // comment-column: 40
173 // End: