Merged revisions 570-572,574-575,578-579,581-595,598-611 via svnmerge from
[senf.git] / Socket / Protocols / DVB / DVBFrontendHandle.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 DVBFrontendHandle public header */
25
26 #ifndef HH_DVBFrontendHandle_
27 #define HH_DVBFrontendHandle_ 1
28
29 // Custom includes
30 #include <boost/cstdint.hpp>
31 #include <linux/dvb/frontend.h> 
32 #include "../../../Socket/FramingPolicy.hh"
33 #include "../../../Socket/CommunicationPolicy.hh"
34 #include "../../../Socket/ReadWritePolicy.hh"
35 #include "../../../Socket/ProtocolClientSocketHandle.hh"
36 #include "../../../Socket/SocketProtocol.hh"
37
38 //#include "DVBFrontendHandle.mpp"
39 ///////////////////////////////hh.p////////////////////////////////////////
40
41 namespace senf {
42
43     /// \addtogroup concrete_protocol_group
44     /// @{
45
46     typedef MakeSocketPolicy<
47         NoAddressingPolicy,
48         DatagramFramingPolicy,
49         UnconnectedCommunicationPolicy,
50         NotReadablePolicy,
51         NotWriteablePolicy
52         >::policy DVBFrontend_Policy;   ///< Socket Policy for xxxx
53
54     /** \brief xxx
55      */
56     class DVBFrontendProtocol
57         : public ConcreteSocketProtocol<DVBFrontend_Policy>
58     {
59     public:
60         ///////////////////////////////////////////////////////////////////////////
61         // internal interface
62
63         ///\name Constructors
64         ///@{
65
66         void init_client(boost::uint8_t adapter=0, boost::uint8_t device=0) const;       ///< xxx
67                                         /**< \note This member is implicitly called from the
68                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
69                                              constructor */
70
71         ///@}
72         ///\name Abstract Interface Implementation
73         ///@{
74         
75         unsigned available() const;
76         bool eof() const;
77
78         std::auto_ptr<SocketProtocol> clone() const;
79
80         ///@}
81         
82         void signalStrength(int16_t *strength) const;
83     };
84
85     typedef ProtocolClientSocketHandle<DVBFrontendProtocol> DVBFrontendHandle;
86
87     ///@}
88 }
89
90
91 ///////////////////////////////hh.e////////////////////////////////////////
92 //#include "DVBFrontendHandle.cci"
93 //#include "DVBFrontendHandle.ct"
94 //#include "DVBFrontendHandle.cti"
95 #endif
96
97 \f
98 // Local Variables:
99 // mode: c++
100 // fill-column: 100
101 // c-file-style: "senf"
102 // indent-tabs-mode: nil
103 // ispell-local-dictionary: "american"
104 // compile-command: "scons -u test"
105 // comment-column: 40
106 // End: