3f755af01da04ee7c8bb6ab6de5008607895fffa
[senf.git] / senf / 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 <senf/Utils/membind.hh>
32 #include <senf/Utils/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::console::factory::Command(
43                           senf::membind(&EventManager::listEvents, this))
44         .doc("List all scheduler events sorted by priority\n"
45              "\n"
46              "Columns:\n"
47              "    TP      event type:\n"
48              "              fd  file descriptor\n"
49              "              tm  timer\n"
50              "              si  UNIX signal\n"
51              "              ee  event hook\n"
52              "    NAME    descriptive event name\n"
53              "    ADDRESS address of event class instance\n"
54              "    RUNCNT  number of times, the event was called\n"
55              "    S       state:\n"
56              "              R  runnable\n"
57              "              W  waiting\n"
58              "              -  event disabled\n"
59              "    INFO    further event specific information")
60         );
61
62     senf::console::sysdir().add("scheduler", consoleDir_());
63 #endif
64 }
65
66 prefix_ void senf::scheduler::detail::EventManager::listEvents(std::ostream & os)
67 {
68     // On an 80 column display, this wraps nicely directly before the INFO column
69     boost::format fmt  ("%s %-55.55s 0x%08x %8d %s %s\n");
70     os << boost::format("%s %-55.55s %-10s %8s %s %s\n")
71         % "TP" % "NAME" % "ADDRESS" % "RUNCNT" % "S" % "INFO";
72     {
73         FIFORunner::iterator i (FIFORunner::instance().begin());
74         FIFORunner::iterator const i_end (FIFORunner::instance().end());
75         for (; i != i_end; ++i)
76             os << fmt
77                 % i->type()
78                 % i->name()
79                 % reinterpret_cast<unsigned long>(&(*i))
80                 % i->runCount()
81                 % (i->runnable() ? "R" : "W")
82                 % i->info();
83     }
84     {
85         iterator i (begin());
86         iterator const i_end (end());
87         for (; i != i_end; ++i)
88             if (! i->enabled())
89                 os << fmt
90                     % i->type()
91                     % i->name()
92                     % reinterpret_cast<unsigned long>(&(*i))
93                     % i->runCount()
94                     % "-"
95                     % i->info();
96     }
97 }
98
99 ///////////////////////////////cc.e////////////////////////////////////////
100 #undef prefix_
101 //#include "EventManager.mpp"
102
103 \f
104 // Local Variables:
105 // mode: c++
106 // fill-column: 100
107 // comment-column: 40
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u test"
112 // End: