GlobalSettings: Use auto-detected language immediately
[pulseview.git] / pv / logging.hpp
blob28f2107437ec966cd2e6545dca9ade9aea469d5c
1 /*
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 #ifndef PULSEVIEW_PV_LOGGING_HPP
21 #define PULSEVIEW_PV_LOGGING_HPP
23 #include "globalsettings.hpp"
25 #include <mutex>
27 #include <QtGlobal>
28 #include <QObject>
29 #include <QString>
30 #include <QStringList>
32 using std::mutex;
34 namespace pv {
36 class Logging : public QObject, public GlobalSettingsInterface
38 Q_OBJECT
40 public:
41 enum LogSource {
42 LogSource_pv,
43 LogSource_sr,
44 LogSource_srd
47 static const int MIN_BUFFER_SIZE;
48 static const int MAX_BUFFER_SIZE;
50 public:
51 ~Logging();
52 void init();
54 int get_log_level() const;
55 void set_log_level(int level);
57 QString get_log() const;
59 void log(const QString &text, int source);
61 static void log_pv(QtMsgType type, const QMessageLogContext &context, const QString &msg);
63 static int log_sr(void *cb_data, int loglevel, const char *format, va_list args);
65 #ifdef ENABLE_DECODE
66 static int log_srd(void *cb_data, int loglevel, const char *format, va_list args);
67 #endif
69 private:
70 void on_setting_changed(const QString &key, const QVariant &value);
72 Q_SIGNALS:
73 void logged_text(QString s);
75 private:
76 int buffer_size_;
77 QStringList buffer_;
78 mutable mutex log_mutex_;
81 extern Logging logging;
83 } // namespace pv
85 #endif // PULSEVIEW_PV_LOGGING_HPP