Simple-logger: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(clean-up)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
h1. Simple Logger
This code shows as possibly of logging with recording to the file. Also if necessary it is possible show logging information in QPlainTextEdit
This code shows as possibly of logging with recording to the file. Also if necessary it is possible show logging information in QPlainTextEdit


Line 41: Line 37:


public slots:
public slots:
  void write(const QString &value);
  void write(const QString &value);


};
};
Line 49: Line 45:


Logger.cpp
Logger.cpp
<code>
<code>
#include "Logger.h"
#include "Logger.h"


Logger::Logger(QObject *parent, QString fileName,
Logger::Logger(QObject *parent, QString fileName, QPlainTextEdit *editor) : QObject(parent) {
QPlainTextEdit *editor) : QObject(parent) {
m_editor = editor;
 
m_editor = editor;
  m_showDate = true;
  m_showDate = true;
  if (!fileName.isEmpty()) {
  if (!fileName.isEmpty()) {
file = new QFile;
  file = new QFile;
file->setFileName(fileName);
  file->setFileName(fileName);
file->open(QIODevice::Append | QIODevice::Text);
  file->open(QIODevice::Append | QIODevice::Text);
  }
  }
}
}


void Logger::write(const QString &amp;value) {
void Logger::write(const QString &value) {
  QString text = value;// + "";
  QString text = value;// + "";
  if (m_showDate)
  if (m_showDate)
text = QDateTime::currentDateTime().toString("dd.MM.yyyy hh:mm:ss ") + text;
  text = QDateTime::currentDateTime().toString("dd.MM.yyyy hh:mm:ss ") + text;
  QTextStream out(file);
  QTextStream out(file);
  out.setCodec("UTF-8");
  out.setCodec("UTF-8");
  if (file != 0) {
  if (file != 0) {
out << text;
  out << text;
  }
  }
  if (m_editor != 0)
  if (m_editor != 0)
m_editor->appendPlainText(text);
  m_editor->appendPlainText(text);
}
}



Latest revision as of 14:52, 24 March 2016

This code shows as possibly of logging with recording to the file. Also if necessary it is possible show logging information in QPlainTextEdit

Example of using

QPlainTextEdit *editor = new QPlainTextEdit(this);
QString fileName = "c:.txt";
Logger *logger = new Logger(this, fileName, editor);
logger.write("Hello Qt");

Logger.h

#ifndef LOGGER_H
#define LOGGER_H

#include <QObject>
#include <QPlainTextEdit>
#include <QFile>
#include <QTextStream>
#include <QDateTime>

class Logger : public QObject
{
 Q_OBJECT
public:
 explicit Logger(QObject *parent, QString fileName, QPlainTextEdit *editor = 0);
 ~Logger();
 void setShowDateTime(bool value);

private:
 QFile *file;
 QPlainTextEdit *m_editor;
 bool m_showDate;

signals:

public slots:
 void write(const QString &value);

};

#endif // LOGGER_H

Logger.cpp

#include "Logger.h"

Logger::Logger(QObject *parent, QString fileName, QPlainTextEdit *editor) : QObject(parent) {
 m_editor = editor;
 m_showDate = true;
 if (!fileName.isEmpty()) {
  file = new QFile;
  file->setFileName(fileName);
  file->open(QIODevice::Append | QIODevice::Text);
 }
}

void Logger::write(const QString &value) {
 QString text = value;// + "";
 if (m_showDate)
  text = QDateTime::currentDateTime().toString("dd.MM.yyyy hh:mm:ss ") + text;
 QTextStream out(file);
 out.setCodec("UTF-8");
 if (file != 0) {
  out << text;
 }
 if (m_editor != 0)
  m_editor->appendPlainText(text);
}

void Logger::setShowDateTime(bool value) {
 m_showDate = value;
}

Logger::~Logger() {
 if (file != 0)
 file->close();
}