nun mach' ich erst einmal Urlaub....
[senf.git] / Socket / Protocols / DVB / DVBFrontendHandle.hh
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Thorsten Horstmann <thorsten.horstmann@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 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/BufferingPolicy.hh"
33 #include "Socket/FramingPolicy.hh"
34 #include "Socket/CommunicationPolicy.hh"
35 #include "Socket/ReadWritePolicy.hh"
36 #include "Socket/ProtocolClientSocketHandle.hh"
37 #include "Socket/SocketProtocol.hh"
38
39 //#include "DVBFrontendHandle.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         NotReadablePolicy,
52         NotWriteablePolicy,
53         NoBufferingPolicy
54         >::policy DVBFrontend_Policy;   ///< Socket Policy for xxxx
55
56     /** \brief xxx
57      */
58     class DVBFrontendProtocol
59         : public ConcreteSocketProtocol<DVBFrontend_Policy>
60     {
61     public:
62         ///////////////////////////////////////////////////////////////////////////
63         // internal interface
64
65         ///\name Constructors
66         ///@{
67
68         void init_client(boost::uint8_t adapter=0, boost::uint8_t device=0) const;       ///< xxx
69                                         /**< \note This member is implicitly called from the
70                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
71                                              constructor */
72
73         ///@}
74         ///\name Abstract Interface Implementation
75         ///@{
76         
77         unsigned available() const;
78         bool eof() const;
79
80         std::auto_ptr<SocketProtocol> clone() const;
81
82         ///@}
83         
84         void signalStrength(int16_t *strength) const;
85     };
86
87     typedef ProtocolClientSocketHandle<DVBFrontendProtocol> DVBFrontendHandle;
88
89     ///@}
90 }
91
92
93 ///////////////////////////////hh.e////////////////////////////////////////
94 //#include "DVBFrontendHandle.cci"
95 //#include "DVBFrontendHandle.ct"
96 //#include "DVBFrontendHandle.cti"
97 #endif
98
99 \f
100 // Local Variables:
101 // mode: c++
102 // fill-column: 100
103 // c-file-style: "senf"
104 // indent-tabs-mode: nil
105 // ispell-local-dictionary: "american"
106 // compile-command: "scons -u test"
107 // comment-column: 40
108 // End: