dfcc29191c3011c699dd8ab8fe0645c524caeae3
[senf.git] / senf / Scheduler / Poller.cti
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@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 Poller inline template implementation */
25
26 //#include "Poller.ih"
27
28 // Custom includes
29 #include <unistd.h>
30
31 #define prefix_ inline
32 ///////////////////////////////cti.p///////////////////////////////////////
33
34 template <class Value>
35 prefix_ senf::scheduler::detail::Poller<Value>::Poller()
36     : timeout_ (-1)
37 {
38     epollFd_ = epoll_create(NumEvents);
39     if (epollFd_ == -1)
40         throw senf::SystemException("epoll_create");
41 }
42
43 template <class Value>
44 prefix_ senf::scheduler::detail::Poller<Value>::~Poller()
45 {
46     close(epollFd_);
47 }
48
49 template <class Value>
50 prefix_ void senf::scheduler::detail::Poller<Value>::timeout(int t)
51 {
52     timeout_ = t;
53 }
54
55 template <class Value>
56 prefix_ int senf::scheduler::detail::Poller<Value>::timeout()
57     const
58 {
59     return timeout_;
60 }
61
62 template <class Value>
63 prefix_ typename senf::scheduler::detail::Poller<Value>::GetPollResult::result_type
64 senf::scheduler::detail::Poller<Value>::GetPollResult::operator()(epoll_event const & ev)
65     const
66
67 {
68     return std::make_pair(ev.events, static_cast<Value*>(ev.data.ptr));
69 }
70
71 ///////////////////////////////cti.e///////////////////////////////////////
72 #undef prefix_
73
74 \f
75 // Local Variables:
76 // mode: c++
77 // fill-column: 100
78 // comment-column: 40
79 // c-file-style: "senf"
80 // indent-tabs-mode: nil
81 // ispell-local-dictionary: "american"
82 // compile-command: "scons -u test"
83 // End: