/************************************************************************ * file name : main_window.cpp * ----------------- : * creation time : 2016/06/26 * copyright : (c) 2016 Victor Zarubkin * author : Victor Zarubkin * email : v.s.zarubkin@gmail.com * ----------------- : * description : The file contains implementation of MainWindow for easy_profiler GUI. * ----------------- : * change log : * 2016/06/26 Victor Zarubkin: Initial commit. * : * : * 2016/06/27 Victor Zarubkin: Passing blocks number to ProfTreeWidget::setTree(). * : * : * 2016/06/29 Victor Zarubkin: Added menu with tests. * : * : * 2016/06/30 Sergey Yagovtsev: Open file by command line argument * : * : * * ----------------- : * license : TODO: add license text ************************************************************************/ #include #include #include #include #include #include #include #include #include #include "main_window.h" #include "blocks_tree_widget.h" #include "blocks_graphics_view.h" ////////////////////////////////////////////////////////////////////////// ProfMainWindow::ProfMainWindow() : QMainWindow(), m_treeWidget(nullptr), m_graphicsView(nullptr) { setObjectName("ProfilerGUI_MainWindow"); setWindowTitle("easy_profiler reader"); setDockNestingEnabled(true); resize(800, 600); setStatusBar(new QStatusBar()); auto graphicsView = new ProfGraphicsViewWidget(false); m_graphicsView = new QDockWidget("Blocks diagram"); m_graphicsView->setMinimumHeight(50); m_graphicsView->setAllowedAreas(Qt::AllDockWidgetAreas); m_graphicsView->setWidget(graphicsView); auto treeWidget = new ProfTreeWidget(); m_treeWidget = new QDockWidget("Blocks hierarchy"); m_treeWidget->setMinimumHeight(50); m_treeWidget->setAllowedAreas(Qt::AllDockWidgetAreas); m_treeWidget->setWidget(treeWidget); addDockWidget(Qt::TopDockWidgetArea, m_graphicsView); addDockWidget(Qt::BottomDockWidgetArea, m_treeWidget); auto actionOpen = new QAction("Open", nullptr); connect(actionOpen, &QAction::triggered, this, &This::onOpenFileClicked); auto actionReload = new QAction("Reload", nullptr); connect(actionReload, &QAction::triggered, this, &This::onReloadFileClicked); auto actionExit = new QAction("Exit", nullptr); connect(actionExit, &QAction::triggered, this, &This::onExitClicked); auto actionTestView = new QAction("Test viewport", nullptr); connect(actionTestView, &QAction::triggered, this, &This::onTestViewportClicked); auto menu = new QMenu("File"); menu->addAction(actionOpen); menu->addAction(actionReload); menu->addSeparator(); menu->addAction(actionExit); menuBar()->addMenu(menu); menu = new QMenu("Tests"); menu->addAction(actionTestView); menuBar()->addMenu(menu); connect(graphicsView->view(), &ProfGraphicsView::intervalChanged, treeWidget, &ProfTreeWidget::setTreeBlocks); loadSettings(); if(QCoreApplication::arguments().size() > 1) { auto opened_filename = QCoreApplication::arguments().at(1).toStdString(); loadFile(opened_filename); } } ProfMainWindow::~ProfMainWindow() { } ////////////////////////////////////////////////////////////////////////// void ProfMainWindow::onOpenFileClicked(bool) { auto filename = QFileDialog::getOpenFileName(this, "Open profiler log", m_lastFile.c_str(), "Profiler Log File (*.prof);;All Files (*.*)"); loadFile(filename.toStdString()); } ////////////////////////////////////////////////////////////////////////// void ProfMainWindow::loadFile(const std::string& stdfilename) { ::profiler::thread_blocks_tree_t prof_blocks; auto nblocks = fillTreesFromFile(stdfilename.c_str(), prof_blocks, true); if (nblocks != 0) { static_cast(m_treeWidget->widget())->clearSilent(true); m_lastFile = stdfilename; ::profiler_gui::EASY_GLOBALS.selected_thread = 0; ::profiler_gui::EASY_GLOBALS.profiler_blocks.swap(prof_blocks); ::profiler_gui::EASY_GLOBALS.gui_blocks.resize(nblocks); memset(::profiler_gui::EASY_GLOBALS.gui_blocks.data(), 0, sizeof(::profiler_gui::ProfBlock) * nblocks); static_cast(m_graphicsView->widget())->view()->setTree(::profiler_gui::EASY_GLOBALS.profiler_blocks); } } ////////////////////////////////////////////////////////////////////////// void ProfMainWindow::onReloadFileClicked(bool) { if (m_lastFile.empty()) { return; } ::profiler::thread_blocks_tree_t prof_blocks; auto nblocks = fillTreesFromFile(m_lastFile.c_str(), prof_blocks, true); if (nblocks != 0) { static_cast(m_treeWidget->widget())->clearSilent(true); ::profiler_gui::EASY_GLOBALS.selected_thread = 0; ::profiler_gui::EASY_GLOBALS.profiler_blocks.swap(prof_blocks); ::profiler_gui::EASY_GLOBALS.gui_blocks.resize(nblocks); memset(::profiler_gui::EASY_GLOBALS.gui_blocks.data(), 0, sizeof(::profiler_gui::ProfBlock) * nblocks); static_cast(m_graphicsView->widget())->view()->setTree(::profiler_gui::EASY_GLOBALS.profiler_blocks); } } ////////////////////////////////////////////////////////////////////////// void ProfMainWindow::onExitClicked(bool) { close(); } ////////////////////////////////////////////////////////////////////////// void ProfMainWindow::onTestViewportClicked(bool) { static_cast(m_treeWidget->widget())->clearSilent(true); auto view = static_cast(m_graphicsView->widget())->view(); view->clearSilent(); ::profiler_gui::EASY_GLOBALS.gui_blocks.clear(); ::profiler_gui::EASY_GLOBALS.profiler_blocks.clear(); ::profiler_gui::EASY_GLOBALS.selected_thread = 0; view->test(18000, 40000000, 2); //view->test(3, 300, 1); } ////////////////////////////////////////////////////////////////////////// void ProfMainWindow::closeEvent(QCloseEvent* close_event) { saveSettings(); QMainWindow::closeEvent(close_event); } ////////////////////////////////////////////////////////////////////////// void ProfMainWindow::loadSettings() { QSettings settings(::profiler_gui::ORGANAZATION_NAME, ::profiler_gui::APPLICATION_NAME); settings.beginGroup("main"); auto geometry = settings.value("geometry").toByteArray(); if (!geometry.isEmpty()) { restoreGeometry(geometry); } auto last_file = settings.value("last_file"); if (!last_file.isNull()) { m_lastFile = last_file.toString().toStdString(); } settings.endGroup(); } void ProfMainWindow::saveSettings() { QSettings settings(::profiler_gui::ORGANAZATION_NAME, ::profiler_gui::APPLICATION_NAME); settings.beginGroup("main"); settings.setValue("geometry", this->saveGeometry()); settings.setValue("last_file", m_lastFile.c_str()); settings.endGroup(); } //////////////////////////////////////////////////////////////////////////