40665e5a46f8bad3a49ea4f1d36d3fbd6ed76b82
[senf.git] / Socket / DVBDemuxHandles.hh
1 // $Id: DVBDemuxSectionHandle.hh 321 2007-07-19 09:00:23Z 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 /** \file
24     \brief DVBHandles
25  */
26
27 #ifndef HH_DVBDemuxHandles_
28 #define HH_DVBDemuxHandles_ 1
29
30 // Custom includes
31 #include "BSDSocketProtocol.hh"
32 #include "FramingPolicy.hh"
33 #include "CommunicationPolicy.hh"
34 #include "ReadWritePolicy.hh"
35 #include "BufferingPolicy.hh"
36 #include "ProtocolClientSocketHandle.hh"
37 #include "DVBDemuxProtocol.hh"
38
39 //#include "DVBDemuxHandles.mpp"
40 ///////////////////////////////hh.p////////////////////////////////////////
41
42 namespace senf {
43
44     /// \addtogroup concrete_protocol_group
45     /// @{
46
47     typedef MakeSocketPolicy<
48         NoAddressingPolicy,
49         DatagramFramingPolicy,
50         UnconnectedCommunicationPolicy,
51         ReadablePolicy,
52         NotWriteablePolicy,
53         SocketBufferingPolicy
54         >::policy DVBDemux_Policy;   ///< Socket Policy for xxxx
55
56     /** \brief xxx
57      */
58     class DVBDemuxSectionProtocol
59         : public ConcreteSocketProtocol<DVBDemux_Policy>,
60           public DVBDemuxProtocol
61     {
62     public:
63         ///////////////////////////////////////////////////////////////////////////
64         // internal interface
65
66         ///\name Constructors
67         ///@{
68
69         void init_client() const;       ///< xxx
70                                         /**< \note This member is implicitly called from the
71                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
72                                              constructor */
73
74         ///@}
75         ///\name Abstract Interface Implementation
76         
77         unsigned available() const;
78
79         std::auto_ptr<SocketProtocol> clone() const;
80
81         ///@}
82         
83         void setSectionFilter(struct dmx_sct_filter_params *filter) const;    
84     };
85
86     typedef ProtocolClientSocketHandle<DVBDemuxSectionProtocol> DVBDemuxSectionHandle;
87     
88     // ----------------------------------------------------------------
89     
90     /** \brief xxx
91      */
92     class DVBDemuxPESProtocol
93         : public ConcreteSocketProtocol<DVBDemux_Policy>,
94           public DVBDemuxProtocol
95     {
96     public:
97         ///////////////////////////////////////////////////////////////////////////
98         // internal interface
99
100         ///\name Constructors
101         ///@{
102
103         void init_client() 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         unsigned available() const;
112
113         std::auto_ptr<SocketProtocol> clone() const;
114
115         ///@}
116         
117         void setPESFilter(struct dmx_pes_filter_params *filter) const;    
118     };
119
120     typedef ProtocolClientSocketHandle<DVBDemuxPESProtocol> DVBDemuxPESHandle;
121
122     
123     // ----------------------------------------------------------------
124     
125     
126     /** \brief xxx
127          */
128     class DVBDvrProtocol
129         : public ConcreteSocketProtocol<DVBDemux_Policy>,
130           public DVBDemuxProtocol
131     {
132     public:
133         ///////////////////////////////////////////////////////////////////////////
134         // internal interface
135
136         ///\name Constructors
137         ///@{
138
139         void init_client() const;       ///< xxx
140                                         /**< \note This member is implicitly called from the
141                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
142                                              constructor */
143
144         ///@}
145         ///\name Abstract Interface Implementation
146         
147         unsigned available() const;
148
149         std::auto_ptr<SocketProtocol> clone() const;
150
151         ///@}
152    
153      };
154
155      typedef ProtocolClientSocketHandle<DVBDvrProtocol> DVBDvrHandle;
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: