58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
/*
|
|
Copyright (C) 2025 Rohith Namboothiri
|
|
|
|
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 3 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.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef LOGHANDLER_H
|
|
#define LOGHANDLER_H
|
|
|
|
#include <QObject>
|
|
#include <QJsonArray>
|
|
#include <functional>
|
|
|
|
class LogHandler : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit LogHandler(QObject *parent = nullptr);
|
|
|
|
Q_INVOKABLE void saveLogAsync(const QString &fileName, const QJsonArray &logData);
|
|
Q_INVOKABLE void loadLogAsync(const QString &fileName, std::function<void(QJsonArray)> callback);
|
|
|
|
Q_INVOKABLE bool saveLog(const QString &fileName, const QJsonArray &logData);
|
|
Q_INVOKABLE QJsonArray loadLog(const QString &fileName);
|
|
Q_INVOKABLE bool clearLog(const QString &fileName);
|
|
Q_INVOKABLE bool exportLogToCsv(const QString &fileName, const QJsonArray &logData);
|
|
Q_INVOKABLE QString getDSLogPath() const;
|
|
Q_INVOKABLE QString getFriendlyPath(const QString &path) const;
|
|
Q_INVOKABLE bool exportLogToAdif(const QString &fileName, const QJsonArray &logData);
|
|
Q_INVOKABLE void shareFile();
|
|
|
|
signals:
|
|
// Emitted on the UI thread when an async save/clear completes.
|
|
void logSaved(const QString &fileName);
|
|
void logCleared(const QString &fileName);
|
|
|
|
private:
|
|
QString getFilePath(const QString &fileName) const;
|
|
QString lastSavedFilePath;
|
|
};
|
|
|
|
#ifdef Q_OS_IOS
|
|
extern void shareFileOnIOS(const QString &filePath); // Declare the iOS-specific function
|
|
#endif
|
|
|
|
#endif // LOGHANDLER_H
|