summaryrefslogtreecommitdiff
path: root/ext/Log4Qt/src/databaselayout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Log4Qt/src/databaselayout.cpp')
-rwxr-xr-xext/Log4Qt/src/databaselayout.cpp218
1 files changed, 218 insertions, 0 deletions
diff --git a/ext/Log4Qt/src/databaselayout.cpp b/ext/Log4Qt/src/databaselayout.cpp
new file mode 100755
index 0000000..06cdb34
--- /dev/null
+++ b/ext/Log4Qt/src/databaselayout.cpp
@@ -0,0 +1,218 @@
+/******************************************************************************
+ *
+ * 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