bbd22a4fced91e6fc7b387268ed07a663005669e
[senf.git] / senf / 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 <senf/Utils/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     namespace fty = senf::console::factory;
63
64     detail::TargetRegistry::instance().consoleDir()
65         .add("syslog-target",fty::Command(&RegisterConsole::create)
66              .arg("facility", "syslog facility to send messages to. One of\n"
67                   "                  AUTHPRIV CRON DAEMON FTP KERN LPR MAIL NEWS SYSLOG USER\n"
68                   "                  UUCP LOCAL0 LOCAL1 LOCAL2 LOCAL3 LOCAL4 LOCAL5 LOCAL6 LOCAL7",
69                   kw::default_value = USER)
70              .doc("Create new syslog target. Examples:\n"
71                   "\n"
72                   "Create new syslog target\n"
73                   "    $ syslog-target\n"
74                   "    <Directory '/sys/log/syslog'>\n"
75                   "\n"
76                   "In a configuration file, create new syslog target and set some parameters (If\n"
77                   "written on one line, this works at the console too:\n"
78                   "    /sys/log/syslog-target LOCAL2 {\n"
79                   "        route (IMPORTANT);             # route all important messages\n"
80                   "        timeFormat \"\";               # use non-formatted time format\n"
81                   "        showArea false;                # don't show log area\n"
82                   "    }\n") );
83 }
84
85 prefix_ boost::shared_ptr<senf::console::DirectoryNode>
86 senf::log::SyslogTarget::RegisterConsole::create(LogFacility facility)
87 {
88     std::auto_ptr<Target> tp (new SyslogTarget(facility));
89     Target & target (*tp.get());
90     detail::TargetRegistry::instance().dynamicTarget(tp);
91     return target.consoleDir().node().thisptr();
92 }
93
94 ///////////////////////////////cc.e////////////////////////////////////////
95 #undef prefix_
96 //#include "SyslogTarget.mpp"
97
98 \f
99 // Local Variables:
100 // mode: c++
101 // fill-column: 100
102 // comment-column: 40
103 // c-file-style: "senf"
104 // indent-tabs-mode: nil
105 // ispell-local-dictionary: "american"
106 // compile-command: "scons -u test"
107 // End: