fixed small documentation typo
[senf.git] / Socket / DVBFrontendHandle.cc
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 xxx
25  */
26
27 #include "DVBFrontendHandle.hh"
28 //#include "DVBFrontendHandle.ih"
29
30 // Custom includes
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #include <iostream>
34 #include <string>
35 #include <sys/ioctl.h>
36 #include <linux/sockios.h>
37 #include <stdio.h>
38 #include <fcntl.h>
39 #include "SocketHandle.hh"
40
41 #include "Utils/Exception.hh"
42
43 //#include "DVBFrontendHandle.mpp"
44 #define prefix_
45 ///////////////////////////////cc.p////////////////////////////////////////
46
47 ///////////////////////////////////////////////////////////////////////////
48 // senf::DVBFrontendHandle
49
50 prefix_ void senf::DVBFrontendProtocol::init_client()
51     const
52 {
53     int fd = open("/dev/dvb/adapter0/frontend0", O_RDONLY | O_NONBLOCK);
54     if (fd < 0)
55         throw SystemException(errno);
56     body().fd(fd);
57 }
58
59 prefix_ unsigned senf::DVBFrontendProtocol::available()
60     const
61 {
62     return 0;
63 }
64
65 prefix_ bool senf::DVBFrontendProtocol::eof()
66     const
67 {
68     return false;
69 }
70
71 prefix_ std::auto_ptr<senf::SocketProtocol> senf::DVBFrontendProtocol::clone()
72     const
73 {
74     return std::auto_ptr<SocketProtocol>(new DVBFrontendProtocol());
75 }
76
77
78 prefix_ void senf::DVBFrontendProtocol::signalStrength(int16_t *strength)
79     const
80 {
81     if (::ioctl(body().fd(), FE_READ_SIGNAL_STRENGTH, strength) < 0)
82         throw SystemException(errno);
83 }
84
85 ///////////////////////////////cc.e////////////////////////////////////////
86 #undef prefix_
87 //#include "DVBFrontendHandle.mpp"
88
89 \f
90 // Local Variables:
91 // mode: c++
92 // fill-column: 100
93 // c-file-style: "senf"
94 // indent-tabs-mode: nil
95 // ispell-local-dictionary: "american"
96 // compile-command: "scons -u test"
97 // comment-column: 40
98 // End: