switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Utils / Logger / AreaRegistry.cci
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief AreaRegistry inline non-template implementation */
30
31 #include "AreaRegistry.ih"
32
33 // Custom includes
34 #include <senf/Utils/TypeInfo.hh>
35 #include "Levels.hh"
36 #include "StreamRegistry.hh"
37
38 #define prefix_ inline
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40
41 //-/////////////////////////////////////////////////////////////////////////////////////////////////
42 // senf::log::AreaRegistry
43
44 prefix_ std::string const &
45 senf::log::AreaRegistry::SelectName::operator()(Registry::value_type const & v)
46     const
47 {
48     return v.first;
49 }
50
51 prefix_ senf::log::AreaRegistry::AreaRegistry()
52 {}
53
54 prefix_ senf::log::AreaRegistry::iterator senf::log::AreaRegistry::begin()
55 {
56     return boost::make_transform_iterator(registry_.begin(), SelectName());
57 }
58
59 prefix_ senf::log::AreaRegistry::iterator senf::log::AreaRegistry::end()
60 {
61     return boost::make_transform_iterator(registry_.end(), SelectName());
62 }
63
64 prefix_ void senf::log::AreaRegistry::registerArea(detail::AreaBase const & area)
65 {
66     registry_.insert( std::make_pair(area.v_name(), &area) );
67 }
68
69 prefix_ senf::log::detail::AreaBase const *
70 senf::log::AreaRegistry::lookup(std::string const & name)
71 {
72     Registry::iterator i (registry_.find(name));
73     return i == registry_.end() ? 0 : i->second;
74 }
75
76 //-/////////////////////////////////////////////////////////////////////////////////////////////////
77 // senf::log::detail::AreaBase
78
79 prefix_ std::string senf::log::detail::AreaBase::fullName()
80     const
81 {
82     return prettyName(typeid(*this));
83 }
84
85 prefix_ std::string senf::log::detail::AreaBase::v_name()
86     const
87 {
88     return fullName();
89 }
90
91 prefix_ void senf::log::detail::AreaBase::init()
92 {
93     senf::log::AreaRegistry::instance().registerArea(*this);
94 }
95
96 prefix_ bool senf::log::detail::AreaBase::alive()
97     const
98 {
99     return alive_;
100 }
101
102 prefix_ unsigned senf::log::detail::AreaBase::limit(StreamBase const & stream)
103     const
104 {
105     return stream.index >= routingCache_.size() ?
106         DISABLED::value : routingCache_[stream.index].limit;
107 }
108
109 //-/////////////////////////////////////////////////////////////////////////////////////////////////
110 #undef prefix_
111
112 \f
113 // Local Variables:
114 // mode: c++
115 // fill-column: 100
116 // comment-column: 40
117 // c-file-style: "senf"
118 // indent-tabs-mode: nil
119 // ispell-local-dictionary: "american"
120 // compile-command: "scons -u test"
121 // End: