Packets: Fix VariantParser invalid parser access bug
[senf.git] / Utils / Logger / Target.cci
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 Target inline non-template implementation */
25
26 #include "Target.ih"
27
28 // Custom includes
29 #include "AreaRegistry.hh"
30
31 #define prefix_ inline
32 ///////////////////////////////cci.p///////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::log::Target
36
37 prefix_ void senf::log::Target::route(action_t action, int index)
38 {
39     route(0, 0, NONE::value, action, index);
40 }
41
42 prefix_ void senf::log::Target::unroute(action_t action)
43 {
44     unroute(0, 0, NONE::value, action);
45 }
46
47 prefix_ senf::log::Target::iterator senf::log::Target::begin()
48     const
49 {
50     return rib_.begin();
51 }
52
53 prefix_ senf::log::Target::iterator senf::log::Target::end()
54     const
55 {
56     return rib_.end();
57 }
58
59 ///////////////////////////////////////////////////////////////////////////
60 // senf::log::Target::RoutingEntry
61
62 prefix_ senf::log::Target::RoutingEntry::RoutingEntry(detail::StreamBase const * stream,
63                                                       detail::AreaBase const * area,
64                                                       unsigned level, action_t action)
65     : stream_(stream), area_(area), level_(level), action_(action) 
66 {}
67
68 prefix_ senf::log::Target::RoutingEntry::RoutingEntry()
69     : stream_(0), area_(0), level_(0), action_(ACCEPT) 
70 {}
71
72 prefix_ bool senf::log::Target::RoutingEntry::operator==(RoutingEntry const & other)
73
74     return 
75         stream_ == other.stream_ && 
76         area_ == other.area_ && 
77         level_ == other.level_ &&
78         action_ == other.action_; 
79 }
80
81 prefix_ std::string senf::log::Target::RoutingEntry::stream()
82     const
83 {
84     return stream_ ? stream_->v_name() : "";
85 }
86
87 prefix_ std::string senf::log::Target::RoutingEntry::area()
88     const
89 {
90     return area_ ? area_->v_name() : "";
91 }
92
93 prefix_ unsigned senf::log::Target::RoutingEntry::level()
94     const
95 {
96     return level_;
97 }
98
99 prefix_ senf::log::Target::action_t senf::log::Target::RoutingEntry::action()
100     const
101 {
102     return action_;
103 }
104
105 ///////////////////////////////////////////////////////////////////////////
106 // senf::log::detail::TargetRegistry
107
108 prefix_ void senf::log::detail::TargetRegistry::routed()
109 {
110     fallbackRouting_ = false;
111 }
112
113 prefix_ bool senf::log::detail::TargetRegistry::fallbackRouting()
114 {
115     return fallbackRouting_;
116 }
117
118 ////////////////////////////////////////
119 // private members
120
121 prefix_ senf::log::detail::TargetRegistry::TargetRegistry()
122     : fallbackRouting_(true)
123 {}
124
125 prefix_ void senf::log::detail::TargetRegistry::registerTarget(Target * target)
126 {
127     targets_.insert(target);
128 }
129
130 prefix_ void senf::log::detail::TargetRegistry::unregisterTarget(Target * target)
131 {
132     targets_.erase(target);
133 }
134
135 /////////////////////////////cci.e///////////////////////////////////////
136 #undef prefix_
137
138 \f
139 // Local Variables:
140 // mode: c++
141 // fill-column: 100
142 // comment-column: 40
143 // c-file-style: "senf"
144 // indent-tabs-mode: nil
145 // ispell-local-dictionary: "american"
146 // compile-command: "scons -u test"
147 // End: