Utils/Logger: Implement targets
[senf.git] / Utils / Logger / Target.cc
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 Target non-inline non-template implementation */
25
26 #include "Target.hh"
27 //#include "Target.ih"
28
29 // Custom includes
30
31 //#include "Target.mpp"
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 ///////////////////////////////////////////////////////////////////////////
36 // senf::log::Target
37
38 prefix_ senf::log::Target::Target()
39 {
40     TargetRegistry::instance().registerTarget(this);
41 }
42
43 prefix_ senf::log::Target::~Target()
44 {
45     while( ! rib_.empty()) {
46         // This is slower but simplifies the area cache handling and removing a target
47         // should be quite seldom
48         RIB::reverse_iterator i (rib_.rbegin());
49         unroute(i->stream, i->area, i->level);
50     }
51     TargetRegistry::instance().unregisterTarget(this);
52 }
53
54 prefix_ void senf::log::Target::write(boost::posix_time::ptime timestamp,
55                                       detail::StreamBase const & stream,
56                                       detail::AreaBase const & area, unsigned level,
57                                       std::string const & message)
58 {
59     RIB::iterator i (rib_.begin());
60     RIB::iterator const i_end (rib_.end());
61     for (; i != i_end; ++i)
62         if ( ( ! i->stream || i->stream == &stream ) &&
63              ( ! i->area || i->area == &area ) &&
64              (i->level == NONE::value ? i->stream->defaultRuntimeLimit() : i->level) <= level ) {
65             v_write(timestamp, stream.v_name(), area.v_name(), level, message);
66             return;
67         }
68 }
69
70 ///////////////////////////////////////////////////////////////////////////
71 // senf::log::TargetRegistry
72
73 prefix_ void senf::log::TargetRegistry::write(detail::StreamBase const & stream,
74                                               detail::AreaBase const & area, unsigned level,
75                                               std::string msg)
76 {
77     boost::posix_time::ptime timestamp (boost::posix_time::microsec_clock::universal_time());
78     Targets::iterator i (targets_.begin());
79     Targets::iterator i_end (targets_.end());
80     for(; i != i_end; ++i)
81         (*i)->write(timestamp, stream, area, level, msg);
82 }
83
84 ///////////////////////////////cc.e////////////////////////////////////////
85 #undef prefix_
86 //#include "Target.mpp"
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: