Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
workspace_state.h
Go to the documentation of this file.
1
14
15#ifndef WORKSPACE_STATE_H
16#define WORKSPACE_STATE_H
17
18#include "config.h"
19
20#include <QObject>
21#include <QStringList>
22#include <QFileInfo>
23#include <QList>
24#include <functional>
25
33 QString filename;
34 qint64 size = 0;
35 bool accessible = false;
36};
37
38
51class WorkspaceState : public QObject
52{
53 Q_OBJECT
54
55public:
61 static WorkspaceState *instance();
62
66 virtual ~WorkspaceState();
67
71 WorkspaceState(const WorkspaceState &) = delete;
72
77
87 bool loadCommonState(QString *errorPath = nullptr, int *errorCode = nullptr);
88
94 QString recentCommonFilePath() const;
95
101 QString recentProfileFilePath() const;
102
121 QString personalThemesPath() const;
122
128 const QList<RecentFileInfo> &recentCaptureFiles() const;
129
137 QStringList recentCaptureFilenames() const;
138
144 void addRecentCaptureFile(const QString &filePath);
145
151 void removeRecentCaptureFile(const QString &filePath);
152
157
167 static bool isDevelopmentBuild();
168
177 static bool isPortableApplication();
178
179signals:
184
190 void recentFileStatusChanged(const QString &filename);
191
196
201
202protected:
207 explicit WorkspaceState(QObject *parent = nullptr);
208
209private slots:
216 void onFileStatusChecked(const QString &filename, qint64 size, bool accessible);
217
218private:
226 bool parseRecentFile(const QString &filePath,
227 std::function<void(const QString &key, const QString &value)> handler);
228
234 void queueFileStatusCheck(const QString &filename);
235
236 QList<RecentFileInfo> recent_capture_files_;
237
238 static constexpr const char *RECENT_COMMON_FILE_NAME = "recent_common";
239 static constexpr const char *RECENT_PROFILE_FILE_NAME = "recent";
240 static constexpr const char *KEY_CAPTURE_FILE = "recent.capture_file";
241 static constexpr const char *THEMES_DIR_NAME = "themes";
242};
243
244#endif // WORKSPACE_STATE_H
QString personalThemesPath() const
Get the path to the personal themes directory.
Definition workspace_state.cpp:75
bool loadCommonState(QString *errorPath=nullptr, int *errorCode=nullptr)
Load state from the recent_common file.
Definition workspace_state.cpp:133
WorkspaceState & operator=(const WorkspaceState &)=delete
Deleted assignment operator to enforce the singleton pattern.
QStringList recentCaptureFilenames() const
Get just the filenames of recent capture files.
Definition workspace_state.cpp:189
void recentCaptureFilesChanged()
Emitted when the recent capture files list changes.
QString recentProfileFilePath() const
Get the path to the profile-specific recent file.
Definition workspace_state.cpp:60
WorkspaceState(const WorkspaceState &)=delete
Deleted copy constructor to enforce the singleton pattern.
void addRecentCaptureFile(const QString &filePath)
Add a capture file to the recent files list.
Definition workspace_state.cpp:199
QString recentCommonFilePath() const
Get the path to the recent_common file.
Definition workspace_state.cpp:45
void stateLoaded()
Emitted when state is loaded from disk.
static WorkspaceState * instance()
Returns the singleton instance.
Definition workspace_state.cpp:38
void recentFileStatusChanged(const QString &filename)
Emitted when a file's status (size/accessibility) is updated.
const QList< RecentFileInfo > & recentCaptureFiles() const
Get the list of recently opened capture files.
Definition workspace_state.cpp:184
static bool isDevelopmentBuild()
Check if this is a development build.
Definition workspace_state.cpp:304
static bool isPortableApplication()
Check if the application is running in portable mode. (Windows only).
Definition workspace_state.cpp:312
void clearRecentCaptureFiles()
Clear all recent capture files.
Definition workspace_state.cpp:259
void stateSaved()
Emitted when state is saved to disk.
virtual ~WorkspaceState()
Destroys the singleton and releases all owned resources.
Definition workspace_state.cpp:34
void removeRecentCaptureFile(const QString &filePath)
Remove a capture file from the recent files list.
Definition workspace_state.cpp:241
Information about a recent capture file.
Definition workspace_state.h:32
bool accessible
Definition workspace_state.h:35
QString filename
Definition workspace_state.h:33
qint64 size
Definition workspace_state.h:34