From f507ec8d67bff2f2e63db8fff42f6a94bd06557c Mon Sep 17 00:00:00 2001 From: leca Date: Fri, 14 Mar 2025 18:24:42 +0300 Subject: [PATCH] starting http server with error handling --- main.cpp | 5 +---- ofdscene.cpp | 47 +++++++++++++++++++++++++++++++++++-------- ofdscene.h | 10 +++++++++ translations/en_US.ts | 28 +++++++++++++++++--------- translations/ru_RU.ts | 28 +++++++++++++++++--------- 5 files changed, 88 insertions(+), 30 deletions(-) diff --git a/main.cpp b/main.cpp index 69ab8b6..208dfa5 100644 --- a/main.cpp +++ b/main.cpp @@ -33,6 +33,7 @@ static QWidget *loadUI(QWidget *parent, std::string filename) { } int main(int argc, char *argv[]) { + srand(time(0)); QApplication app(argc, argv); @@ -92,10 +93,6 @@ int main(int argc, char *argv[]) { OCRScene *ocrscene = new OCRScene(); OFDScene *ofdscene = new OFDScene(); - // ofdscene->startHttpServer(); - // get_local_ip_address(); - - sceneLayout->addWidget(mainwindowscene); sceneLayout->addWidget(emailTextScene); sceneLayout->addWidget(ocrscene); diff --git a/ofdscene.cpp b/ofdscene.cpp index fad6d35..88b647a 100644 --- a/ofdscene.cpp +++ b/ofdscene.cpp @@ -17,6 +17,8 @@ OFDScene::OFDScene(QWidget *parent) : QWidget(parent) , ui(new Ui::OFDScene) { ui->setupUi(this); + + QObject::connect(this, &OFDScene::httpErrorOccured, this, &OFDScene::notifyHttpServerFailure); } OFDScene::~OFDScene() { @@ -25,6 +27,7 @@ OFDScene::~OFDScene() { void OFDScene::startHttpServer() { std::string localIp = ""; + try { localIp = get_local_ip_address(); } catch(std::exception e) { @@ -32,13 +35,29 @@ void OFDScene::startHttpServer() { return; } - httplib::Server svr; - //TODO: generate random port from 1024 to 65535 and check if its used. - svr.Get("/", [&](const httplib::Request &, httplib::Response &res){ - res.set_redirect("http://"+ localIp +":8080/", 301); - }); + unsigned short number_of_retries = 0; - svr.listen("0.0.0.0", 8080); + do { + if (number_of_retries == 10) { + emit httpErrorOccured(); + return; + } + this->port = rand() % (65535 - 1024) + 1024; + + httplib::Server svr; + + svr.Get("/", [&](const httplib::Request &, httplib::Response &res){ + res.set_redirect("http://"+ localIp +":"+ std::to_string(port) +"/", 301); + }); + + number_of_retries ++; + std::cerr << "Listening on port: " << this->port << std::endl; + if (!svr.listen("0.0.0.0", this->port)) { + std::cerr << "Random port seems to be occupied. Trying to generate another one" << std::endl; + number_of_retries ++; + continue; + } + } while(true); } void OFDScene::on_choose_image_button_clicked() { @@ -53,7 +72,6 @@ void OFDScene::on_choose_image_button_clicked() { return; } - ui->info_label->setText(tr("Selected image: ") + filename); AdjustPictureDialog dialog = AdjustPictureDialog(this, filename.toStdString()); @@ -145,6 +163,19 @@ void OFDScene::on_parse_button_clicked() { void OFDScene::on_binary_eye_button_clicked() { - + http_thread = new std::thread(&OFDScene::startHttpServer, this); +} + +void OFDScene::notifyHttpServerFailure() { + QMessageBox *infoDialog = new QMessageBox(); + infoDialog->setText(tr("Could not start http server. 10 times in a row random port was occupied. Either you should run for a lottery ticket, or the problem is in the program. If the lottery ticket wasn't lucky, please, contact the developer.")); + infoDialog->setIcon(QMessageBox::Warning); + infoDialog->setWindowTitle(tr("Could not start http server.")); + infoDialog->exec(); + delete infoDialog; +} + +unsigned int OFDScene::getPort() { + return port; } diff --git a/ofdscene.h b/ofdscene.h index 83901a3..13bb918 100644 --- a/ofdscene.h +++ b/ofdscene.h @@ -2,6 +2,7 @@ #define OFDSCENE_H #include +#include namespace Ui { class OFDScene; @@ -15,6 +16,8 @@ public: explicit OFDScene(QWidget *parent = nullptr); ~OFDScene(); void startHttpServer(); + + unsigned int getPort(); private slots: void on_choose_image_button_clicked(); void onDataDecode(std::string data); @@ -22,9 +25,16 @@ private slots: void on_parse_button_clicked(); void on_binary_eye_button_clicked(); + void notifyHttpServerFailure(); + +signals: + void httpErrorOccured(); private: Ui::OFDScene *ui; + std::thread *http_thread; + + unsigned int port; }; #endif // OFDSCENE_H diff --git a/translations/en_US.ts b/translations/en_US.ts index 49b8dfd..317dd12 100644 --- a/translations/en_US.ts +++ b/translations/en_US.ts @@ -367,47 +367,57 @@ Parse - + + Could not start http server. 10 times in a row random port was occupied. Either you should run for a lottery ticket, or the problem is in the program. If the lottery ticket wasn't lucky, please, contact the developer. + + + + + Could not start http server. + + + + Please, select a picture where QR code that contains info about check is present Please, select a picture where QR code that contains info about check is present - + Picture was not selected Picture was not selected - + Selected image: Selected image: - + Captcha was not solved correctly! Captcha was not solved correctly! - + Captcha is incorrect Captcha is incorrect - + Internal server error. Please, try again later. Internal server error. Please, try again later. - + Internal server error Internal server error - + Check not found. Please, ensure correctness of entered data. Check not found. Please, ensure correctness of entered data. - + Check was not found Check was not found diff --git a/translations/ru_RU.ts b/translations/ru_RU.ts index de475ae..7b1fd6d 100644 --- a/translations/ru_RU.ts +++ b/translations/ru_RU.ts @@ -367,47 +367,57 @@ Парсить - + + Could not start http server. 10 times in a row random port was occupied. Either you should run for a lottery ticket, or the problem is in the program. If the lottery ticket wasn't lucky, please, contact the developer. + + + + + Could not start http server. + + + + Please, select a picture where QR code that contains info about check is present Пожалуйста, выберете изображение, содержащее QR код с информацией о чеке - + Picture was not selected Изображение не было выбрано - + Selected image: Выбранное изображение: - + Captcha was not solved correctly! Капча была решена неверно! - + Captcha is incorrect Капча введена неверно - + Internal server error. Please, try again later. Внутренняя ошибка сервера. Пожалуйста, попробуйте снова позже. - + Internal server error Внутренняя ошибка сервера - + Check not found. Please, ensure correctness of entered data. Чек не найден. Пожалуйста, убедитесь в правильности введённых данных. - + Check was not found Чек не найден