1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
|
/* Copyright (c) 2020, Dyssol Development Team.
* Copyright (c) 2023, DyssolTEC GmbH.
* All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */
#include "Dyssol.h"
#include "StatusWindow.h"
#include "AboutWindow.h"
#include "ScriptExporter.h"
#include "FileSystem.h"
#include "DyssolStringConstants.h"
#include "DyssolSystemFunctions.h"
#include "ThreadPool.h"
#include <QDesktopWidget>
#include <QCloseEvent>
#include <QFileDialog>
#include <QDesktopServices>
#include <fstream>
#include <QWhatsThis>
//////////////////////////////////////////////////////////////////////////
/// Dyssol
//////////////////////////////////////////////////////////////////////////
Dyssol::Dyssol(QWidget *parent /*= 0*/, Qt::WindowFlags flags /*= {}*/)
: QMainWindow(parent, flags)
{
ui.setupUi(this);
resize(QDesktopWidget().availableGeometry(this).size() * 0.7);
SetFlowsheetModified(false);
InitializeThreadPool();
// setup flowsheet and simulator
m_Simulator.SetFlowsheet(&m_Flowsheet);
// setup config file
QString settingsPath{};
const auto systemSettingsPath = QFileInfo{ QSettings{ QSettings::IniFormat, QSettings::SystemScope, StrConst::Dyssol_ApplicationName, StrConst::Dyssol_ConfigApp }.fileName() }.absolutePath();
const auto userSettingsPath = QFileInfo{ QSettings{ QSettings::IniFormat, QSettings::UserScope , StrConst::Dyssol_ApplicationName, StrConst::Dyssol_ConfigApp }.fileName() }.absolutePath();
if (std::filesystem::exists(systemSettingsPath.toStdString()) && !FileSystem::IsWriteProtected(systemSettingsPath.toStdWString()))
settingsPath = systemSettingsPath;
else
settingsPath = userSettingsPath;
// create directory for temporary data if it doesn't exist
if (!std::filesystem::exists(settingsPath.toStdString()))
std::filesystem::create_directories(settingsPath.toStdString());
const QString globalConfigFile = settingsPath + "/" + StrConst::Dyssol_ConfigFileName;
const QString localConfigFile = QString{ "./" } + StrConst::Dyssol_ConfigFileName;
#ifdef _MSC_VER
const QString currConfigFile = QFile::exists(globalConfigFile) || (!QFile::exists(globalConfigFile) && !FileSystem::IsWriteProtected(FileSystem::FilePath(settingsPath.toStdWString()))) ?
globalConfigFile : localConfigFile;
#else
const QString currConfigFile = QFile::exists(localConfigFile) ? localConfigFile : globalConfigFile;
std::cout << "Use config file: " << currConfigFile.toStdString()<< std::endl;
// If the config file not exist at all, we will copy the template of config file into the currConfigFile
// It is needed mostly for packages
if (currConfigFile == globalConfigFile && !QFile::exists(currConfigFile))
{
std::cout << "Config file: " << currConfigFile.toStdString()<< "does not exist. It will be copied from "<< INSTALL_CONFIG_PATH << StrConst::Dyssol_ConfigFileName << std::endl;
if (!std::filesystem::exists(INSTALL_CONFIG_PATH))
std::filesystem::create_directories(INSTALL_CONFIG_PATH);
std::filesystem::copy_file(std::filesystem::path{ INSTALL_CONFIG_PATH } / StrConst::Dyssol_ConfigFileName, currConfigFile.toStdString());
}
#endif
// create config file
m_pSettings = new QSettings(currConfigFile, QSettings::IniFormat, this);
// configure cache parameters
SetupCache();
// create help class for showing help files in main window
m_helpHelper = new CMainWindowHelpHelper{ this };
// create dialogs and windows
m_pModelsManagerTab = new CModulesManagerTab(this);
m_pCalcSequenceEditor = new CCalculationSequenceEditor(&m_Flowsheet, this);
m_pMaterialsDatabaseTab = new CMaterialsDatabaseTab(&m_MaterialsDatabase, this);
m_pCompoundsManager = new CCompoundsManager(&m_Flowsheet, &m_MaterialsDatabase, this);
m_pFlowsheetEditor = new CFlowsheetEditor(&m_Flowsheet, &m_MaterialsDatabase, this);
m_pGridEditor = new CGridEditor(&m_Flowsheet, m_MaterialsDatabase, this);
m_pHoldupsEditor = new CHoldupsEditor(&m_Flowsheet, &m_MaterialsDatabase, this);
m_pOptionsEditor = new COptionsEditor(&m_Flowsheet, &m_MaterialsDatabase, this);
m_pPhasesEditor = new CPhasesEditor(&m_Flowsheet, this);
m_pSimulatorTab = new CSimulatorTab(&m_Flowsheet, &m_Simulator, this);
m_pStreamsViewer = new CStreamsViewer(&m_Flowsheet, &m_MaterialsDatabase, this);
m_pUnitsViewer = new CUnitsViewer(&m_Flowsheet, &m_MaterialsDatabase, this);
m_pTearStreamsEditor = new CTearStreamsEditor(&m_Flowsheet, &m_MaterialsDatabase, this);
m_pDustTesterTab = new CDustFormationTesterTab(&m_Flowsheet, &m_MaterialsDatabase, this);
m_pSettingsEditor = new CSettingsEditor(this);
// gather pointers to all dialogs
m_dialogs = { m_pCalcSequenceEditor, m_pMaterialsDatabaseTab, m_pCompoundsManager, m_pFlowsheetEditor,
m_pGridEditor, m_pHoldupsEditor, m_pModelsManagerTab, m_pOptionsEditor, m_pPhasesEditor,
m_pSimulatorTab, m_pStreamsViewer, m_pUnitsViewer, m_pTearStreamsEditor, m_pDustTesterTab,
m_pSettingsEditor, m_helpHelper };
for (auto* d : m_dialogs)
d->SetPointers(&m_Flowsheet, &m_ModelsManager, m_pSettings);
// setup main window: add tabs to mainTabWidget
int tab = ui.mainTabWidget->addTab(m_pFlowsheetEditor, StrConst::Dyssol_FlowsheetTabName);
ui.mainTabWidget->setTabToolTip(tab, "Flowsheet creation tab");
ui.mainTabWidget->setTabWhatsThis(tab, "Create flowsheet structure and specify unit parameters");
tab = ui.mainTabWidget->addTab(m_pSimulatorTab, StrConst::Dyssol_SimulatorTabName);
ui.mainTabWidget->setTabToolTip(tab, "Simulator tab");
ui.mainTabWidget->setTabWhatsThis(tab, "Set simulation time, run simulation and see logs and reports");
tab = ui.mainTabWidget->addTab(m_pStreamsViewer, StrConst::Dyssol_StreamsTabName);
ui.mainTabWidget->setTabToolTip(tab, "Stream analysis tab");
ui.mainTabWidget->setTabWhatsThis(tab, "See analysis of streams after simulation");
tab = ui.mainTabWidget->addTab(m_pUnitsViewer, StrConst::Dyssol_UnitsTabName);
ui.mainTabWidget->setTabToolTip(tab, "Unit analysis tab");
ui.mainTabWidget->setTabWhatsThis(tab, "See analysis of units after simulation");
ui.mainTabWidget->setStyleSheet("QTabBar::tab { min-width: 100px; }");
// status modal windows
m_pLoadingWindow = new CStatusWindow(StrConst::Dyssol_StatusLoadingTitle, StrConst::Dyssol_StatusLoadingText, StrConst::Dyssol_StatusLoadingQuestion, false, this);
m_pSavingWindow = new CStatusWindow(StrConst::Dyssol_StatusSavingTitle, StrConst::Dyssol_StatusSavingText, StrConst::Dyssol_StatusSavingQuestion, false);
// threads for saving and loading
m_pLoadingThread = new CSaveLoadThread(SSaveLoadData{ &m_Flowsheet }, false);
m_pSavingThread = new CSaveLoadThread(SSaveLoadData{ &m_Flowsheet }, true );
// create and setup menu
CreateMenu();
UpdateMenu();
// load materials database
LoadMaterialsDatabase();
}
Dyssol::~Dyssol()
{
delete m_pLoadingWindow;
delete m_pSavingWindow;
delete m_pLoadingThread;
delete m_pSavingThread;
delete m_pSettingsEditor;
delete m_pDustTesterTab;
delete m_pTearStreamsEditor;
delete m_pUnitsViewer;
delete m_pStreamsViewer;
delete m_pSimulatorTab;
delete m_pPhasesEditor;
delete m_pOptionsEditor;
delete m_pHoldupsEditor;
delete m_pGridEditor;
delete m_pFlowsheetEditor;
delete m_pCompoundsManager;
delete m_pMaterialsDatabaseTab;
delete m_pCalcSequenceEditor;
delete m_pModelsManagerTab;
}
void Dyssol::InitializeConnections() const
{
// initialize connections of widgets
m_pCalcSequenceEditor->InitializeConnections();
m_pMaterialsDatabaseTab->InitializeConnections();
m_pCompoundsManager->InitializeConnections();
m_pFlowsheetEditor->InitializeConnections();
m_pGridEditor->InitializeConnections();
m_pHoldupsEditor->InitializeConnections();
m_pModelsManagerTab->InitializeConnections();
m_pOptionsEditor->InitializeConnections();
m_pPhasesEditor->InitializeConnections();
m_pSimulatorTab->InitializeConnections();
m_pStreamsViewer->InitializeConnections();
m_pUnitsViewer->InitializeConnections();
m_pTearStreamsEditor->InitializeConnections();
m_pDustTesterTab->InitializeConnections();
m_pSettingsEditor->InitializeConnections();
// signals to dialogs from menu entries
connect(ui.actionCalcSequencerEditor, &QAction::triggered, m_pCalcSequenceEditor, &QDialog::raise);
connect(ui.actionCalcSequencerEditor, &QAction::triggered, m_pCalcSequenceEditor, &QDialog::show);
connect(ui.actionCompoundsEditor, &QAction::triggered, m_pMaterialsDatabaseTab, &QDialog::raise);
connect(ui.actionCompoundsEditor, &QAction::triggered, m_pMaterialsDatabaseTab, &QDialog::show);
connect(ui.actionCompoundsManager, &QAction::triggered, m_pCompoundsManager, &QDialog::raise);
connect(ui.actionCompoundsManager, &QAction::triggered, m_pCompoundsManager, &QDialog::show);
connect(ui.actionGridEditor, &QAction::triggered, m_pGridEditor, &QDialog::raise);
connect(ui.actionGridEditor, &QAction::triggered, m_pGridEditor, &QDialog::show);
connect(ui.actionHoldupsEditor, &QAction::triggered, m_pHoldupsEditor, &QDialog::raise);
connect(ui.actionHoldupsEditor, &QAction::triggered, m_pHoldupsEditor, &QDialog::show);
connect(ui.actionModelsManager, &QAction::triggered, m_pModelsManagerTab, &QDialog::raise);
connect(ui.actionModelsManager, &QAction::triggered, m_pModelsManagerTab, &QDialog::show);
connect(ui.actionOptionsEditor, &QAction::triggered, m_pOptionsEditor, &QDialog::raise);
connect(ui.actionOptionsEditor, &QAction::triggered, m_pOptionsEditor, &QDialog::show);
connect(ui.actionPhasesEditor, &QAction::triggered, m_pPhasesEditor, &QDialog::raise);
connect(ui.actionPhasesEditor, &QAction::triggered, m_pPhasesEditor, &QDialog::show);
connect(ui.actionRecycleStreams, &QAction::triggered, m_pTearStreamsEditor, &QDialog::raise);
connect(ui.actionRecycleStreams, &QAction::triggered, m_pTearStreamsEditor, &QDialog::show);
connect(ui.actionDustFormationTester, &QAction::triggered, m_pDustTesterTab, &QDialog::raise);
connect(ui.actionDustFormationTester, &QAction::triggered, m_pDustTesterTab, &QDialog::show);
connect(ui.actionSettingsEditor, &QAction::triggered, m_pSettingsEditor, &QDialog::raise);
connect(ui.actionSettingsEditor, &QAction::triggered, m_pSettingsEditor, &QDialog::show);
// connections from file menu entries
connect(ui.actionNewFlowsheet, &QAction::triggered, this, &Dyssol::NewFlowsheet);
connect(ui.actionOpenFlowsheet, &QAction::triggered, this, &Dyssol::OpenFlowsheet);
connect(ui.actionSaveFlowsheet, &QAction::triggered, this, &Dyssol::SaveFlowsheet);
connect(ui.actionSaveFlowsheetAs, &QAction::triggered, this, &Dyssol::SaveFlowsheetAs);
connect(ui.actionSaveScript, &QAction::triggered, this, &Dyssol::SaveScriptFile);
connect(ui.actionAbout, &QAction::triggered, this, &Dyssol::ShowAboutDialog);
// signals from threads
connect(m_pLoadingThread, &CSaveLoadThread::Finished, this, &Dyssol::LoadingFinished);
connect(m_pSavingThread, &CSaveLoadThread::Finished, this, &Dyssol::SavingFinished);
// signals between widgets
connect(m_pFlowsheetEditor, &CFlowsheetEditor::ModelsChanged, m_pHoldupsEditor, &CHoldupsEditor::UpdateWholeView);
connect(m_pFlowsheetEditor, &CFlowsheetEditor::ModelsChanged, m_pCalcSequenceEditor, &CCalculationSequenceEditor::UpdateWholeView);
connect(m_pFlowsheetEditor, &CFlowsheetEditor::ModelsChanged, m_pTearStreamsEditor, &CTearStreamsEditor::UpdateWholeView);
connect(m_pFlowsheetEditor, &CFlowsheetEditor::StreamsChanged, m_pCalcSequenceEditor, &CCalculationSequenceEditor::UpdateWholeView);
connect(m_pFlowsheetEditor, &CFlowsheetEditor::StreamsChanged, m_pTearStreamsEditor, &CTearStreamsEditor::UpdateWholeView);
connect(m_pFlowsheetEditor, &CFlowsheetEditor::StreamsChanged, m_pDustTesterTab, &CDustFormationTesterTab::UpdateWholeView);
connect(m_pFlowsheetEditor, &CFlowsheetEditor::UnitChanged, m_pHoldupsEditor, &CHoldupsEditor::UpdateWholeView);
connect(m_pFlowsheetEditor, &CFlowsheetEditor::UnitChanged, m_pDustTesterTab, &CDustFormationTesterTab::UpdateWholeView);
connect(m_pHoldupsEditor, &CHoldupsEditor::DataChanged, m_pUnitsViewer, &CUnitsViewer::UpdateWholeView);
connect(m_pHoldupsEditor, &CHoldupsEditor::DataChanged, m_pDustTesterTab, &CDustFormationTesterTab::UpdateWholeView);
connect(m_pGridEditor, &CGridEditor::DataChanged, m_pHoldupsEditor, &CHoldupsEditor::UpdateWholeView);
connect(m_pGridEditor, &CGridEditor::DataChanged, m_pUnitsViewer, &CUnitsViewer::UpdateWholeView);
connect(m_pGridEditor, &CGridEditor::DataChanged, m_pTearStreamsEditor, &CTearStreamsEditor::UpdateWholeView);
connect(m_pGridEditor, &CGridEditor::DataChanged, m_pDustTesterTab, &CDustFormationTesterTab::UpdateWholeView);
connect(m_pMaterialsDatabaseTab, &CMaterialsDatabaseTab::MaterialDatabaseWasChanged, m_pHoldupsEditor, &CHoldupsEditor::UpdateWholeView);
connect(m_pMaterialsDatabaseTab, &CMaterialsDatabaseTab::MaterialDatabaseWasChanged, m_pGridEditor, &CGridEditor::UpdateWholeView);
connect(m_pMaterialsDatabaseTab, &CMaterialsDatabaseTab::MaterialDatabaseWasChanged, m_pCompoundsManager, &CCompoundsManager::UpdateWholeView);
connect(m_pMaterialsDatabaseTab, &CMaterialsDatabaseTab::MaterialDatabaseWasChanged, m_pTearStreamsEditor, &CTearStreamsEditor::UpdateWholeView);
connect(m_pCompoundsManager, &CCompoundsManager::DataChanged, m_pHoldupsEditor, &CHoldupsEditor::UpdateWholeView);
connect(m_pCompoundsManager, &CCompoundsManager::DataChanged, m_pUnitsViewer, &CUnitsViewer::UpdateWholeView);
connect(m_pCompoundsManager, &CCompoundsManager::DataChanged, m_pTearStreamsEditor, &CTearStreamsEditor::UpdateWholeView);
connect(m_pCompoundsManager, &CCompoundsManager::DataChanged, m_pDustTesterTab, &CDustFormationTesterTab::UpdateWholeView);
connect(m_pPhasesEditor, &CPhasesEditor::DataChanged, m_pHoldupsEditor, &CHoldupsEditor::UpdateWholeView);
connect(m_pPhasesEditor, &CPhasesEditor::DataChanged, m_pUnitsViewer, &CUnitsViewer::UpdateWholeView);
connect(m_pPhasesEditor, &CPhasesEditor::DataChanged, m_pTearStreamsEditor, &CTearStreamsEditor::UpdateWholeView);
connect(m_pPhasesEditor, &CPhasesEditor::DataChanged, m_pDustTesterTab, &CDustFormationTesterTab::UpdateWholeView);
connect(m_pModelsManagerTab, &CModulesManagerTab::ModelsListWasChanged, m_pFlowsheetEditor, &CFlowsheetEditor::UpdateAvailableUnits);
connect(m_pModelsManagerTab, &CModulesManagerTab::ModelsListWasChanged, m_pFlowsheetEditor, &CFlowsheetEditor::UpdateAvailableSolvers);
connect(m_pSimulatorTab, &CSimulatorTab::SimulatorStateChanged, this, &Dyssol::OnSimulationStateChanged);
connect(m_pOptionsEditor, &COptionsEditor::NeedSaveAndReopen, this, &Dyssol::SlotSaveAndReopen);
connect(m_pSettingsEditor, &CSettingsEditor::NeedRestart, this, &Dyssol::SlotRestart);
connect(m_pSettingsEditor, &CSettingsEditor::NeedCacheClear, this, &Dyssol::SlotClearCache);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pCalcSequenceEditor, &CCalculationSequenceEditor::UpdateWholeView);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pCompoundsManager, &CCompoundsManager::UpdateWholeView);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pGridEditor, &CGridEditor::UpdateWholeView);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pHoldupsEditor, &CHoldupsEditor::UpdateWholeView);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pOptionsEditor, &COptionsEditor::UpdateWholeView);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pPhasesEditor, &CPhasesEditor::UpdateWholeView);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pTearStreamsEditor, &CTearStreamsEditor::UpdateWholeView);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pDustTesterTab, &CDustFormationTesterTab::UpdateWholeView);
connect(this, &Dyssol::NewFlowsheetLoaded, m_pSimulatorTab, &CSimulatorTab::OnNewFlowsheet);
// modification signals
connect(m_pCalcSequenceEditor, &CCalculationSequenceEditor::DataChanged, this, &Dyssol::FlowsheetStateChanged);
connect(m_pCompoundsManager, &CCompoundsManager::DataChanged, this, &Dyssol::FlowsheetStateChanged);
connect(m_pFlowsheetEditor, &CFlowsheetEditor::DataChanged, this, &Dyssol::FlowsheetStateChanged);
connect(m_pGridEditor, &CGridEditor::DataChanged, this, &Dyssol::FlowsheetStateChanged);
connect(m_pHoldupsEditor, &CHoldupsEditor::DataChanged, this, &Dyssol::FlowsheetStateChanged);
connect(m_pOptionsEditor, &COptionsEditor::DataChanged, this, &Dyssol::FlowsheetStateChanged);
connect(m_pPhasesEditor, &CPhasesEditor::DataChanged, this, &Dyssol::FlowsheetStateChanged);
connect(m_pSimulatorTab, &CSimulatorTab::DataChanged, this, &Dyssol::FlowsheetStateChanged);
connect(m_pTearStreamsEditor, &CTearStreamsEditor::DataChanged, this, &Dyssol::FlowsheetStateChanged);
}
void Dyssol::UpdateWholeView() const
{
switch (ui.mainTabWidget->currentIndex())
{
case FLOWSHEET_TAB: m_pFlowsheetEditor->UpdateWholeView(); break;
case SIMULATOR_TAB: m_pSimulatorTab->UpdateWholeView(); break;
case STREAMS_TAB: m_pStreamsViewer->UpdateWholeView(); break;
case UNITS_TAB: m_pUnitsViewer->UpdateWholeView(); break;
default: break;
}
}
void Dyssol::RestoreLastState() const
{
const QVariant path = m_pSettings->value(StrConst::Dyssol_ConfigLastParamName);
if (path.isValid() && !path.toString().isEmpty())
LoadFromFile(path.toString());
}
void Dyssol::OpenFromCommandLine(const QString& _sPath)
{
if(_sPath.simplified().isEmpty()) return;
if (!CheckAndAskUnsaved()) return;
LoadFromFile(_sPath);
}
void Dyssol::OpenDyssol() const
{
if (m_pSettings->value(StrConst::Dyssol_ConfigLoadLastFlag).toBool())
RestoreLastState();
}
void Dyssol::closeEvent(QCloseEvent* event)
{
if (m_Simulator.GetCurrentStatus() != ESimulatorState::IDLE)
{
const QMessageBox::StandardButtons buttons = QMessageBox::Yes | QMessageBox::Cancel | QMessageBox::No;
const QMessageBox::StandardButton reply = QMessageBox::question(this, StrConst::Dyssol_MainWindowName, StrConst::Dyssol_AbortMessage, buttons);
if (reply == QMessageBox::Yes)
CloseDyssol();
else
{
event->ignore();
return;
}
}
if (!CheckAndAskUnsaved())
event->ignore();
else
CloseDyssol();
}
void Dyssol::SetupCache()
{
// remove old cache data
ClearCache();
// set the default cache path to config.ini if it has not been set or does not exist
const QVariant cachePathVar = m_pSettings->value(StrConst::Dyssol_ConfigCachePath);
if (!cachePathVar.isValid() || cachePathVar.toString().isEmpty() || !std::filesystem::exists(cachePathVar.toString().toStdString()))
{
const auto path = QFileInfo{ m_pSettings->fileName() }.absoluteDir().path();
m_pSettings->setValue(StrConst::Dyssol_ConfigCachePath, path);
}
// setup cache path
const QString cachePath = m_pSettings->value(StrConst::Dyssol_ConfigCachePath).toString();
m_Flowsheet.GetParameters()->CachePath((cachePath + StrConst::Dyssol_CacheDir).toStdWString());
// check whether the cache path is accessible
if (FileSystem::IsWriteProtected(cachePath.toStdWString()))
{
if (m_pSavingThread) m_pSavingThread->Block();
if (m_pLoadingThread) m_pLoadingThread->Block();
QMessageBox::critical(this, StrConst::Dyssol_MainWindowName, "Unable to access the selected cache path because it is write-protected:\n'" + cachePath + "'\nPlease choose another path using Tools -> Settings -> Change path...\nSaving/loading of flowsheets is blocked until that.");
}
m_Flowsheet.UpdateCacheSettings();
}
void Dyssol::ClearCache()
{
// check whether other instances are running
if (OtherRunningDyssolCount()) return;
// close flowsheet
m_Flowsheet.Clear();
// clear cache
std::filesystem::remove_all((m_pSettings->value(StrConst::Dyssol_ConfigCachePath).toString() + StrConst::Dyssol_CacheDirDebug).toStdString());
std::filesystem::remove_all((m_pSettings->value(StrConst::Dyssol_ConfigCachePath).toString() + StrConst::Dyssol_CacheDirRelease).toStdString());
}
void Dyssol::CreateMenu()
{
/// enable tooltips in menus
ui.menuFile->setToolTipsVisible(true);
ui.menuFlowsheet->setToolTipsVisible(true);
ui.menuModules->setToolTipsVisible(true);
ui.menuTools->setToolTipsVisible(true);
ui.menuHelp->setToolTipsVisible(true);
/// recent files
for (size_t i = 0; i < MAX_RECENT_FILES; ++i)
{
auto* pAction = new QAction(this);
pAction->setVisible(false);
pAction->setToolTip("");
connect(pAction, &QAction::triggered, this, &Dyssol::LoadRecentFile);
ui.menuFile->insertAction(ui.actionExit, pAction);
m_vRecentFilesActions.push_back(pAction);
}
ui.menuFile->insertSeparator(ui.actionExit);
const auto AddHelpAction = [&](QMenu* _menu, const QString& _text, const QString& _link, const QString& _tooltip)
{
_menu->setToolTipsVisible(true);
QAction* action = _menu->addAction(_text, [this, _link] { m_helpHelper->OpenHelp(_link); });
action->setToolTip(_tooltip);
action->setWhatsThis(_tooltip);
};
/// help files
// Introduction
QMenu* menuIntroduction = ui.menuDocumentation->addMenu("Introduction");
AddHelpAction(menuIntroduction, "Get Started" , "000_get_started/get_started.html", "Overview of the first steps required to use Dyssol");
AddHelpAction(menuIntroduction, "Architecture" , "002_theory/brief.html" , "Overview of the Dyssol's architecture and used methods");
AddHelpAction(menuIntroduction, "Algorithms" , "002_theory/theory.html" , "Overview of simulation algorithms");
AddHelpAction(menuIntroduction, "User Interface", "001_ui/gui.html" , "Overview of the graphical user interface");
// Units
QMenu* menuUnits = ui.menuDocumentation->addMenu("Units");
AddHelpAction(menuUnits, "Agglomerator", "003_models/unit_agglomerator.html", "Agglomerator model");
AddHelpAction(menuUnits, "Bunker" , "003_models/unit_bunker.html" , "Bunker model");
AddHelpAction(menuUnits, "Crusher" , "003_models/unit_crusher.html" , "Crusher model");
AddHelpAction(menuUnits, "Granulator" , "003_models/unit_granulator.html" , "Granulator model");
AddHelpAction(menuUnits, "Inlet Flow" , "003_models/unit_inletflow.html" , "Inlet flow model");
AddHelpAction(menuUnits, "Mixer" , "003_models/unit_mixer.html" , "Mixer model");
AddHelpAction(menuUnits, "Outlet Flow" , "003_models/unit_outletflow.html" , "Outlet flow model");
AddHelpAction(menuUnits, "Screen" , "003_models/unit_screen.html" , "Screen model");
AddHelpAction(menuUnits, "Splitter" , "003_models/unit_splitter.html" , "Splitter model");
AddHelpAction(menuUnits, "Time Delay" , "003_models/unit_timedelay.html" , "Time delay model");
// Solvers
QMenu* menuSolvers = ui.menuDocumentation->addMenu("Solvers");
AddHelpAction(menuSolvers, "Agglomeration Cell Average", "003_models/solver_cellaverage.html", "Cell average agglomeration solver");
AddHelpAction(menuSolvers, "Agglomeration Fixed Pivot" , "003_models/solver_fixedpivot.html" , "Fixed pivot agglomeration solver");
AddHelpAction(menuSolvers, "Agglomeration FFT" , "003_models/solver_fft.html" , "FFT agglomeration solver");
// Development
QMenu* menuDevelopment = ui.menuDocumentation->addMenu("Development");
AddHelpAction(menuDevelopment, "Configuration of Models Creator project", "004_development/models_development.html#configuration-of-visual-studio-project-template", "Configuration of Visual Studio project template");
AddHelpAction(menuDevelopment, "Units Development" , "004_development/models_development.html#unit-development" , "Introduction to models development");
AddHelpAction(menuDevelopment, "Solvers Development" , "004_development/models_development.html#solver-development" , "Introduction to solvers development");
// Development - Program Interfaces
QMenu* menuInterfaces = menuDevelopment->addMenu("Program Interfaces");
AddHelpAction(menuInterfaces, "BaseUnit" , "004_development/class_baseunit.html" , "API of CBaseUnit class");
AddHelpAction(menuInterfaces, "Stream" , "004_development/class_stream.html" , "API of CStream class");
AddHelpAction(menuInterfaces, "DAESolver" , "004_development/solver_dae.html" , "API of built-in solvers");
AddHelpAction(menuInterfaces, "ExternalSolver" , "004_development/solver_external.html" , "API of agglomeration solvers");
AddHelpAction(menuInterfaces, "TransformMatrix" , "004_development/class_transformmatrix.html", "API of CTransformMatrix class");
AddHelpAction(menuInterfaces, "MDMatrix" , "004_development/class_densemdmatrix.html" , "API of CDenseMDMatrix class");
AddHelpAction(menuInterfaces, "Matrix2D" , "004_development/class_matrix2d.html" , "API of CMatrix2D class");
AddHelpAction(menuInterfaces, "PSD Functions" , "004_development/distr_functions.html" , "API of functions to work with distributions");
AddHelpAction(menuInterfaces, "Predefined Constants", "004_development/constants.html" , "List of constants");
// Main
AddHelpAction(ui.menuDocumentation, "Command Line Interface", "001_ui/cli.html" , "Overview of the command line interface");
AddHelpAction(ui.menuDocumentation, "Convergence" , "002_theory/theory.html#convergence-methods", "Information about convergence methods");
}
void Dyssol::UpdateMenu()
{
const QStringList filesList = m_pSettings->value(StrConst::Dyssol_ConfigRecentParamName).toStringList();
for (int i = 0; i < filesList.size(); ++i)
{
const std::wstring cleanFileName = CH5Handler::DisplayFileName(std::filesystem::path{ filesList[i].toStdWString() }).wstring();
const QString displayFileName = QFileInfo(QString::fromStdWString(cleanFileName)).fileName();
QString displayText = tr("&%1 %2").arg(i + 1).arg(displayFileName);
m_vRecentFilesActions[i]->setText(displayText);
m_vRecentFilesActions[i]->setData(filesList[i]);
m_vRecentFilesActions[i]->setToolTip(QString::fromStdWString(cleanFileName));
m_vRecentFilesActions[i]->setWhatsThis(tr("Load previously opened file %2").arg(QString::fromStdWString(cleanFileName)));
m_vRecentFilesActions[i]->setVisible(true);
}
// hide empty
for (int i = filesList.size(); i < MAX_RECENT_FILES; ++i)
m_vRecentFilesActions[i]->setVisible(false);
}
void Dyssol::SaveToFile(const QString& _sFileName) const
{
if (_sFileName.isEmpty()) return;
QApplication::setOverrideCursor(Qt::WaitCursor);
m_pSavingWindow->SetFileName(_sFileName);
m_pSavingWindow->show();
m_pSavingWindow->raise();
m_pSavingThread->SetFileName(_sFileName);
m_pSavingThread->Run();
}
void Dyssol::LoadFromFile(const QString& _sFileName) const
{
QApplication::setOverrideCursor(Qt::WaitCursor);
m_pLoadingWindow->SetFileName(QString::fromStdWString(CH5Handler::DisplayFileName(std::filesystem::path{ _sFileName.toStdWString() }).wstring()));
m_pLoadingWindow->show();
m_pLoadingWindow->raise();
m_pLoadingThread->SetFileName(_sFileName);
m_pLoadingThread->Run();
}
void Dyssol::SetCurrFlowsheetFile(const QString& _fileName)
{
const QString newFile = !_fileName.isEmpty() ? QFileInfo(_fileName).absoluteFilePath() : "";
AddFileToRecentList(newFile);
const QString sWinNamePrefix = QString(StrConst::Dyssol_MainWindowName);
if (!newFile.isEmpty())
setWindowTitle(sWinNamePrefix + " - " + QString::fromStdWString(CH5Handler::DisplayFileName(newFile.toStdWString()).wstring()) + "[*]");
else
setWindowTitle(sWinNamePrefix);
if (!newFile.isEmpty())
m_pSettings->setValue(StrConst::Dyssol_ConfigLastParamName, newFile);
}
void Dyssol::AddFileToRecentList(const QString& _fileToAdd)
{
if (_fileToAdd.isEmpty()) return;
QStringList filesList = m_pSettings->value(StrConst::Dyssol_ConfigRecentParamName).toStringList(); // get the list of recent files
filesList.removeAll(_fileToAdd); // remove all occurrences of the file itself
if (filesList.size() == MAX_RECENT_FILES) // max amount of recent files reached
filesList.pop_back(); // remove the oldest file
filesList.push_front(_fileToAdd); // put the file to the list as the first one
m_pSettings->setValue(StrConst::Dyssol_ConfigRecentParamName, filesList); // write down updated list to the file
UpdateMenu();
}
bool Dyssol::CheckAndAskUnsaved()
{
if (m_Flowsheet.IsEmpty() || !IsFlowsheetModified()) return true;
const QMessageBox::StandardButtons buttons = QMessageBox::Yes | QMessageBox::Cancel | QMessageBox::No;
const QMessageBox::StandardButton reply = QMessageBox::question(this, StrConst::Dyssol_MainWindowName, StrConst::Dyssol_SaveMessageBoxText, buttons);
if (reply == QMessageBox::Yes)
if(!SaveAndWait())
return false;
return reply != QMessageBox::Cancel;
}
bool Dyssol::SaveAndWait()
{
SaveFlowsheet();
// wait until the end of saving
QEventLoop loop;
QTimer timer;
connect(&timer, &QTimer::timeout, &loop, &QEventLoop::quit);
while (m_pSavingThread->IsRunning())
{
timer.start(200);
loop.exec();
}
return m_pSavingThread->IsSuccess();
}
void Dyssol::CloseDyssol(int _errCode /*= 0*/)
{
QCoreApplication::exit(_errCode);
}
void Dyssol::SetFlowsheetModified(bool _bModified)
{
m_bFlowsheetChanged = _bModified;
setWindowModified(_bModified);
}
bool Dyssol::IsFlowsheetModified() const
{
return m_bFlowsheetChanged;
}
void Dyssol::LoadMaterialsDatabase()
{
const QVariant mdbPath = m_pSettings->value(StrConst::Dyssol_ConfigDMDBPath);
if (!mdbPath.isValid()) return;
m_MaterialsDatabase.LoadFromFile(mdbPath.toString().toStdWString()); // try to load as from absolute path
if (m_MaterialsDatabase.CompoundsNumber() == 0) // loaded MDB is empty
{
const QString sPath = QCoreApplication::applicationDirPath() + "/" + mdbPath.toString(); // get relative path
m_MaterialsDatabase.LoadFromFile(sPath.toStdWString()); // try to load as from relative path
if (m_MaterialsDatabase.CompoundsNumber() != 0)
m_pSettings->setValue(StrConst::Dyssol_ConfigDMDBPath, sPath); // save full path to config file
}
else
m_pSettings->setValue(StrConst::Dyssol_ConfigDMDBPath, mdbPath.toString()); // save used path to config file
}
size_t Dyssol::OtherRunningDyssolCount()
{
#ifdef _MSC_VER
return SystemFunctions::ActiveInstancesCount(StringFunctions::String2WString(std::string(StrConst::Dyssol_ApplicationName) + ".exe")) - 1;
#else
// HACK
// TODO: implement for Linux to allow proper cache cleaning
return 1;
#endif
}
void Dyssol::setVisible(bool _visible)
{
QMainWindow::setVisible(_visible);
if (_visible)
UpdateWholeView();
}
void Dyssol::LoadRecentFile()
{
auto* pAction = qobject_cast<QAction*>(sender());
if (!pAction) return;
if (!CheckAndAskUnsaved()) return;
const QString newFile = pAction->data().toString();
if (newFile == QString::fromStdString(m_Flowsheet.GetFileName().string())) return;
LoadFromFile(newFile);
SetFlowsheetModified(false);
}
void Dyssol::NewFlowsheet()
{
if (!CheckAndAskUnsaved()) return;
SetFlowsheetModified(true);
m_Flowsheet.Clear();
SetCurrFlowsheetFile("");
UpdateWholeView();
emit NewFlowsheetLoaded();
}
void Dyssol::OpenFlowsheet()
{
if (!CheckAndAskUnsaved()) return;
const QString sFileName = QFileDialog::getOpenFileName(this, StrConst::Dyssol_DialogOpenName, QString::fromStdString(m_Flowsheet.GetFileName().string()), StrConst::Dyssol_DialogDflwFilter);
if (sFileName.isEmpty()) return;
LoadFromFile(sFileName);
SetFlowsheetModified(false);
}
void Dyssol::SaveFlowsheet()
{
if (!QString::fromStdString(m_Flowsheet.GetFileName().string()).isEmpty())
SaveToFile(QString::fromStdString(m_Flowsheet.GetFileName().string()));
else
SaveFlowsheetAs();
}
void Dyssol::SaveFlowsheetAs()
{
const QString sFileName = QFileDialog::getSaveFileName(this, StrConst::Dyssol_DialogSaveName, QString::fromStdString(m_Flowsheet.GetFileName().string()), StrConst::Dyssol_DialogDflwFilter);
SaveToFile(sFileName);
}
void Dyssol::SaveScriptFile()
{
const QString filePath = QString::fromStdWString(CH5Handler::DisplayFileName(m_Flowsheet.GetFileName()).wstring());
const QString txtFileName = QFileInfo(filePath).absolutePath() + "/" + QFileInfo(filePath).baseName() + ".txt";
const QString sFileName = QFileDialog::getSaveFileName(this, StrConst::Dyssol_DialogSaveConfigName, txtFileName, StrConst::Dyssol_DialogTxtFilter);
QApplication::setOverrideCursor(Qt::WaitCursor);
ScriptInterface::ExportScript(sFileName.toStdWString(), m_Flowsheet, m_ModelsManager, m_MaterialsDatabase);
QApplication::restoreOverrideCursor();
}
void Dyssol::SavingFinished()
{
QApplication::restoreOverrideCursor();
if(m_pSavingThread->IsSuccess())
{
SetCurrFlowsheetFile(m_pSavingThread->GetFinalFileName());
SetFlowsheetModified(false);
}
else
{
QString message = "Unable to save the flowsheet to the file:\n'" + m_pSavingThread->GetFileName();
if (FileSystem::IsWriteProtected(FileSystem::FilePath(m_pSavingThread->GetFileName().toStdWString())))
message += "'\nThe selected path may be write-protected.";
QMessageBox::warning(this, StrConst::Dyssol_MainWindowName, message);
}
m_pSavingThread->Stop();
m_pSavingWindow->accept();
}
void Dyssol::LoadingFinished()
{
if (m_pLoadingThread->IsSuccess())
SetCurrFlowsheetFile(m_pLoadingThread->GetFinalFileName());
m_pLoadingThread->Stop();
UpdateWholeView();
emit NewFlowsheetLoaded();
m_pLoadingWindow->accept();
QApplication::restoreOverrideCursor();
if (!m_pLoadingThread->IsSuccess())
QMessageBox::warning(this, StrConst::Dyssol_MainWindowName, "Unable to load the selected file\n" + m_pLoadingThread->GetFileName());
}
void Dyssol::ShowAboutDialog()
{
CAboutWindow about(this);
about.exec();
}
void Dyssol::SlotSaveAndReopen()
{
SaveAndWait();
const auto oldFile = m_Flowsheet.GetFileName();
m_Flowsheet.Clear();
LoadFromFile(QString::fromStdString(oldFile.string()));
}
void Dyssol::SlotRestart()
{
if (CheckAndAskUnsaved())
CloseDyssol(Dyssol::EXIT_CODE_REBOOT);
}
void Dyssol::SlotClearCache()
{
if (!CheckAndAskUnsaved()) return;
while (OtherRunningDyssolCount())
{
const auto reply = QMessageBox::warning(this, "Clear cache",
tr("%1 other instances of Dyssol are still running. Close them to proceed.").arg(OtherRunningDyssolCount()),
QMessageBox::Retry | QMessageBox::Cancel);
if (reply == QMessageBox::Cancel) return;
}
ClearCache();
CloseDyssol(EXIT_CODE_REBOOT);
}
void Dyssol::FlowsheetStateChanged()
{
SetFlowsheetModified(true);
}
void Dyssol::OnSimulationStateChanged(ESimulatorState _state) const
{
BlockUI(_state == ESimulatorState::RUNNING);
}
void Dyssol::BlockUI(bool _block) const
{
for (int i = 0; i < ui.mainTabWidget->count(); ++i)
if (i != SIMULATOR_TAB)
ui.mainTabWidget->setTabEnabled(i, !_block);
ui.menuFile->setEnabled(!_block);
ui.menuFlowsheet->setEnabled(!_block);
ui.menuModules->setEnabled(!_block);
ui.menuTools->setEnabled(!_block);
}
|