src/relpipe-out-chart.cpp
author František Kučera <franta-hg@frantovo.cz>
Sun, 30 Sep 2018 01:40:29 +0200
branchv_0
changeset 18 16784291982f
parent 17 dad72beb3ebe
child 19 ac70c7af6a9b
permissions -rw-r--r--
add QTableWidget with rows and collumns filled with attribute values

#include <iostream>

#include <QApplication>
#include <QThread>

#include <relpipe/cli/CLI.h>
#include <relpipe/cli/RelpipeCLIException.h>
#include <relpipe/reader/Factory.h>
#include <relpipe/reader/RelationalReader.h>
#include <relpipe/reader/RelpipeReaderException.h>

#include "RelpipeChartMainWindow.h"
#include "QtRelationalReaderStringHadler.h"

using namespace relpipe::cli;
using namespace relpipe::reader;

class RelationalReaderThread : public QThread {
private:
	std::shared_ptr<RelationalReader> reader;
public:

	// TODO: better background thread; lambda?

	RelationalReaderThread(std::shared_ptr<RelationalReader> reader) :
	reader(reader) {
		setTerminationEnabled(true);
	}

	void run() {
		try {
			reader->process();
		} catch (RelpipeReaderException& e) {
			// TODO: handle exception, show error dialog
			std::wcerr << L"RelpipeReaderException: " << e.getMessge() << std::endl;
		}
	}
};

int main(int argc, char**argv) {
	CLI cli(argc, argv);
	// TODO: argument name collisions? Filter arguments? Use prefix for Qt? Qt: -title, -style, -geometry
	QApplication app(argc, argv);

	std::shared_ptr<RelationalReader> reader(Factory::create(std::cin));


	int resultCode = CLI::EXIT_CODE_UNEXPECTED_ERROR;

	RelpipeChartMainWindow window;

	// TODO: remove; just demo
	QObject::connect(&window, &RelpipeChartMainWindow::signal123, &window, &RelpipeChartMainWindow::slot123);

	window.show();

	QtRelationalReaderStringHadler handler(&app, &window);
	reader->addHandler(&handler);

	// Start background thread
	RelationalReaderThread t(reader);
	t.start();
	// ---

	// window.signal123();

	app.exec();
	//return app.exec();

	if (t.isRunning()) {
		std::wcerr << L"Background RelationalReader thread is still running → terminate()" << std::endl;
		t.terminate();
		std::wcerr << L"Background RelationalReader thread was terminated → wait()" << std::endl;
		t.wait();
		std::wcerr << L"Background RelationalReader thread wait() finished" << std::endl;
	}

	return resultCode;
}