Utils/Logger: Move log formatting into LogFromat mixin class
[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     class SyslogUDPTarget
91         : public Target, private detail::LogFormat
92     {
93     public:
94         ///////////////////////////////////////////////////////////////////////////
95         // Types
96
97         ///////////////////////////////////////////////////////////////////////////
98         ///\name Structors and default members
99         ///@{
100
101         explicit SyslogUDPTarget(senf::INet4Address const & target, int facility = LOG_USER);
102         explicit SyslogUDPTarget(senf::INet4SocketAddress const & target, int facility = LOG_USER);
103         explicit SyslogUDPTarget(senf::INet6Address const & target, int facility = LOG_USER);
104         explicit SyslogUDPTarget(senf::INet6SocketAddress const & target, int facility = LOG_USER);
105
106         ///@}
107         ///////////////////////////////////////////////////////////////////////////
108
109         using detail::LogFormat::showTime;
110         using detail::LogFormat::showStream;
111         using detail::LogFormat::showLevel;
112         using detail::LogFormat::showArea;
113         using detail::LogFormat::timeFormat;
114         using detail::LogFormat::tag;
115
116     private:
117         void v_write(time_type timestamp, std::string const & stream, 
118                      std::string const & area, unsigned level, 
119                      std::string const & message);
120
121         int facility_;
122         typedef senf::ClientSocketHandle< senf::MakeSocketPolicy<
123             senf::DatagramFramingPolicy,
124             senf::ConnectedCommunicationPolicy,
125             senf::WriteablePolicy>::policy > Handle;
126         Handle handle_;
127     };
128
129 }}
130
131 ///////////////////////////////hh.e////////////////////////////////////////
132 #include "SyslogUDPTarget.cci"
133 //#include "SyslogUDPTarget.ct"
134 //#include "SyslogUDPTarget.cti"
135 #endif
136
137 \f
138 // Local Variables:
139 // mode: c++
140 // fill-column: 100
141 // comment-column: 40
142 // c-file-style: "senf"
143 // indent-tabs-mode: nil
144 // ispell-local-dictionary: "american"
145 // compile-command: "scons -u test"
146 // End: