e8773fe4093525d3b4d7230011adaa1c451c93b6
[senf.git] / Utils / Logger / AreaRegistry.ih
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
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_AreaRegistry_
27 #define IH_AreaRegistry_ 1
28
29 // Custom includes
30 #include <string>
31 #include <vector>
32 #include <list>
33 #include <boost/date_time/posix_time/posix_time.hpp>
34 #include "Levels.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         virtual ~AreaBase() {};
51         
52         std::string fullName() const;
53         virtual std::string v_name() const;
54
55         void init();
56
57         unsigned limit(StreamBase const & stream) const;
58         void updateRoutingCache(Target & target, StreamBase const & stream, unsigned limit) const; 
59         void removeRoutingCache(Target & target, StreamBase const & stream) const; 
60         void write(boost::posix_time::ptime timestamp, StreamBase const & stream, unsigned level,
61               std::string msg) const;
62
63     private:
64         struct RouteEntry {
65             RouteEntry(unsigned limit_, Target * target_) : limit(limit_), target(target_) {}
66             unsigned limit;
67             Target * target;
68         };
69         typedef std::list<RouteEntry> Routes;
70         struct CacheEntry {
71             CacheEntry() : limit (DISABLED::value), routes() {}
72             unsigned limit;
73             Routes routes;
74         };
75         typedef std::vector<CacheEntry> RoutingCache;
76         mutable RoutingCache routingCache_;
77     };
78
79 }}}
80
81
82 ///////////////////////////////ih.e////////////////////////////////////////
83 #endif
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // fill-column: 100
89 // comment-column: 40
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // End: