Replace all relative includes with abolute ones
[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
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. Examples:\n"
69              "\n"
70              "Create new syslog target\n"
71              "    $ syslog-target\n"
72              "    <Directory '/sys/log/syslog'>\n"
73              "\n"
74              "In a configuration file, create new syslog target and set some parameters (If\n"
75              "written on one line, this works at the console too:\n"
76              "    /sys/log/syslog-target LOCAL2 {\n"
77              "        route (IMPORTANT);             # route all important messages\n"
78              "        timeFormat \"\";               # use non-formatted time format\n"
79              "        showArea false;                # don't show log area\n"
80              "    }\n");
81 }
82
83 prefix_ boost::shared_ptr<senf::console::DirectoryNode>
84 senf::log::SyslogTarget::RegisterConsole::create(LogFacility facility)
85 {
86     std::auto_ptr<Target> tp (new SyslogTarget(facility));
87     Target & target (*tp.get());
88     detail::TargetRegistry::instance().dynamicTarget(tp);
89     return target.consoleDir().node().thisptr();
90 }
91
92 ///////////////////////////////cc.e////////////////////////////////////////
93 #undef prefix_
94 //#include "SyslogTarget.mpp"
95
96 \f
97 // Local Variables:
98 // mode: c++
99 // fill-column: 100
100 // comment-column: 40
101 // c-file-style: "senf"
102 // indent-tabs-mode: nil
103 // ispell-local-dictionary: "american"
104 // compile-command: "scons -u test"
105 // End: