Merged revisions 570-572,574-575,578-579,581-595,598-611 via svnmerge from
[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_DVBDemuxHandles_
27 #define HH_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 "DVBDemuxProtocol.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 DVBDemuxSectionProtocol
55         : public ConcreteSocketProtocol<DVBDemux_Policy>,
56           public DVBDemuxProtocol
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         std::auto_ptr<SocketProtocol> clone() const;
77
78         ///@}
79         
80         void setSectionFilter(struct dmx_sct_filter_params *filter) const;    
81     };
82
83     typedef ProtocolClientSocketHandle<DVBDemuxSectionProtocol> DVBDemuxSectionHandle;
84     
85     // ----------------------------------------------------------------
86     
87     /** \brief xxx
88      */
89     class DVBDemuxPESProtocol
90         : public ConcreteSocketProtocol<DVBDemux_Policy>,
91           public DVBDemuxProtocol
92     {
93     public:
94         ///////////////////////////////////////////////////////////////////////////
95         // internal interface
96
97         ///\name Constructors
98         ///@{
99
100         void init_client(unsigned short adapter=0, unsigned short device=0) const;       ///< xxx
101                                         /**< \note This member is implicitly called from the
102                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
103                                              constructor */
104
105         ///@}
106         ///\name Abstract Interface Implementation
107         ///@{
108         
109         unsigned available() const;
110
111         std::auto_ptr<SocketProtocol> clone() const;
112
113         ///@}
114         
115         void setPESFilter(struct dmx_pes_filter_params *filter) const;    
116     };
117
118     typedef ProtocolClientSocketHandle<DVBDemuxPESProtocol> DVBDemuxPESHandle;
119
120     
121     // ----------------------------------------------------------------
122     
123     
124     /** \brief xxx
125          */
126     class DVBDvrProtocol
127         : public ConcreteSocketProtocol<DVBDemux_Policy>,
128           public DVBDemuxProtocol
129     {
130     public:
131         ///////////////////////////////////////////////////////////////////////////
132         // internal interface
133
134         ///\name Constructors
135         ///@{
136
137         void init_client(unsigned short adapter=0, unsigned short device=0) const;       ///< xxx
138                                         /**< \note This member is implicitly called from the
139                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
140                                              constructor */
141
142         ///@}
143         ///\name Abstract Interface Implementation
144         ///@{
145         
146         unsigned available() const;
147
148         std::auto_ptr<SocketProtocol> clone() const;
149         
150         ///@}
151      };
152
153      typedef ProtocolClientSocketHandle<DVBDvrProtocol> DVBDvrHandle;
154
155     ///@}
156     
157 }
158
159 ///////////////////////////////hh.e////////////////////////////////////////
160 //#include "DVBDemuxHandles.cci"
161 //#include "DVBDemuxHandles.ct"
162 //#include "DVBDemuxHandles.cti"
163 #endif
164
165 \f
166 // Local Variables:
167 // mode: c++
168 // fill-column: 100
169 // c-file-style: "senf"
170 // indent-tabs-mode: nil
171 // ispell-local-dictionary: "american"
172 // compile-command: "scons -u test"
173 // comment-column: 40
174 // End: