Packets: Completely restructured #includes, introduced central Packets.hh file
[senf.git] / Socket / DVBSectionHandle.hh
1 // $Id$
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 DVBSectionHandle
25  */
26
27 #ifndef HH_DVBSectionHandle_
28 #define HH_DVBSectionHandle_ 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 "DVBProtocol.hh"
38
39 //#include "DVBSocketHandle.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 DVBSection_Policy;   ///< Socket Policy for DVBSection
55
56     /** \brief xxx
57      */
58     class DVBSectionProtocol
59         : public ConcreteSocketProtocol<DVBSection_Policy>,
60           public DVBProtocol
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(unsigned short pid, unsigned char table_id) const;
84     
85     private:
86         void setSectionFilter(struct dmx_sct_filter_params *filter) const;
87         
88     };
89
90     typedef ProtocolClientSocketHandle<DVBSectionProtocol> DVBSectionHandle;
91
92
93 }
94
95 ///////////////////////////////hh.e////////////////////////////////////////
96 //#include "DVBSectionHandle.cci"
97 //#include "DVBSectionHandle.ct"
98 //#include "DVBSectionHandle.cti"
99 #endif
100
101 \f
102 // Local Variables:
103 // mode: c++
104 // fill-column: 100
105 // c-file-style: "senf"
106 // indent-tabs-mode: nil
107 // ispell-local-dictionary: "american"
108 // compile-command: "scons -u test"
109 // comment-column: 40
110 // End: