2 * This file is part of the PulseView project.
4 * Copyright (C) 2018 Soeren Apel <soeren@apelpie.net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "logging.hpp"
21 #include "globalsettings.hpp"
24 #include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
27 #include <libsigrokcxx/libsigrokcxx.hpp>
29 #include <QApplication>
31 using std::lock_guard;
37 const int Logging::MAX_BUFFER_SIZE = 50000;
41 qInstallMessageHandler(nullptr);
42 sr_log_callback_set_default();
44 srd_log_callback_set_default();
47 GlobalSettings::remove_change_handler(this);
52 GlobalSettings settings;
55 settings.value(GlobalSettings::Key_Log_BufferSize).toInt();
57 buffer_.reserve(buffer_size_);
59 qInstallMessageHandler(log_pv);
60 sr_log_callback_set(log_sr, nullptr);
62 srd_log_callback_set(log_srd, nullptr);
65 GlobalSettings::add_change_handler(this);
68 int Logging::get_log_level() const
70 // We assume that libsigrok and libsrd always have the same log level
71 return sr_log_loglevel_get();
74 void Logging::set_log_level(int level)
76 sr_log_loglevel_set(level);
78 srd_log_loglevel_set(level);
82 QString Logging::get_log() const
84 return buffer_.join("<br />\n");
87 void Logging::log(const QString &text, int source)
89 lock_guard<mutex> log_lock(log_mutex_);
91 if (buffer_.size() >= buffer_size_)
92 buffer_.removeFirst();
96 if (text.contains("warning", Qt::CaseInsensitive)) {
97 s = QString("<font color=\"darkorange\">%1</font>").arg(text);
101 if (text.contains("error", Qt::CaseInsensitive)) {
102 s = QString("<font color=\"darkred\">%1</font>").arg(text);
108 s = QString("pv: ") + text; // black is default color
111 s = QString("<font color=\"blue\">sr: %1</font>").arg(text);
114 s = QString("<font color=\"olive\">srd: %1</font>").arg(text);
124 // If we're tearing down the program, sending out notifications to UI
125 // elements that can no longer function properly is a bad idea
126 if (!QApplication::closingDown())
130 void Logging::log_pv(QtMsgType type, const QMessageLogContext &context, const QString &msg)
135 logging.log(msg, LogSource_pv);
138 int Logging::log_sr(void *cb_data, int loglevel, const char *format, va_list args)
143 char *text = g_strdup_vprintf(format, args);
144 logging.log(QString::fromUtf8(text), LogSource_sr);
151 int Logging::log_srd(void *cb_data, int loglevel, const char *format, va_list args)
156 char *text = g_strdup_vprintf(format, args);
157 logging.log(QString::fromUtf8(text), LogSource_srd);
164 void Logging::on_setting_changed(const QString &key, const QVariant &value)
166 if (key == GlobalSettings::Key_Log_BufferSize) {
167 // Truncate buffer if needed
168 const int delta = buffer_.size() - value.toInt();
170 buffer_.erase(buffer_.begin(), buffer_.begin() + delta);
172 buffer_size_ = value.toInt();
173 buffer_.reserve(buffer_size_);