092101a45be767ef79b19a5039fe673972f8f08f
[senf.git] / Utils / Logger / AreaRegistry.cc
1 // $Id$
2 //
3 // Copyright (C) 2007 
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 AreaRegistry non-inline non-template implementation */
25
26 #include "AreaRegistry.hh"
27 #include "AreaRegistry.ih"
28
29 // Custom includes
30 #include "Target.hh"
31
32 //#include "AreaRegistry.mpp"
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 ///////////////////////////////////////////////////////////////////////////
37 // senf::log::detail::AreaBase
38
39 prefix_ void senf::log::detail::AreaBase::updateRoutingCache(Target & target,
40                                                              StreamBase const & stream,
41                                                              unsigned limit)
42     const
43 {
44     if (stream.index >= routingCache_.size())
45         routingCache_.resize(stream.index+1);
46     unsigned l (limit);
47     Routes::iterator i (routingCache_[stream.index].routes.begin());
48     Routes::iterator const i_end (routingCache_[stream.index].routes.end());
49     for (; i != i_end; ++i) {
50         if (i->target == &target) {
51             i->limit = limit;
52             break;
53         }
54         if (i->limit < l)
55             l = i->limit;
56     }
57     if (i == i_end) 
58         routingCache_[stream.index].routes.push_back(RouteEntry(limit, &target));
59     else
60         for (; i != i_end; ++i)
61             if (i->limit < l)
62                 l = i->limit;
63     routingCache_[stream.index].limit = l;
64 }
65
66 prefix_ void senf::log::detail::AreaBase::removeRoutingCache(Target & target,
67                                                              StreamBase const & stream)
68     const
69 {
70     if (stream.index >= routingCache_.size())
71         return;
72     unsigned l (DISABLED::value);
73     Routes::iterator i (routingCache_[stream.index].routes.begin());
74     Routes::iterator const i_end (routingCache_[stream.index].routes.end());
75     while (i != i_end) {
76         if (i->target == &target)
77             i = routingCache_[stream.index].routes.erase(i);
78         else {
79             if (i->limit < l)
80                 l = i->limit;
81             ++i;
82         }
83     }
84     routingCache_[stream.index].limit = l;
85 }
86
87 prefix_ void senf::log::detail::AreaBase::write(boost::posix_time::ptime timestamp,
88                                                 StreamBase const & stream, unsigned level,
89                                                 std::string msg)
90     const
91 {
92     if (stream.index >= routingCache_.size())
93         return;
94     Routes::iterator i (routingCache_[stream.index].routes.begin());
95     Routes::iterator const i_end (routingCache_[stream.index].routes.end());
96     for (; i != i_end; ++i)
97         i->target->write(timestamp, stream, *this, level, msg);
98 }
99
100 ///////////////////////////////cc.e////////////////////////////////////////
101 #undef prefix_
102 //#include "AreaRegistry.mpp"
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // fill-column: 100
108 // comment-column: 40
109 // c-file-style: "senf"
110 // indent-tabs-mode: nil
111 // ispell-local-dictionary: "american"
112 // compile-command: "scons -u test"
113 // End: