Utils/Console: Parser based character classifiers
[senf.git] / Utils / Logger / SyslogUDPTarget.hh
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 SyslogUDPTarget public header */
25
26 #ifndef HH_SENF_Utils_Logger_SyslogUDPTarget_
27 #define HH_SENF_Utils_Logger_SyslogUDPTarget_ 1
28
29 // Custom includes
30 #include "SyslogTarget.hh"
31 #include "LogFormat.hh"
32 #include "../../Socket/Protocols/INet/INetAddressing.hh"
33 #include "../../Socket/ClientSocketHandle.hh"
34 #include "../../Socket/FramingPolicy.hh"
35 #include "../../Socket/ReadWritePolicy.hh"
36 #include "../../Socket/CommunicationPolicy.hh"
37
38 //#include "SyslogUDPTarget.mpp"
39 ///////////////////////////////hh.p////////////////////////////////////////
40
41 namespace senf {
42 namespace log {
43
44     /** \brief Log target writing UDP syslog packets
45
46         The SyslogUDPTarget will send all log messages directly via UDP to a target host. This host
47         should have a syslog daemon or relay running. The protocol is defined in <a
48         href="ttp://tools.ietf.org/html/rfc3164">RFC-3164</a>.
49
50         This log target has some important benefits:
51
52         \li It will never block. It may however lose log messages.
53         \li It does \e not add timestamp information locally.
54
55         These are \e advantages since this makes SyslogUDPTarget a very reliable high-performance
56         logging target.
57
58         Valid facility values are from <tt>man 3 syslog</tt>:
59
60         \par "" 
61            <tt>LOG_AUTHPRIV</tt>, <tt>LOG_CRON</tt>, <tt>LOG_DAEMON</tt>, <tt>LOG_FTP</tt>,
62            <tt>LOG_KERN</tt>, <tt>LOG_LOCAL0</tt>, <tt>LOG_LOCAL1</tt>, <tt>LOG_LOCAL2</tt>,
63            <tt>LOG_LOCAL3</tt>, <tt>LOG_LOCAL4</tt>, <tt>LOG_LOCAL5</tt>, <tt>LOG_LOCAL6</tt>,
64            <tt>LOG_LOCAL7</tt>, <tt>LOG_LPR</tt>, <tt>LOG_MAIL</tt>, <tt>LOG_NEWS</tt>,
65            <tt>LOG_SYSLOG</tt>, <tt>LOG_USER</tt>, <tt>LOG_UUCP</tt>
66
67         the default facility is <tt>LOG_USER</tt>
68
69         The SENF log levels are mapped to syslog levels in the following way:
70
71         <table class="senf fixedcolumn">
72         <tr><td>senf::log::VERBOSE</td>   <td>\c LOG_DEBUG</td></tr>
73         <tr><td>senf::log::NOTICE</td>    <td>\c LOG_INFO</td></tr>
74         <tr><td>senf::log::MESSAGE</td>   <td>\c LOG_NOTICE</td></tr>
75         <tr><td>senf::log::IMPORTANT</td> <td>\c LOG_WARNING</td></tr>
76         <tr><td>senf::log::CRITICAL</td>  <td>\c LOG_CRIT</td></tr>
77         <tr><td>senf::log::FATAL</td>     <td>\c LOG_EMERG</td></tr>
78         </table>
79
80         \note Since the UDP syslog packets are limited to 1024 characters and there must be some
81             space left so a relay may optionally add a timestamp and hostname section, the log
82             messages are split after 896 characters. Additionally the log messages are split at each
83             newline char since non-printable characters are not allowed.
84
85         \implementation The RFC only \e recommends the exact message format. This allows us to
86             include the \c PRI part but skip the \c HEADER part (which includes the timestamp and
87             hostname) for better performance. We add a space after the \c PRI to force the syslog
88             daemon to skip the \c HEADER part.
89
90         \ingroup targets
91      */
92     class SyslogUDPTarget
93         : public Target, private detail::LogFormat
94     {
95     public:
96         ///////////////////////////////////////////////////////////////////////////
97         // Types
98
99         ///////////////////////////////////////////////////////////////////////////
100         ///\name Structors and default members
101         ///@{
102
103         explicit SyslogUDPTarget(senf::INet4Address const & target, int facility = LOG_USER);
104         explicit SyslogUDPTarget(senf::INet4SocketAddress const & target, int facility = LOG_USER);
105         explicit SyslogUDPTarget(senf::INet6Address const & target, int facility = LOG_USER);
106         explicit SyslogUDPTarget(senf::INet6SocketAddress const & target, int facility = LOG_USER);
107
108         ///@}
109         ///////////////////////////////////////////////////////////////////////////
110
111         using detail::LogFormat::showTime;
112         using detail::LogFormat::showStream;
113         using detail::LogFormat::showLevel;
114         using detail::LogFormat::showArea;
115         using detail::LogFormat::timeFormat;
116         using detail::LogFormat::tag;
117
118     private:
119         void v_write(time_type timestamp, std::string const & stream, 
120                      std::string const & area, unsigned level, 
121                      std::string const & message);
122
123         int facility_;
124         typedef senf::ClientSocketHandle< senf::MakeSocketPolicy<
125             senf::DatagramFramingPolicy,
126             senf::ConnectedCommunicationPolicy,
127             senf::WriteablePolicy>::policy > Handle;
128         Handle handle_;
129
130     public:
131         enum LogFacility { 
132             AUTHPRIV = LOG_AUTHPRIV,
133             CRON = LOG_CRON,
134             DAEMON = LOG_DAEMON,
135             FTP = LOG_FTP,
136             KERN = LOG_KERN,
137             LOCAL0 = LOG_LOCAL0,
138             LOCAL1 = LOG_LOCAL1,
139             LOCAL2 = LOG_LOCAL2,
140             LOCAL3 = LOG_LOCAL3,
141             LOCAL4 = LOG_LOCAL4,
142             LOCAL5 = LOG_LOCAL5,
143             LOCAL6 = LOG_LOCAL6,
144             LOCAL7 = LOG_LOCAL7,
145             LPR = LOG_LPR,
146             MAIL = LOG_MAIL,
147             NEWS = LOG_NEWS,
148             SYSLOG = LOG_SYSLOG,
149             USER = LOG_USER,
150             UUCP = LOG_UUCP
151         };
152
153     private:
154
155         struct RegisterConsole {
156             RegisterConsole();
157             static boost::shared_ptr<senf::console::DirectoryNode> create(
158                 senf::INet4SocketAddress const & target, LogFacility facility = USER);
159             static boost::shared_ptr<senf::console::DirectoryNode> create(
160                 senf::INet4Address const & target, LogFacility facility = USER);
161             static boost::shared_ptr<senf::console::DirectoryNode> create(
162                 senf::INet6SocketAddress const & target, LogFacility facility = USER);
163             static boost::shared_ptr<senf::console::DirectoryNode> create(
164                 senf::INet6Address const & target, LogFacility facility = USER);
165             static RegisterConsole instance;
166         };
167     };
168
169 }}
170
171 ///////////////////////////////hh.e////////////////////////////////////////
172 #include "SyslogUDPTarget.cci"
173 //#include "SyslogUDPTarget.ct"
174 //#include "SyslogUDPTarget.cti"
175 #endif
176
177 \f
178 // Local Variables:
179 // mode: c++
180 // fill-column: 100
181 // comment-column: 40
182 // c-file-style: "senf"
183 // indent-tabs-mode: nil
184 // ispell-local-dictionary: "american"
185 // compile-command: "scons -u test"
186 // End: