a131e36c3fdb4c679194a3cb48278edd45db2bc0
[senf.git] / Utils / StatisticsTargets.cc
1 // $Id$
2 //
3 // Copyright (C) 2009 
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 StatisticsTargets non-inline non-template implementation */
25
26 #include "StatisticsTargets.hh"
27 #include "StatisticsTargets.ih"
28
29 // Custom includes
30 #include <boost/bind.hpp>
31 #include "Console/Console.hh"
32 #include "Statistics.hh"
33
34 //#include "StatisticsTargets.mpp"
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 ///////////////////////////////////////////////////////////////////////////
39 // senf::detail::StatisticsLoggerRegistry
40
41 prefix_ void
42 senf::detail::StatisticsLoggerRegistry::apply(senf::StatisticsBase & stats,
43                                               unsigned rank,
44                                               senf::console::DirectoryNode & dir)
45 {
46     Adders::const_iterator i (adders_.begin());
47     Adders::const_iterator const i_end (adders_.end());
48     for (; i != i_end; ++i)
49         (*i)(stats, rank, dir);
50 }
51
52 ///////////////////////////////////////////////////////////////////////////
53
54 namespace {
55
56     struct RegisterStatisticsLogger
57     {
58         RegisterStatisticsLogger();
59
60         static void adder(senf::StatisticsBase & stats, 
61                           unsigned rank,
62                           senf::console::DirectoryNode & dir);
63
64         static void consoleCreate(senf::StatisticsBase & stats, 
65                                   unsigned rank,
66                                   std::string const & prefix);
67     };
68
69     RegisterStatisticsLogger registerStatisticsLogger;
70 }
71
72 prefix_ RegisterStatisticsLogger::RegisterStatisticsLogger()
73 {
74     senf::detail::StatisticsLoggerRegistry::instance().add(&adder);
75 }
76
77 prefix_ void RegisterStatisticsLogger::adder(senf::StatisticsBase & stats,
78                                              unsigned rank,
79                                              senf::console::DirectoryNode & dir)
80 {
81     namespace kw = senf::console::kw;
82     
83     dir.add("logger", boost::function<void (std::string const &)>(
84                boost::bind(&consoleCreate, boost::ref(stats), rank, _1)))
85        .arg("prefix","Optional prefix string to add to each log message",
86             kw::default_value = "")
87        .doc("Send log messages to statistics log stream");
88 }
89
90 prefix_ void RegisterStatisticsLogger::consoleCreate(senf::StatisticsBase & stats,
91                                                      unsigned rank,
92                                                      std::string const & prefix)
93 {
94     stats.output(rank).connect(senf::StatisticsLogger(prefix),
95                                "senf::StatisticsLogger(\"" + prefix + "\")");
96 }
97
98 ///////////////////////////////cc.e////////////////////////////////////////
99 #undef prefix_
100 //#include "StatisticsTargets.mpp"
101
102 \f
103 // Local Variables:
104 // mode: c++
105 // fill-column: 100
106 // comment-column: 40
107 // c-file-style: "senf"
108 // indent-tabs-mode: nil
109 // ispell-local-dictionary: "american"
110 // compile-command: "scons -u test"
111 // End: