summaryrefslogtreecommitdiff
path: root/ext/Log4Qt/src/databaselayout.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/databaselayout.cpp
parent630cc2e3097f2236a4c1191be6c955ec523d6f1a (diff)
Replaced ext/Log4Qt source with submodule
Diffstat (limited to 'ext/Log4Qt/src/databaselayout.cpp')
-rwxr-xr-xext/Log4Qt/src/databaselayout.cpp218
1 files changed, 0 insertions, 218 deletions
diff --git a/ext/Log4Qt/src/databaselayout.cpp b/ext/Log4Qt/src/databaselayout.cpp
deleted file mode 100755
index 06cdb34..0000000
--- a/ext/Log4Qt/src/databaselayout.cpp
+++ /dev/null
@@ -1,218 +0,0 @@
-/******************************************************************************
- *
- * package: Log4Qt
- * file: databaselayout.cpp
- * created: March 2010
- * author: Michael Filonenko
- *
- *
- * Copyright 2010 Michael Filonenko
- *
- * 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 "databaselayout.h"
-
-#include <QtCore/QDebug>
-
-#include <QtSql/QSqlField>
-#include "loggingevent.h"
-
-#include "helpers/datetime.h"
-
-
-namespace Log4Qt
-{
-
-
- /**************************************************************************
- * Declarations
- **************************************************************************/
-
-
-
- /**************************************************************************
- * C helper functions
- **************************************************************************/
-
-
-
- /**************************************************************************
- * Class implementation: DatabaseLayout
- **************************************************************************/
-
- QSqlRecord DatabaseLayout::formatRecord(const LoggingEvent &rEvent)
- {
- QSqlField field;
- QSqlRecord record;
-
- if (!mTimeStamp.isEmpty()) {
- field.setName(mTimeStamp);
- field.setType(QVariant::DateTime);
- field.setGenerated(true);
- field.setValue(DateTime::fromMilliSeconds(rEvent.timeStamp()));
- record.append(field);
- }
-
- if (!mLoggerName.isEmpty()) {
- field.setName(mLoggerName);
- field.setType(QVariant::String);
- field.setGenerated(true);
- field.setValue(rEvent.loggerName());
- record.append(field);
- }
-
- if (!mThreadName.isEmpty()) {
- field.setName(mThreadName);
- field.setType(QVariant::String);
- field.setGenerated(true);
- field.setValue(rEvent.threadName());
- record.append(field);
- }
-
- if (!mLevel.isEmpty()) {
- field.setName(mLevel);
- field.setType(QVariant::String);
- field.setGenerated(true);
- field.setValue(rEvent.level().toString());
- record.append(field);
- }
-
- if (!mMessage.isEmpty()) {
- field.setName(mMessage);
- field.setType(QVariant::String);
- field.setGenerated(true);
- field.setValue(rEvent.message());
- record.append(field);
- }
- return record;
- }
-
-
- QString DatabaseLayout::format(const LoggingEvent &rEvent)
- {
- QString result;
-
- if (!mTimeStamp.isEmpty()) {
- result.append(mTimeStamp);
- result.append(":");
- result.append(DateTime::fromMilliSeconds(rEvent.timeStamp()).toString("dd.MM.yyyy hh:mm"));
- }
-
- if (!mThreadName.isEmpty()) {
- result.append(mThreadName);
- result.append(":");
- result.append(mThreadName);
- result.append("; ");
- }
-
- if (!mLevel.isEmpty()) {
- result.append(mLevel);
- result.append(":");
- result.append(mLevel);
- result.append("; ");
- }
-
- if (!mLoggerName.isEmpty()) {
- result.append(mLoggerName);
- result.append(":");
- result.append(mLoggerName);
- result.append("; ");
- }
-
- if (!mMessage.isEmpty()) {
- result.append(mMessage);
- result.append(":");
- result.append(mMessage);
- result.append("; ");
- }
- return result;
- }
-
- QString DatabaseLayout::timeStampColumn() const
- {
- return mTimeStamp;
- }
- QString DatabaseLayout::loggerNameColumn() const
- {
- return mLoggerName;
- }
- QString DatabaseLayout::threadNameColumn() const
- {
- return mThreadName;
- }
-
- QString DatabaseLayout::levelColumn() const
- {
- return mLevel;
- }
-
- QString DatabaseLayout::messageColumn() const
- {
- return mMessage;
- }
-
-
- void DatabaseLayout::setTimeStampColumn(const QString& columnName)
- {
- mTimeStamp = columnName;
- }
-
- void DatabaseLayout::setLoggerNameColumn(const QString& columnName)
- {
- mLoggerName = columnName;
- }
-
- void DatabaseLayout::setThreadNameColumn(const QString& columnName)
- {
- mThreadName = columnName;
- }
-
- void DatabaseLayout::setLevelColumn(const QString& columnName)
- {
- mLevel = columnName;
- }
-
- void DatabaseLayout::setMessageColumn(const QString& columnName)
- {
- mMessage = columnName;
- }
-
-
-#ifndef QT_NO_DEBUG_STREAM
- QDebug DatabaseLayout::debug(QDebug &rDebug) const
- {
- rDebug.nospace() << "DatabaseLayout("
- << "name:" << name() << " "
- << "referencecount:" << referenceCount()
- << ")";
- return rDebug.space();
- }
-#endif // QT_NO_DEBUG_STREAM
-
-
-
- /**************************************************************************
- * Implementation: Operators, Helper
- **************************************************************************/
-
-
-} // namespace Log4Qt