Scheduler: Sort 'events' list by priority
[senf.git] / Scheduler / EventManager.cc
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 EventManager non-inline non-template implementation */
25
26 //#include "EventManager.hh"
27 //#include "EventManager.ih"
28
29 // Custom includes
30 #include <boost/format.hpp>
31 #include "../Utils/membind.hh"
32 #include "Console/Console.hh"
33 #include "FIFORunner.hh"
34
35 //#include "EventManager.mpp"
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 prefix_ senf::scheduler::detail::EventManager::EventManager()
40 {
41 #ifndef SENF_DISABLE_CONSOLE
42     consoleDir_().add("events", senf::membind(&EventManager::consoleEvents, this));
43     senf::console::sysdir().add("scheduler", consoleDir_());
44 #endif
45 }
46
47 prefix_ void senf::scheduler::detail::EventManager::consoleEvents(std::ostream & os)
48 {
49     // On an 80 column display, this wraps nicely directly before the INFO column
50     boost::format fmt  ("%s %-55.55s 0x%08x %8d %s %s\n");
51     os << boost::format("%s %-55.55s %-10s %8s %s %s\n")
52         % "TP" % "NAME" % "ADDRESS" % "RUNCNT" % "S" % "INFO";
53     {
54         FIFORunner::iterator i (FIFORunner::instance().begin());
55         FIFORunner::iterator const i_end (FIFORunner::instance().end());
56         for (; i != i_end; ++i)
57             os << fmt 
58                 % i->type()
59                 % i->name() 
60                 % reinterpret_cast<unsigned long>(&(*i))
61                 % i->runCount()
62                 % (i->runnable() ? "R" : "W")
63                 % i->info();
64     }
65     {
66         iterator i (begin());
67         iterator const i_end (end());
68         for (; i != i_end; ++i)
69             if (! i->enabled())
70                 os << fmt
71                     % i->type()
72                     % i->name() 
73                     % reinterpret_cast<unsigned long>(&(*i))
74                     % i->runCount()
75                     % "-"
76                     % i->info();
77     }
78 }
79
80 ///////////////////////////////cc.e////////////////////////////////////////
81 #undef prefix_
82 //#include "EventManager.mpp"
83
84 \f
85 // Local Variables:
86 // mode: c++
87 // fill-column: 100
88 // comment-column: 40
89 // c-file-style: "senf"
90 // indent-tabs-mode: nil
91 // ispell-local-dictionary: "american"
92 // compile-command: "scons -u test"
93 // End: