svn:keywords property set
[senf.git] / Socket / DVBFrontendHandle.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 DVBHandles
25  */
26
27 #ifndef HH_DVBFrontendHandle_
28 #define HH_DVBFrontendHandle_ 1
29
30 // Custom includes
31 #include "FramingPolicy.hh"
32 #include "CommunicationPolicy.hh"
33 #include "ReadWritePolicy.hh"
34 #include "ProtocolClientSocketHandle.hh"
35 #include "SocketProtocol.hh"
36
37 #include <linux/dvb/frontend.h> 
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         >::policy DVBFrontend_Policy;   ///< Socket Policy for xxxx
54
55     /** \brief xxx
56      */
57     class DVBFrontendProtocol
58         : public ConcreteSocketProtocol<DVBFrontend_Policy>
59     {
60     public:
61         ///////////////////////////////////////////////////////////////////////////
62         // internal interface
63
64         ///\name Constructors
65         ///@{
66
67         void init_client() const;       ///< xxx
68                                         /**< \note This member is implicitly called from the
69                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
70                                              constructor */
71
72         ///@}
73         ///\name Abstract Interface Implementation
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 ///////////////////////////////hh.e////////////////////////////////////////
91 //#include "DVBFrontendHandle.cci"
92 //#include "DVBFrontendHandle.ct"
93 //#include "DVBFrontendHandle.cti"
94 #endif
95
96 \f
97 // Local Variables:
98 // mode: c++
99 // fill-column: 100
100 // c-file-style: "senf"
101 // indent-tabs-mode: nil
102 // ispell-local-dictionary: "american"
103 // compile-command: "scons -u test"
104 // comment-column: 40
105 // End: