/* * Copyright (C) by Klaas Freitag * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. */ #include "logger.h" #include "config.h" #include #include #include #include #include namespace OCC { static void mirallLogCatcher(QtMsgType type, const QMessageLogContext &ctx, const QString &message) { auto logger = Logger::instance(); if (!logger->isNoop()) { logger->doLog(qFormatLogMessage(type, ctx, message)); } } Logger *Logger::instance() { static Logger log; return &log; } Logger::Logger(QObject *parent) : QObject(parent) , _showTime(true) , _logWindowActivated(false) , _doFileFlush(false) , _logExpire(0) , _logDebug(false) { qSetMessagePattern("[%{function} \t%{message}"); #ifndef NO_MSG_HANDLER qInstallMessageHandler(mirallLogCatcher); #else Q_UNUSED(mirallLogCatcher) #endif } Logger::~Logger() { #ifndef NO_MSG_HANDLER qInstallMessageHandler(0); #endif } void Logger::postGuiLog(const QString &title, const QString &message) { emit guiLog(title, message); } void Logger::postOptionalGuiLog(const QString &title, const QString &message) { emit optionalGuiLog(title, message); } void Logger::postGuiMessage(const QString &title, const QString &message) { emit guiMessage(title, message); } void Logger::log(Log log) { QString msg; if (_showTime) { msg = log.timeStamp.toString(QLatin1String("MM-dd hh:mm:ss:zzz")) + QLatin1Char(' '); } msg += QString().sprintf("%p ", (void *)QThread::currentThread()); msg += log.message; // _logs.append(log); // std::cout << qPrintable(log.message) << std::endl; doLog(msg); } /** * Returns true if doLog does nothing and need not to be called */ bool Logger::isNoop() const { QMutexLocker lock(&_mutex); return !_logstream && !_logWindowActivated; } bool Logger::isLoggingToFile() const { QMutexLocker lock(&_mutex); return _logstream; } void Logger::doLog(const QString &msg) { { QMutexLocker lock(&_mutex); if (_logstream) { (*_logstream) << msg << endl; if (_doFileFlush) _logstream->flush(); } } emit logWindowLog(msg); } void Logger::mirallLog(const QString &message) { Log log_; log_.timeStamp = QDateTime::currentDateTimeUtc(); log_.message = message; Logger::instance()->log(log_); } void Logger::setLogWindowActivated(bool activated) { QMutexLocker locker(&_mutex); _logWindowActivated = activated; } void Logger::setLogFile(const QString &name) { QMutexLocker locker(&_mutex); if (_logstream) { _logstream.reset(nullptr); _logFile.close(); } if (name.isEmpty()) { return; } bool openSucceeded = false; if (name == QLatin1String("-")) { openSucceeded = _logFile.open(1, QIODevice::WriteOnly); } else { _logFile.setFileName(name); openSucceeded = _logFile.open(QIODevice::WriteOnly); } if (!openSucceeded) { locker.unlock(); // Just in case postGuiMessage has a qDebug() postGuiMessage(tr("Error"), QString(tr("File '%1'
cannot be opened for writing.

" "The log output can not be saved!
")) .arg(name)); return; } _logstream.reset(new QTextStream(&_logFile)); } void Logger::setLogExpire(int expire) { _logExpire = expire; } void Logger::setLogDir(const QString &dir) { _logDirectory = dir; } void Logger::setLogFlush(bool flush) { _doFileFlush = flush; } void Logger::setLogDebug(bool debug) { QLoggingCategory::setFilterRules(debug ? QStringLiteral("sync.*.debug=true\ngui.*.debug=true") : QString()); _logDebug = debug; } QString Logger::temporaryFolderLogDirPath() const { QString dirName = APPLICATION_SHORTNAME + QString("-logdir"); return QDir::temp().filePath(dirName); } void Logger::setupTemporaryFolderLogDir() { auto dir = temporaryFolderLogDirPath(); if (!QDir().mkpath(dir)) return; setLogDebug(true); setLogExpire(4 /*hours*/); setLogDir(dir); _temporaryFolderLogDir = true; } void Logger::disableTemporaryFolderLogDir() { if (!_temporaryFolderLogDir) return; enterNextLogFile(); setLogDir(QString()); setLogDebug(false); setLogFile(QString()); _temporaryFolderLogDir = false; } static bool compressLog(const QString &originalName, const QString &targetName) { QFile original(originalName); if (!original.open(QIODevice::ReadOnly)) return false; auto compressed = gzopen(targetName.toUtf8(), "wb"); if (!compressed) { return false; } while (!original.atEnd()) { auto data = original.read(1024 * 1024); auto written = gzwrite(compressed, data.data(), data.size()); if (written != data.size()) { gzclose(compressed); return false; } } gzclose(compressed); return true; } void Logger::enterNextLogFile() { if (!_logDirectory.isEmpty()) { QDir dir(_logDirectory); if (!dir.exists()) { dir.mkpath("."); } // Tentative new log name, will be adjusted if one like this already exists QDateTime now = QDateTime::currentDateTime(); QString newLogName = now.toString("yyyyMMdd_HHmm") + "_owncloud.log"; // Expire old log files and deal with conflicts QStringList files = dir.entryList(QStringList("*owncloud.log.*"), QDir::Files); QRegExp rx(R"(.*owncloud\.log\.(\d+).*)"); int maxNumber = -1; foreach (const QString &s, files) { if (_logExpire > 0) { QFileInfo fileInfo(dir.absoluteFilePath(s)); if (fileInfo.lastModified().addSecs(60 * 60 * _logExpire) < now) { dir.remove(s); } } if (s.startsWith(newLogName) && rx.exactMatch(s)) { maxNumber = qMax(maxNumber, rx.cap(1).toInt()); } } newLogName.append("." + QString::number(maxNumber + 1)); auto previousLog = _logFile.fileName(); setLogFile(dir.filePath(newLogName)); if (!previousLog.isEmpty()) { QString compressedName = previousLog + ".gz"; if (compressLog(previousLog, compressedName)) { QFile::remove(previousLog); } else { QFile::remove(compressedName); } } } } } // namespace OCC