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