Apache Log4cxx  Version 1.7.0
Loading...
Searching...
No Matches
rollingfileappender.h
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#if !defined(_LOG4CXX_ROLLING_ROLLING_FILE_APPENDER_H)
19#define _LOG4CXX_ROLLING_ROLLING_FILE_APPENDER_H
20
27
28namespace LOG4CXX_NS
29{
30namespace rolling
31{
32
33
76class LOG4CXX_EXPORT RollingFileAppender : public FileAppender
77{
83 protected:
84 struct RollingFileAppenderPriv;
85
86 public:
88 RollingFileAppender( std::unique_ptr<RollingFileAppenderPriv> priv );
89
91 int getMaxBackupIndex() const;
92
94 size_t getMaximumFileSize() const;
95
96
105 void setMaxBackupIndex( int maxBackupIndex );
106
115 void setMaxFileSize( const LogString& value );
116
117 void setMaximumFileSize( size_t value );
118
125
127
148 void setOption( const LogString& option, const LogString& value ) override;
149
157
172 bool rollover(LOG4CXX_NS::helpers::Pool& p);
173
174 protected:
175
179 void subAppend(const spi::LoggingEventPtr& event, helpers::Pool& p) override;
180
181 bool rolloverInternal(LOG4CXX_NS::helpers::Pool& p);
182
183 public:
187 RollingPolicyPtr getRollingPolicy() const;
188
192 TriggeringPolicyPtr getTriggeringPolicy() const;
193
201 void setRollingPolicy(const RollingPolicyPtr& policy);
202
206 void setTriggeringPolicy(const TriggeringPolicyPtr& policy);
207
208 public:
212 void close() override;
213
214 protected:
224 helpers::WriterPtr createWriter(LOG4CXX_16_CONST helpers::OutputStreamPtr& os) override;
225
226 public:
231 size_t getFileLength() const;
232
237 void incrementFileLength(size_t increment);
238
239};
240
242
243}
244}
245
246#endif
247
FileAppender()
The default constructor does not do anything.
Definition pool.h:33
RollingFileAppender extends log4cxx::FileAppender to backup the log files depending on RollingPolicy ...
Definition rollingfileappender.h:77
void setTriggeringPolicy(const TriggeringPolicyPtr &policy)
Use policy to determine when to trigger a log file rollover.
size_t getMaximumFileSize() const
Get the maximum size that the output file is allowed to reach before being rolled over to backup file...
helpers::WriterPtr createWriter(LOG4CXX_16_CONST helpers::OutputStreamPtr &os) override
Returns an OutputStreamWriter when passed an OutputStream.
void close() override
Close appender.
void incrementFileLength(size_t increment)
Increments estimated byte length of current active log file.
void subAppend(const spi::LoggingEventPtr &event, helpers::Pool &1) override
Actual writing occurs here.
bool rolloverInternal(log4cxx::helpers::Pool &1)
void activateOptions(helpers::Pool &) override
TriggeringPolicyPtr getTriggeringPolicy() const
The policy that determine when to trigger a log file rollover.
RollingFileAppender(std::unique_ptr< RollingFileAppenderPriv > priv)
void setRollingPolicy(const RollingPolicyPtr &policy)
Use policy as the scheme for rolling over log files.
bool rollover(log4cxx::helpers::Pool &1)
Implements the configured roll over behaviour.
LogString makeFileNamePattern(const LogString &datePattern)
size_t getFileLength() const
Get byte length of current active log file.
void setMaxBackupIndex(int maxBackupIndex)
Set the maximum number of backup files to keep around.
RollingPolicyPtr getRollingPolicy() const
The policy that implements the scheme for rolling over a log file.
void setMaxFileSize(const LogString &value)
Set the maximum size that the output file is allowed to reach before being rolled over to backup file...
void setOption(const LogString &option, const LogString &value) override
Set option to value.
void setDatePattern(const LogString &pattern)
The DatePattern takes a string in the same format as expected by SimpleDateFormat.
int getMaxBackupIndex() const
Returns the value of the MaxBackupIndex option.
Definition cacheddateformat.h:26
LOG4CXX_PTR_DEF(Action)
std::shared_ptr< LoggingEvent > LoggingEventPtr
Definition appender.h:32
std::basic_string< logchar > LogString
Definition logstring.h:60
#define LOG4CXX_CAST_ENTRY(Interface)
Definition object.h:154
#define END_LOG4CXX_CAST_MAP()
Definition object.h:148
#define DECLARE_LOG4CXX_OBJECT(object)
Definition object.h:41
#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)
Definition object.h:160
#define BEGIN_LOG4CXX_CAST_MAP()
Definition object.h:142
#define LOG4CXX_ACTIVATE_OPTIONS_FORMAL_PARAMETERS
Activate the options that were previously set with calls to option setters.
Definition optionhandler.h:53
#define LOG4CXX_16_CONST
Definition outputstreamwriter.h:28