Console: Move into Scheduler as subdirectory
[senf.git] / Scheduler / FIFORunner.cci
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 FIFORunner inline non-template implementation */
25
26 //#include "FIFORunner.ih"
27
28 // Custom includes
29 #ifdef SENF_DEBUG
30 #include <sstream>
31 #include "../Utils/Backtrace.hh"
32 #endif
33
34 #define prefix_ inline
35 ///////////////////////////////cci.p///////////////////////////////////////
36
37 prefix_ senf::scheduler::detail::FIFORunner::TaskInfo::TaskInfo(std::string const & name)
38     : Event(name), runnable_ (false)
39 {}
40
41 prefix_ senf::scheduler::detail::FIFORunner::TaskInfo::~TaskInfo()
42 {}
43
44 prefix_ void senf::scheduler::detail::FIFORunner::TaskInfo::setRunnable()
45 {
46     runnable_ = true;
47 }
48
49 prefix_ void senf::scheduler::detail::FIFORunner::TaskInfo::run()
50 {
51     v_run();
52     countRun();
53 }
54
55 prefix_ bool senf::scheduler::detail::FIFORunner::TaskInfo::v_enabled()
56     const
57 {
58     return TaskListBase::linked();
59 }
60
61 prefix_ void senf::scheduler::detail::FIFORunner::enqueue(TaskInfo * task)
62 {
63     tasks_.push_back(*task);
64 #ifdef SENF_DEBUG
65     std::stringstream ss;
66     backtrace(ss, 32);
67     task->backtrace_ = ss.str();
68 #endif
69 }
70
71 prefix_ void senf::scheduler::detail::FIFORunner::taskTimeout(unsigned ms)
72 {
73     watchdogMs_ = ms;
74 }
75
76 prefix_ unsigned senf::scheduler::detail::FIFORunner::taskTimeout()
77     const
78 {
79     return watchdogMs_;
80 }
81
82 prefix_ unsigned senf::scheduler::detail::FIFORunner::hangCount()
83     const
84 {
85     return hangCount_;
86 }
87
88 ///////////////////////////////cci.e///////////////////////////////////////
89 #undef prefix_
90
91 \f
92 // Local Variables:
93 // mode: c++
94 // fill-column: 100
95 // comment-column: 40
96 // c-file-style: "senf"
97 // indent-tabs-mode: nil
98 // ispell-local-dictionary: "american"
99 // compile-command: "scons -u test"
100 // End: