Skip to content
Snippets Groups Projects
Commit 03eb904a authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

qDebug() output removed

parent 27f6d8b5
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
#include <QApplication> #include <QApplication>
#include <QTime> #include <QTime>
#include <QCoreApplication> #include <QCoreApplication>
#include <QDebug>
SaveService::SaveService(QObject* parent) SaveService::SaveService(QObject* parent)
: QObject(parent) : QObject(parent)
...@@ -47,7 +46,6 @@ void SaveService::setDocument(ProjectDocument* document) ...@@ -47,7 +46,6 @@ void SaveService::setDocument(ProjectDocument* document)
void SaveService::save(const QString& project_file_name) void SaveService::save(const QString& project_file_name)
{ {
Q_ASSERT(m_document); Q_ASSERT(m_document);
qDebug() << "SaveService::save() -> Project saving. Putting in a queue:" << project_file_name;
m_save_queue.enqueue(project_file_name); m_save_queue.enqueue(project_file_name);
process_queue(); process_queue();
...@@ -111,7 +109,6 @@ void SaveService::stopService() ...@@ -111,7 +109,6 @@ void SaveService::stopService()
void SaveService::onAutosaveRequest() void SaveService::onAutosaveRequest()
{ {
qDebug() << "SaveService::onAutosaveRequest() -> saving into " << m_autosave->autosaveName();
save(m_autosave->autosaveName()); save(m_autosave->autosaveName());
} }
...@@ -120,8 +117,6 @@ void SaveService::onProjectSaved() ...@@ -120,8 +117,6 @@ void SaveService::onProjectSaved()
Q_ASSERT(m_document); Q_ASSERT(m_document);
Q_ASSERT(m_is_saving); Q_ASSERT(m_is_saving);
qDebug() << "SaveService::onProjectSaved() -> Project was saved.";
m_is_saving = false; m_is_saving = false;
emit projectSaved(); emit projectSaved();
...@@ -133,15 +128,10 @@ void SaveService::process_queue() ...@@ -133,15 +128,10 @@ void SaveService::process_queue()
{ {
Q_ASSERT(m_document); Q_ASSERT(m_document);
qDebug() << "SaveService::process_queue() -> m_is_saving" << m_is_saving; if (m_is_saving)
if (m_is_saving) {
qDebug() << "SaveService::save() -> Project is under saving. Waiting.";
return; return;
}
if (!m_save_queue.isEmpty()) { if (!m_save_queue.isEmpty()) {
qDebug() << "SaveService::save() -> Preparint to run a thread";
m_is_saving = true; m_is_saving = true;
QString project_file_name = m_save_queue.dequeue(); QString project_file_name = m_save_queue.dequeue();
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
#include <QDir> #include <QDir>
#include <QXmlStreamReader> #include <QXmlStreamReader>
#include <QElapsedTimer> #include <QElapsedTimer>
#include <QDebug>
namespace { namespace {
const QString OPEN_FILE_ERROR = "OPEN_FILE_ERROR"; const QString OPEN_FILE_ERROR = "OPEN_FILE_ERROR";
...@@ -121,9 +120,6 @@ void ProjectDocument::save_project_file(const QString& project_file_name, bool a ...@@ -121,9 +120,6 @@ void ProjectDocument::save_project_file(const QString& project_file_name, bool a
m_modified = false; m_modified = false;
emit modified(); emit modified();
} }
qDebug() << "ProjectDocument::save_project_file() -> " << project_file_name
<< timer.elapsed() << "msec";
} }
void ProjectDocument::save_project_data(const QString& project_file_name) void ProjectDocument::save_project_data(const QString& project_file_name)
...@@ -132,9 +128,6 @@ void ProjectDocument::save_project_data(const QString& project_file_name) ...@@ -132,9 +128,6 @@ void ProjectDocument::save_project_data(const QString& project_file_name)
timer.start(); timer.start();
m_dataService->save(ProjectUtils::projectDir(project_file_name)); m_dataService->save(ProjectUtils::projectDir(project_file_name));
qDebug() << "ProjectDocument::save_project_data() -> " << project_file_name
<< timer.elapsed() << "msec";
} }
...@@ -168,10 +161,6 @@ void ProjectDocument::load(const QString& project_file_name) ...@@ -168,10 +161,6 @@ void ProjectDocument::load(const QString& project_file_name)
ProjectFlags::setFlag(m_documentStatus, ProjectFlags::STATUS_FAILED); ProjectFlags::setFlag(m_documentStatus, ProjectFlags::STATUS_FAILED);
m_messageService->send_message(this, EXCEPTION_THROW, QString(ex.what())); m_messageService->send_message(this, EXCEPTION_THROW, QString(ex.what()));
} }
qDebug() << "ProjectDocument::load() -> Project load time:"
<< (timer1.elapsed() - timer2.elapsed()) << ";"
<< "nonXML load time:" << timer2.elapsed();
} }
bool ProjectDocument::hasValidNameAndPath() bool ProjectDocument::hasValidNameAndPath()
......
...@@ -15,40 +15,35 @@ ...@@ -15,40 +15,35 @@
// ************************************************************************** // // ************************************************************************** //
#include "GUISaveLoadProject.h" #include "GUISaveLoadProject.h"
#include "SimulationOptionsItem.h"
#include "GUIObjectBuilder.h"
#include "ApplicationModels.h" #include "ApplicationModels.h"
#include "JobModel.h"
#include "SampleModel.h"
#include "InstrumentModel.h"
#include "SampleBuilderFactory.h"
#include "DocumentModel.h"
#include "DetectorItems.h" #include "DetectorItems.h"
#include "MultiLayer.h" #include "DocumentModel.h"
#include "JobItem.h"
#include "InstrumentItem.h"
#include "projectdocument.h"
#include "GUIHelpers.h" #include "GUIHelpers.h"
#include "GUIObjectBuilder.h"
#include "InstrumentItem.h"
#include "InstrumentModel.h"
#include "JobItem.h"
#include "JobModel.h"
#include "MultiLayer.h"
#include "ProjectUtils.h" #include "ProjectUtils.h"
#include "SampleBuilderFactory.h"
#include "SampleModel.h"
#include "SimulationOptionsItem.h"
#include "WarningMessageService.h" #include "WarningMessageService.h"
#include <QElapsedTimer> #include "projectdocument.h"
#include <QEventLoop>
#include <QCoreApplication> #include <QCoreApplication>
#include <QElapsedTimer>
#include <QXmlStreamWriter> #include <QXmlStreamWriter>
#include <QDebug>
namespace { namespace
{
const QString sample_name = "ParticleCompositionBuilder"; const QString sample_name = "ParticleCompositionBuilder";
const QString project_name = "untitled.pro"; const QString project_name = "untitled.pro";
const int failure = 1; const int failure = 1;
const int success = 0; const int success = 0;
} }
GUISaveLoadProject::GUISaveLoadProject() GUISaveLoadProject::GUISaveLoadProject() : m_models(new ApplicationModels) {}
: m_models(new ApplicationModels)
{
}
bool GUISaveLoadProject::runTest() bool GUISaveLoadProject::runTest()
{ {
...@@ -80,7 +75,7 @@ int GUISaveLoadProject::run_job() ...@@ -80,7 +75,7 @@ int GUISaveLoadProject::run_job()
std::cout << "GUISaveLoadProject::run_job()" << std::endl; std::cout << "GUISaveLoadProject::run_job()" << std::endl;
SimulationOptionsItem *optionsItem = m_models->documentModel()->getSimulationOptionsItem(); SimulationOptionsItem* optionsItem = m_models->documentModel()->getSimulationOptionsItem();
SampleBuilderFactory factory; SampleBuilderFactory factory;
const std::unique_ptr<ISample> sample(factory.createSample(sample_name.toStdString())); const std::unique_ptr<ISample> sample(factory.createSample(sample_name.toStdString()));
...@@ -90,19 +85,17 @@ int GUISaveLoadProject::run_job() ...@@ -90,19 +85,17 @@ int GUISaveLoadProject::run_job()
m_models->instrumentModel()->instrumentItem()->detectorItem()->setSize(50, 50); m_models->instrumentModel()->instrumentItem()->detectorItem()->setSize(50, 50);
auto jobItem = m_models->jobModel()->addJob( auto jobItem = m_models->jobModel()->addJob(m_models->sampleModel()->multiLayerItem(),
m_models->sampleModel()->multiLayerItem(), m_models->instrumentModel()->instrumentItem(), 0,
m_models->instrumentModel()->instrumentItem(), optionsItem);
0,
optionsItem);
m_models->jobModel()->runJob(jobItem->index()); m_models->jobModel()->runJob(jobItem->index());
while(m_models->jobModel()->hasUnfinishedJobs()) { while (m_models->jobModel()->hasUnfinishedJobs()) {
QElapsedTimer timer; QElapsedTimer timer;
timer.start(); timer.start();
while(timer.elapsed() < 10) while (timer.elapsed() < 10)
QCoreApplication::processEvents( QEventLoop::AllEvents, 1 ); QCoreApplication::processEvents(QEventLoop::AllEvents, 1);
} }
std::cout << "... job finished." << std::endl; std::cout << "... job finished." << std::endl;
...@@ -123,8 +116,8 @@ int GUISaveLoadProject::save_project(const QString& projectName) ...@@ -123,8 +116,8 @@ int GUISaveLoadProject::save_project(const QString& projectName)
int GUISaveLoadProject::save_project_dir(const QString& projectName) int GUISaveLoadProject::save_project_dir(const QString& projectName)
{ {
std::cout << "GUISaveLoadProject::save_project() -> Saving to " std::cout << "GUISaveLoadProject::save_project() -> Saving to " << projectName.toStdString()
<< projectName.toStdString() << std::endl; << std::endl;
if (ProjectUtils::exists(projectName)) if (ProjectUtils::exists(projectName))
ProjectUtils::removeRecursively(projectName); ProjectUtils::removeRecursively(projectName);
...@@ -133,7 +126,7 @@ int GUISaveLoadProject::save_project_dir(const QString& projectName) ...@@ -133,7 +126,7 @@ int GUISaveLoadProject::save_project_dir(const QString& projectName)
ProjectDocument document; ProjectDocument document;
document.setApplicationModels(m_models.get()); document.setApplicationModels(m_models.get());
document.save(projectName+"/"+project_name); document.save(projectName + "/" + project_name);
std::cout << "... saved." << std::endl; std::cout << "... saved." << std::endl;
...@@ -144,7 +137,7 @@ int GUISaveLoadProject::save_project_dir(const QString& projectName) ...@@ -144,7 +137,7 @@ int GUISaveLoadProject::save_project_dir(const QString& projectName)
int GUISaveLoadProject::save_xml(const QString& projectName) int GUISaveLoadProject::save_xml(const QString& projectName)
{ {
for(auto model : m_models->modelList()) for (auto model : m_models->modelList())
m_results[projectName].push_back(dataXML(model)); m_results[projectName].push_back(dataXML(model));
return success; return success;
...@@ -154,14 +147,14 @@ int GUISaveLoadProject::load_project(const QString& projectName) ...@@ -154,14 +147,14 @@ int GUISaveLoadProject::load_project(const QString& projectName)
{ {
resetModels(); resetModels();
std::cout << "GUISaveLoadProject::load_project() -> Loading from " std::cout << "GUISaveLoadProject::load_project() -> Loading from " << projectName.toStdString()
<< projectName.toStdString() << std::endl; << std::endl;
WarningMessageService logger; WarningMessageService logger;
ProjectDocument document; ProjectDocument document;
document.setApplicationModels(m_models.get()); document.setApplicationModels(m_models.get());
document.setLogger(&logger); document.setLogger(&logger);
document.load(projectName+"/"+project_name); document.load(projectName + "/" + project_name);
std::cout << "... loaded." << std::endl; std::cout << "... loaded." << std::endl;
return success; return success;
...@@ -176,29 +169,27 @@ int GUISaveLoadProject::check_difference(const QString& projectName1, const QStr ...@@ -176,29 +169,27 @@ int GUISaveLoadProject::check_difference(const QString& projectName1, const QStr
auto project1 = m_results[projectName1]; auto project1 = m_results[projectName1];
auto project2 = m_results[projectName2]; auto project2 = m_results[projectName2];
if (project1.size() != project2.size()) { if (project1.size() != project2.size()) {
std::cout << "Number of models in project differs. Failed. \n"; std::cout << "Number of models in project differs. Failed. \n";
return failure; return failure;
} }
int err(0); int err(0);
for(int i=0; i<project1.size(); ++i) { for (int i = 0; i < project1.size(); ++i) {
DataXML model_data1 = project1[i]; DataXML model_data1 = project1[i];
DataXML model_data2 = project2[i]; DataXML model_data2 = project2[i];
if (model_data1.m_model_tag != model_data2.m_model_tag) { if (model_data1.m_model_tag != model_data2.m_model_tag) {
std::cout << "Error, different tags. " std::cout << "Error, different tags. " << model_data1.m_model_tag.toStdString()
<< model_data1.m_model_tag.toStdString() << model_data2.m_model_tag.toStdString() << "\n";
<< model_data2.m_model_tag.toStdString() << "\n";
err++; err++;
} }
if (model_data1.m_model_xml != model_data2.m_model_xml) { if (model_data1.m_model_xml != model_data2.m_model_xml) {
std::cout << "Error, different xml in model '" std::cout << "Error, different xml in model '" << model_data1.m_model_tag.toStdString()
<< model_data1.m_model_tag.toStdString() << "'\n"; << "'\n";
err++; err++;
} }
} }
return err > 0 ? failure : success; return err > 0 ? failure : success;
...@@ -219,8 +210,6 @@ GUISaveLoadProject::DataXML GUISaveLoadProject::dataXML(SessionModel* model) ...@@ -219,8 +210,6 @@ GUISaveLoadProject::DataXML GUISaveLoadProject::dataXML(SessionModel* model)
void GUISaveLoadProject::resetModels() void GUISaveLoadProject::resetModels()
{ {
qDebug() << "Going to reset";
m_models.reset(); // first have to delete original model m_models.reset(); // first have to delete original model
m_models.reset(new ApplicationModels); m_models.reset(new ApplicationModels);
qDebug() << "End of reset";
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment