0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 00:31:02 +08:00
easy_profiler/profiler_gui/main_window.h

202 lines
6.4 KiB
C
Raw Normal View History

2016-06-30 21:39:04 +03:00
/************************************************************************
* file name : main_window.h
* ----------------- :
* creation time : 2016/06/26
* author : Victor Zarubkin
* email : v.s.zarubkin@gmail.com
* ----------------- :
* description : The file contains declaration of MainWindow for easy_profiler GUI.
* ----------------- :
* change log : * 2016/06/26 Victor Zarubkin: initial commit.
* : *
* ----------------- :
2016-09-06 21:49:32 +03:00
* license : Lightweight profiler library for c++
* : Copyright(C) 2016 Sergey Yagovtsev, Victor Zarubkin
* :
* : 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 <http://www.gnu.org/licenses/>.
************************************************************************/
#ifndef EASY_PROFILER_GUI__MAIN_WINDOW__H
#define EASY_PROFILER_GUI__MAIN_WINDOW__H
#include <string>
#include <thread>
#include <atomic>
2016-09-18 20:20:37 +03:00
#include <sstream>
#include <QMainWindow>
#include <QTimer>
2016-09-11 18:23:47 +03:00
#include <QTcpSocket>
2016-09-18 20:20:37 +03:00
2016-09-16 02:11:11 +03:00
#include "profiler/easy_socket.h"
2016-09-18 20:20:37 +03:00
#include "profiler/reader.h"
#ifdef max
2016-09-16 02:11:11 +03:00
#undef max
2016-09-18 20:20:37 +03:00
#endif
#ifdef min
2016-09-16 02:11:11 +03:00
#undef min
2016-09-18 20:20:37 +03:00
#endif
//////////////////////////////////////////////////////////////////////////
#define EASY_GUI_USE_DESCRIPTORS_DOCK_WINDOW 0
class QDockWidget;
//////////////////////////////////////////////////////////////////////////
class EasyFileReader Q_DECL_FINAL
{
::profiler::SerializedData m_serializedBlocks; ///<
::profiler::SerializedData m_serializedDescriptors; ///<
::profiler::descriptors_list_t m_descriptors; ///<
::profiler::blocks_t m_blocks; ///<
::profiler::thread_blocks_tree_t m_blocksTree; ///<
QString m_filename; ///<
::std::thread m_thread; ///<
::std::atomic_bool m_bDone; ///<
::std::atomic<int> m_progress; ///<
::std::atomic<unsigned int> m_size; ///<
public:
EasyFileReader();
~EasyFileReader();
bool done() const;
int progress() const;
unsigned int size() const;
const QString& filename() const;
void load(const QString& _filename);
void interrupt();
void get(::profiler::SerializedData& _serializedBlocks, ::profiler::SerializedData& _serializedDescriptors,
::profiler::descriptors_list_t& _descriptors, ::profiler::blocks_t& _blocks, ::profiler::thread_blocks_tree_t& _tree,
QString& _filename);
}; // END of class EasyFileReader.
//////////////////////////////////////////////////////////////////////////
class EasyMainWindow : public QMainWindow
{
Q_OBJECT
protected:
typedef EasyMainWindow This;
typedef QMainWindow Parent;
QString m_lastFile;
2016-09-18 20:20:37 +03:00
QDockWidget* m_treeWidget = nullptr;
QDockWidget* m_graphicsView = nullptr;
class QProgressDialog* m_downloadingProgress = nullptr;
#if EASY_GUI_USE_DESCRIPTORS_DOCK_WINDOW != 0
2016-09-18 20:20:37 +03:00
QDockWidget* m_descTreeWidget = nullptr;
#endif
2016-09-18 20:20:37 +03:00
class QProgressDialog* m_progress = nullptr;
class QAction* m_editBlocksAction = nullptr;
class QDialog* m_descTreeDialog = nullptr;
class EasyDescWidget* m_dialogDescTree = nullptr;
QTimer m_readerTimer;
2016-09-18 20:20:37 +03:00
QTimer m_downloadedTimer;
::profiler::SerializedData m_serializedBlocks;
::profiler::SerializedData m_serializedDescriptors;
EasyFileReader m_reader;
2016-09-12 21:28:15 +03:00
QTcpSocket* m_server = nullptr;
2016-09-14 22:04:15 +03:00
2016-09-08 21:03:05 +03:00
std::stringstream m_receivedProfileData;
bool m_recFrames = false;
2016-09-13 21:42:38 +03:00
2016-09-18 20:20:37 +03:00
class QLineEdit* m_ipEdit = nullptr;
class QLineEdit* m_portEdit = nullptr;
2016-09-13 21:42:38 +03:00
bool m_isConnected = false;
2016-09-14 22:04:15 +03:00
std::thread m_thread;
2016-09-16 02:11:11 +03:00
EasySocket m_easySocket;
2016-09-18 20:20:37 +03:00
bool m_downloading = false;
::std::atomic<int> m_downloadedBytes;
class QAction* m_captureAction = nullptr;
class QAction* m_connectAction = nullptr;
public:
explicit EasyMainWindow();
virtual ~EasyMainWindow();
2016-08-04 23:46:04 +03:00
// Public virtual methods
void closeEvent(QCloseEvent* close_event) override;
2016-09-14 22:04:15 +03:00
void listen();
protected slots:
void onOpenFileClicked(bool);
void onReloadFileClicked(bool);
void onDeleteClicked(bool);
void onExitClicked(bool);
void onEncodingChanged(bool);
void onChronoTextPosChanged(bool);
void onEventIndicatorsChange(bool);
void onEnableDisableStatistics(bool);
void onDrawBordersChanged(bool);
void onCollapseItemsAfterCloseChanged(bool);
void onAllItemsExpandedByDefaultChange(bool);
void onBindExpandStatusChange(bool);
void onExpandAllClicked(bool);
void onCollapseAllClicked(bool);
void onFileReaderTimeout();
2016-09-16 02:11:11 +03:00
void onDownloadTimeout();
void onFileReaderCancel();
void onEditBlocksClicked(bool);
void onDescTreeDialogClose(int);
2016-09-08 21:03:05 +03:00
void onCaptureClicked(bool);
2016-09-08 21:03:05 +03:00
void readTcpData();
void onNewConnection();
2016-09-08 23:15:01 +03:00
void onDisconnection();
2016-09-13 21:42:38 +03:00
void onConnected();
void onErrorConnection(QAbstractSocket::SocketError socketError);
void onDisconnect();
void onConnectClicked(bool);
2016-09-14 22:04:15 +03:00
void handleResults(const QString &s);
2016-06-30 21:39:04 +03:00
private:
2016-08-04 23:46:04 +03:00
// Private non-virtual methods
void loadFile(const QString& filename);
2016-08-07 19:35:58 +03:00
void loadSettings();
void loadGeometry();
2016-09-06 22:23:55 +03:00
void saveSettingsAndGeometry();
2016-06-30 21:39:04 +03:00
2016-09-08 21:03:05 +03:00
bool m_isClientPreparedBlocks = false;
bool m_isClientCaptured = false;
}; // END of class EasyMainWindow.
//////////////////////////////////////////////////////////////////////////
#endif // EASY_PROFILER_GUI__MAIN_WINDOW__H