log4tango 5.0.2
RollingFileAppender.hh
Go to the documentation of this file.
1//
2// RollingFileAppender.hh
3//
4// Copyright (C) : 2000 - 2002
5// LifeLine Networks BV (www.lifeline.nl). All rights reserved.
6// Bastiaan Bakker. All rights reserved.
7//
8// 2004,2005,2006,2007,2008,2009,2010,2011,2012
9// Synchrotron SOLEIL
10// L'Orme des Merisiers
11// Saint-Aubin - BP 48 - France
12//
13// This file is part of log4tango.
14//
15// Log4ango is free software: you can redistribute it and/or modify
16// it under the terms of the GNU Lesser General Public License as published by
17// the Free Software Foundation, either version 3 of the License, or
18// (at your option) any later version.
19//
20// Log4tango is distributed in the hope that it will be useful,
21// but WITHOUT ANY WARRANTY; without even the implied warranty of
22// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23// GNU Lesser General Public License for more details.
24//
25// You should have received a copy of the GNU Lesser General Public License
26// along with Log4Tango. If not, see <http://www.gnu.org/licenses/>.
27
28#ifndef _LOG4TANGO_ROLLINGFILEAPPENDER_H
29#define _LOG4TANGO_ROLLINGFILEAPPENDER_H
30
33
34namespace log4tango {
35
36//-----------------------------------------------------------------------------
37// class RollingFileAppender (olls over the logfile)
38//-----------------------------------------------------------------------------
40{
41 public:
42
43 RollingFileAppender(const std::string& name,
44 const std::string& file_name,
45 size_t max_fs = 10*1024*1024,
46 unsigned int max_bi = 1,
47 bool append = true,
48 mode_t mode = 00644);
49
50 virtual void set_max_backup_index(unsigned int maxBackups);
51
52 virtual unsigned int get_max_backup_index() const;
53
54 virtual void set_maximum_file_size (size_t max_fs);
55
56 virtual size_t get_max_file_size() const;
57
58 virtual void roll_over();
59
60protected:
61
62 virtual int _append (const LoggingEvent& event);
63
64 unsigned int _max_backup_index;
65
67};
68
69} // namespace log4tango
70
71#endif // _LOG4TANGO_ROLLINGFILEAPPENDER_H
#define LOG4TANGO_EXPORT
Definition: Export.hh:38
Definition: FileAppender.hh:40
Definition: RollingFileAppender.hh:40
unsigned int _max_backup_index
Definition: RollingFileAppender.hh:64
size_t _max_file_size
Definition: RollingFileAppender.hh:66
Definition: Appender.hh:40
The internal representation of logging events.
Definition: LoggingEvent.hh:51