summaryrefslogtreecommitdiff
path: root/ext/Log4Qt/src/rollingfileappender.cpp
diff options
context:
space:
mode:
authorTomasz Sterna <tomek@xiaoka.com>2014-07-14 17:19:45 +0200
committerTomasz Sterna <tomek@xiaoka.com>2014-07-16 00:07:28 +0200
commit3c19406ee292e0ed7993bd4d3976cc34d40e2f22 (patch)
tree67d185e95d647e56c074f4b3a30ac4f0d81e2ee6 /ext/Log4Qt/src/rollingfileappender.cpp
parent630cc2e3097f2236a4c1191be6c955ec523d6f1a (diff)
Replaced ext/Log4Qt source with submodule
Diffstat (limited to 'ext/Log4Qt/src/rollingfileappender.cpp')
-rwxr-xr-xext/Log4Qt/src/rollingfileappender.cpp191
1 files changed, 0 insertions, 191 deletions
diff --git a/ext/Log4Qt/src/rollingfileappender.cpp b/ext/Log4Qt/src/rollingfileappender.cpp
deleted file mode 100755
index 9b13135..0000000
--- a/ext/Log4Qt/src/rollingfileappender.cpp
+++ /dev/null
@@ -1,191 +0,0 @@
-/******************************************************************************
- *
- * package: Log4Qt
- * file: rollingfileappender.cpp
- * created: September 2007
- * author: Martin Heinrich
- *
- *
- * Copyright 2007 Martin Heinrich
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************/
-
-
-
-/******************************************************************************
- * Dependencies
- ******************************************************************************/
-
-
-#include "rollingfileappender.h"
-
-#include <QtCore/QDebug>
-#include <QtCore/QFile>
-#include <QtCore/QTextCodec>
-#include "helpers/optionconverter.h"
-#include "layout.h"
-#include "loggingevent.h"
-
-
-
-namespace Log4Qt
-{
-
-
- /************************************************************************
- Declarations
- *************************************************************************/
-
-
-
- /************************************************************************
- C helper functions
- *************************************************************************/
-
-
-
- /************************************************************************
- Class implementation: RollingFileAppender
- *************************************************************************/
-
-
- RollingFileAppender::RollingFileAppender(QObject *pParent) :
- FileAppender(pParent),
- mMaxBackupIndex(1),
- mMaximumFileSize(10*1024*1024)
- {
- }
-
-
- RollingFileAppender::RollingFileAppender(Layout *pLayout,
- const QString &rFileName,
- QObject *pParent) :
- FileAppender(pLayout, rFileName, pParent),
- mMaxBackupIndex(1),
- mMaximumFileSize(10*1024*1024)
- {
- }
-
-
- RollingFileAppender::RollingFileAppender(Layout *pLayout,
- const QString &rFileName,
- bool append,
- QObject *pParent) :
- FileAppender(pLayout, rFileName, append, pParent),
- mMaxBackupIndex(1),
- mMaximumFileSize(10*1024*1024)
- {
- }
-
-
- RollingFileAppender::~RollingFileAppender()
- {
- close();
- }
-
-
- void RollingFileAppender::setMaxFileSize(const QString &rMaxFileSize)
- {
- bool ok;
- qint64 max_file_size = OptionConverter::toFileSize(rMaxFileSize, &ok);
- if (ok)
- setMaximumFileSize(max_file_size);
- }
-
-
- void RollingFileAppender::append(const LoggingEvent &rEvent)
- {
- // Q_ASSERT_X(, "RollingFileAppender::append()", "Lock must be held by caller")
-
- FileAppender::append(rEvent);
- if (writer()->device()->size() > this->mMaximumFileSize)
- rollOver();
- }
-
-
- void RollingFileAppender::rollOver()
- {
- // Q_ASSERT_X(, "RollingFileAppender::rollOver()", "Lock must be held by caller")
-
- logger()->debug("Rolling over with maxBackupIndex = %1", mMaxBackupIndex);
-
- closeFile();
-
- QFile f;
- f.setFileName(file() + QLatin1Char('.') + QString::number(mMaxBackupIndex));
- if (f.exists() && !removeFile(f))
- return;
-
- QString target_file_name;
- int i;
- for (i = mMaxBackupIndex - 1; i >=1; i--)
- {
- f.setFileName(file() + QLatin1Char('.') + QString::number(i));
- if (f.exists())
- {
- target_file_name = file() + QLatin1Char('.') + QString::number(i + 1);
- if (!renameFile(f, target_file_name))
- return;
- }
- }
-
- f.setFileName(file());
- target_file_name = file() + QLatin1String(".1");
- if (!renameFile(f, target_file_name))
- return;
-
- openFile();
- }
-
-
-#ifndef QT_NO_DEBUG_STREAM
- QDebug RollingFileAppender::debug(QDebug &rDebug) const
- {
- QString layout_name;
- if (layout())
- layout_name = layout()->name();
- QString codec_name;
- if (encoding())
- codec_name = QLatin1String(encoding()->name());
-
- rDebug.nospace() << "RollingFileAppender("
- << "name:" << name() << " "
- << "appendfile:" << appendFile() << " "
- << "bufferedio:" << bufferedIo() << " "
- << "encoding:" << codec_name << " "
- << "file:" << file() << " "
- << "filter:" << firstFilter() << " "
- << "immediateflush:" << immediateFlush() << " "
- << "isactive:" << isActive() << " "
- << "isclosed:" << isClosed() << " "
- << "layout:" << layout_name << " "
- << "maxbackupindex:" << maxBackupIndex() << " "
- << "maximumfilesize:" << maximumFileSize() << " "
- << "referencecount:" << referenceCount() << " "
- << "threshold:" << threshold().toString() << " "
- << "writer:" << writer()
- << ")";
- return rDebug.space();
- }
-#endif // QT_NO_DEBUG_STREAM
-
-
-
- /**************************************************************************
- * Implementation: Operators, Helper
- **************************************************************************/
-
-
-} // namespace Log4Qt