477ff259d03faf15cab07e0d3b58062292ad57ac
[senf.git] / senf / Utils / Logger / AreaRegistry.ih
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 internal header */
25
26 #ifndef IH_SENF_Utils_Logger_AreaRegistry_
27 #define IH_SENF_Utils_Logger_AreaRegistry_ 1
28
29 // Custom includes
30 #include <string>
31 #include <vector>
32 #include <list>
33 #include "Levels.hh"
34 #include "TimeSource.hh"
35
36 ///////////////////////////////ih.p////////////////////////////////////////
37
38 namespace senf {
39 namespace log {
40
41     class Target;
42
43 namespace detail {
44
45     class StreamBase;
46
47     /** \brief Internal: Area base class */
48     struct AreaBase
49     {
50         AreaBase();
51         virtual ~AreaBase();
52
53         std::string fullName() const;
54         virtual std::string v_name() const;
55
56         void init();
57         bool alive() const;
58
59         unsigned limit(StreamBase const & stream) const;
60         void updateRoutingCache(Target & target, StreamBase const & stream, unsigned limit) const;
61         void removeRoutingCache(Target & target, StreamBase const & stream) const;
62         void write(time_type timestamp, StreamBase const & stream, unsigned level,
63                    std::string const & msg) const;
64
65     private:
66         struct RouteEntry {
67             RouteEntry(unsigned limit_, Target * target_) : limit(limit_), target(target_) {}
68             unsigned limit;
69             Target * target;
70         };
71         typedef std::list<RouteEntry> Routes;
72         struct CacheEntry {
73             CacheEntry() : limit (DISABLED::value), routes() {}
74             unsigned limit;
75             Routes routes;
76         };
77         typedef std::vector<CacheEntry> RoutingCache;
78         mutable RoutingCache routingCache_;
79         bool alive_;
80     };
81
82 }}}
83
84
85 ///////////////////////////////ih.e////////////////////////////////////////
86 #endif
87
88 \f
89 // Local Variables:
90 // mode: c++
91 // fill-column: 100
92 // comment-column: 40
93 // c-file-style: "senf"
94 // indent-tabs-mode: nil
95 // ispell-local-dictionary: "american"
96 // compile-command: "scons -u test"
97 // End: