Socket/Protocols/INet: Implement address input streaming
[senf.git] / Utils / Logger / SyslogTarget.cc
1 // $Id$
2 //
3 // Copyright (C) 2008 
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 SyslogTarget non-inline non-template implementation */
25
26 #include "SyslogTarget.hh"
27 //#include "SyslogTarget.ih"
28
29 // Custom includes
30 #include "../Console/Console.hh"
31
32 //#include "SyslogTarget.mpp"
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 int const senf::log::SyslogTarget::LEVELMAP[8] = {
37     0, LOG_DEBUG, LOG_INFO, LOG_NOTICE, LOG_WARNING, LOG_CRIT, LOG_EMERG, 0 };
38
39 prefix_ void senf::log::SyslogTarget::v_write(time_type timestamp, std::string const & stream,
40                                               std::string const & area, unsigned level,
41                                               std::string const & message)
42 {
43     if (area != "senf::log::DefaultArea")
44         syslog(facility_ | LEVELMAP[level], "[%s] %s", area.c_str(), message.c_str());
45     else
46         syslog(facility_ | LEVELMAP[level], "%s", message.c_str());
47 }
48
49 namespace senf {
50 namespace log {
51
52     SENF_CONSOLE_REGISTER_ENUM_MEMBER(SyslogTarget, LogFacility,
53                                       (AUTHPRIV)(CRON)(DAEMON)(FTP)(KERN)(LPR)(MAIL)(NEWS)(SYSLOG)
54                                       (USER)(UUCP)(LOCAL0)(LOCAL1)(LOCAL2)(LOCAL3)(LOCAL4)(LOCAL5)
55                                       (LOCAL6)(LOCAL7));
56
57 }}
58
59 prefix_ senf::log::SyslogTarget::RegisterConsole::RegisterConsole()
60 {
61     namespace kw = senf::console::kw;
62
63     detail::TargetRegistry::instance().consoleDir().add("syslog-target",&RegisterConsole::create)
64         .arg("facility", "syslog facility to send messages to. One of\n"
65              "                  AUTHPRIV, CRON, DAEMON, FTP, KERN, LPR, MAIL, NEWS, SYSLOG, USER,\n"
66              "                  UUCP, LOCAL0, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7",
67              kw::default_value = USER)
68         .doc("Create new syslog target.");
69 }
70
71 prefix_ void senf::log::SyslogTarget::RegisterConsole::create(LogFacility facility)
72 {
73     detail::TargetRegistry::instance().dynamicTarget(
74         std::auto_ptr<Target>(new SyslogTarget(facility)));
75 }
76
77 ///////////////////////////////cc.e////////////////////////////////////////
78 #undef prefix_
79 //#include "SyslogTarget.mpp"
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // fill-column: 100
85 // comment-column: 40
86 // c-file-style: "senf"
87 // indent-tabs-mode: nil
88 // ispell-local-dictionary: "american"
89 // compile-command: "scons -u test"
90 // End: