Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QMessageBox showing "Loading...."
Qt 6.11 is out! See what's new in the release blog

QMessageBox showing "Loading...."

Scheduled Pinned Locked Moved Unsolved General and Desktop
32 Posts 7 Posters 13.4k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • GuapoG Offline
    GuapoG Offline
    Guapo
    wrote on last edited by
    #14

    I did make some changes...

    The first action of my app is ask for user/pass to login on.

    There is a "Login" button to check these credencials.

    After check user and pass I put this library load and my &$&#$%%@# QMessagebox.

    When this load finish, I call the Principal class ( that shows the main screen ).

    The old code had this Principal class constructor to load this library.

    Now I´m loading this library out of any constructor and the results are exactly I the same.

    JonBJ 1 Reply Last reply
    0
    • GuapoG Guapo

      I did make some changes...

      The first action of my app is ask for user/pass to login on.

      There is a "Login" button to check these credencials.

      After check user and pass I put this library load and my &$&#$%%@# QMessagebox.

      When this load finish, I call the Principal class ( that shows the main screen ).

      The old code had this Principal class constructor to load this library.

      Now I´m loading this library out of any constructor and the results are exactly I the same.

      JonBJ Offline
      JonBJ Offline
      JonB
      wrote on last edited by JonB
      #15

      @Guapo
      But are you calling the Message Box creation after you have entered the main Qt event loop (like app.exec_()) which has allowed the main window to finish drawing correctly? Or, possibly, very early, before you have started creating your QMainWindow? Or, what's this "third-party library" you're talking about, could that be interfering, why can't you eliminate that and see if it's relevant?

      It's up to you whether you want to try these things. But if you don't, I could be wrong but it seems to me nobody here is going to have a solution for you....

      1 Reply Last reply
      0
      • GuapoG Offline
        GuapoG Offline
        Guapo
        wrote on last edited by Guapo
        #16

        @JNBarchan

        The Login Class is my QMainWindow.

        int main(int argc, char *argv[])
        {
            QApplication a(argc, argv);
            Login w;
        
            w.show();
        
            return a.exec();
        }
        
        ........
        
        Login::Login(QWidget *parent) :
            QMainWindow(parent),
            ui(new Ui::Login)
        {
            ui->setupUi(this);
        
            path_images=QString("%1/images/").arg(QDir::currentPath());
            QPixmap pix(QString("%1%2").arg(path_images,"selo_sabordelivery.png"));
         //   QPixmap pix("/mnt/midia4/prj/qt/sql/sql_app/selo_sabordelivery.png");
            ui->label_pic->setPixmap(pix);
        
            if(!connOpen())
                ui->label_db->setText("Falha ao conectar DataBase");
            else
                ui->label_db->setText("DataBase Conectado...");
        }
        

        and I´m loading my library (.so) inside this class...This class has a GUI.

        I put this message before loading library and didn´t show anything....I´m trying to understand what is going on.

        tks

        jsulmJ 1 Reply Last reply
        0
        • GuapoG Guapo

          @JNBarchan

          The Login Class is my QMainWindow.

          int main(int argc, char *argv[])
          {
              QApplication a(argc, argv);
              Login w;
          
              w.show();
          
              return a.exec();
          }
          
          ........
          
          Login::Login(QWidget *parent) :
              QMainWindow(parent),
              ui(new Ui::Login)
          {
              ui->setupUi(this);
          
              path_images=QString("%1/images/").arg(QDir::currentPath());
              QPixmap pix(QString("%1%2").arg(path_images,"selo_sabordelivery.png"));
           //   QPixmap pix("/mnt/midia4/prj/qt/sql/sql_app/selo_sabordelivery.png");
              ui->label_pic->setPixmap(pix);
          
              if(!connOpen())
                  ui->label_db->setText("Falha ao conectar DataBase");
              else
                  ui->label_db->setText("DataBase Conectado...");
          }
          

          and I´m loading my library (.so) inside this class...This class has a GUI.

          I put this message before loading library and didn´t show anything....I´m trying to understand what is going on.

          tks

          jsulmJ Offline
          jsulmJ Offline
          jsulm
          Lifetime Qt Champion
          wrote on last edited by
          #17

          @Guapo said in Qmessagebox showing "Loading....":

          connOpen

          what does this one do?

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • GuapoG Offline
            GuapoG Offline
            Guapo
            wrote on last edited by Guapo
            #18

            connOpen only it´s makes a MySql conection

            bool connOpen(){

                lerconf();  // read text file
            
                mydb=QSqlDatabase::addDatabase("QMYSQL");
                mydb.setDatabaseName("controle_restaurante");
            
                mydb.setHostName(database_nome);
                mydb.setPort(database_port.toInt());
                mydb.setUserName(database_user);
                mydb.setPassword(database_senha);
            
                if(!mydb.open()){
                    qDebug() << "Falha ao conectar ao DataBase" << mydb.lastError().text();
                    return false;
                }
                else{
                    qDebug() << ("Conectado...");
                    return true;
                }
            
            }
            
            1 Reply Last reply
            0
            • SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote on last edited by
              #19

              Do you mean you want to have some sort of splash screen while that library is being loaded ?

              Out of curiosity, why do you need to load it by hand ?

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              1
              • GuapoG Offline
                GuapoG Offline
                Guapo
                wrote on last edited by Guapo
                #20

                This is for restaurant app. Here in Brazil, all restaurants needs a device called SAT, connected to USB and the internet (to send all sales data to our beloved government) :). This device has its own library to create a sale invoice and send all data to government.
                Load by hand is the way used to access the internal functions.
                I don´t know another way to acess internal function from a .dll or .so .
                My intention is open a screen to warning loading, because the user could think software is crashed. This library takes a several seconds to load.

                jsulmJ 1 Reply Last reply
                0
                • GuapoG Guapo

                  This is for restaurant app. Here in Brazil, all restaurants needs a device called SAT, connected to USB and the internet (to send all sales data to our beloved government) :). This device has its own library to create a sale invoice and send all data to government.
                  Load by hand is the way used to access the internal functions.
                  I don´t know another way to acess internal function from a .dll or .so .
                  My intention is open a screen to warning loading, because the user could think software is crashed. This library takes a several seconds to load.

                  jsulmJ Offline
                  jsulmJ Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote on last edited by
                  #21

                  @Guapo said in Qmessagebox showing "Loading....":

                  I don´t know another way to acess internal function from a .dll or .so

                  Usually you link your app against a library to use it.
                  See http://doc.qt.io/qtcreator/creator-project-qmake-libraries.html

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  GuapoG 1 Reply Last reply
                  0
                  • jsulmJ jsulm

                    @Guapo said in Qmessagebox showing "Loading....":

                    I don´t know another way to acess internal function from a .dll or .so

                    Usually you link your app against a library to use it.
                    See http://doc.qt.io/qtcreator/creator-project-qmake-libraries.html

                    GuapoG Offline
                    GuapoG Offline
                    Guapo
                    wrote on last edited by
                    #22

                    @jsulm

                    when I tried to use this library, my first option was
                    at my .pro file

                    LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework

                    But I cannot exec the internal function ( ex: rVerificarComunicacao_SAT_Daruma() ).

                    So, I received from the library owner a file to load it´s library and execute internal functions;

                             bibliotecaDinamica = dlopen("./libDarumaFramework.so", RTLD_NOW); 
                    

                    This is working!

                    Today, I tried to include this line at my .pro file

                    LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework -ldl

                    The library loading is during the aplication load....I can exec the internal function.

                    But this is all inside the Qt Creator....when I tried to exec my aplication from the CL, there is a segmentation fault.
                    I need more information, but this note is only to update you that I´m studying your hint.

                    tks

                    JonBJ 1 Reply Last reply
                    0
                    • GuapoG Guapo

                      @jsulm

                      when I tried to use this library, my first option was
                      at my .pro file

                      LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework

                      But I cannot exec the internal function ( ex: rVerificarComunicacao_SAT_Daruma() ).

                      So, I received from the library owner a file to load it´s library and execute internal functions;

                               bibliotecaDinamica = dlopen("./libDarumaFramework.so", RTLD_NOW); 
                      

                      This is working!

                      Today, I tried to include this line at my .pro file

                      LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework -ldl

                      The library loading is during the aplication load....I can exec the internal function.

                      But this is all inside the Qt Creator....when I tried to exec my aplication from the CL, there is a segmentation fault.
                      I need more information, but this note is only to update you that I´m studying your hint.

                      tks

                      JonBJ Offline
                      JonBJ Offline
                      JonB
                      wrote on last edited by JonB
                      #23

                      @Guapo said in Qmessagebox showing "Loading....":

                               bibliotecaDinamica = dlopen("./libDarumaFramework.so", RTLD_NOW); 
                      

                      But this is all inside the Qt Creator....when I tried to exec my aplication from the CL, there is a segmentation fault.

                      1. You need to check the return result of dlopen, as it may fail? Do you proceed to use bibliotecaDinamica without verifying its value?

                      2. ./libDarumaFramework.so is a relative path; it must be found in the current directory. Is your current directory right for this while running from QtCreator, but something else when run from the command line? (I don't know what dlopen's behaviour is exactly, but you might be better with plain libDarumaFramework.so without the leading ./.) Have you put the library in the same directory as your executable, along LD_LIBRARY_PATH, or what?

                      GuapoG 1 Reply Last reply
                      0
                      • JonBJ JonB

                        @Guapo said in Qmessagebox showing "Loading....":

                                 bibliotecaDinamica = dlopen("./libDarumaFramework.so", RTLD_NOW); 
                        

                        But this is all inside the Qt Creator....when I tried to exec my aplication from the CL, there is a segmentation fault.

                        1. You need to check the return result of dlopen, as it may fail? Do you proceed to use bibliotecaDinamica without verifying its value?

                        2. ./libDarumaFramework.so is a relative path; it must be found in the current directory. Is your current directory right for this while running from QtCreator, but something else when run from the command line? (I don't know what dlopen's behaviour is exactly, but you might be better with plain libDarumaFramework.so without the leading ./.) Have you put the library in the same directory as your executable, along LD_LIBRARY_PATH, or what?

                        GuapoG Offline
                        GuapoG Offline
                        Guapo
                        wrote on last edited by
                        #24

                        @JNBarchan

                        Yes...my library is on the same directory as my executable.

                        int main(int argc, char *argv[])
                        {
                        QApplication a(argc, argv);

                        qDebug()<< "inicio";
                        
                        Login w;
                        
                        w.show();
                        
                        return a.exec();
                        

                        }

                        The segmentation fault occours before "inicio". (only executing in CL at the directory where are all files....this code is ok executing inside the Qt Creator ).

                        jsulmJ 1 Reply Last reply
                        0
                        • GuapoG Guapo

                          @JNBarchan

                          Yes...my library is on the same directory as my executable.

                          int main(int argc, char *argv[])
                          {
                          QApplication a(argc, argv);

                          qDebug()<< "inicio";
                          
                          Login w;
                          
                          w.show();
                          
                          return a.exec();
                          

                          }

                          The segmentation fault occours before "inicio". (only executing in CL at the directory where are all files....this code is ok executing inside the Qt Creator ).

                          jsulmJ Offline
                          jsulmJ Offline
                          jsulm
                          Lifetime Qt Champion
                          wrote on last edited by
                          #25

                          @Guapo If you want to execute your app outside of QtCreator you need to deploy it.
                          See http://doc.qt.io/qt-5/deployment.html

                          https://forum.qt.io/topic/113070/qt-code-of-conduct

                          GuapoG 1 Reply Last reply
                          0
                          • jsulmJ jsulm

                            @Guapo If you want to execute your app outside of QtCreator you need to deploy it.
                            See http://doc.qt.io/qt-5/deployment.html

                            GuapoG Offline
                            GuapoG Offline
                            Guapo
                            wrote on last edited by
                            #26

                            @jsulm

                            I´m trying do execute my aplication only for tests. I´m executing it at the same folder as compiled.

                            When I do not use this line:

                            LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework -ldl

                            It is possible execute it from CL.

                            When I need to make deployment, I´ve used linuxdeployqt script.

                            jsulmJ 1 Reply Last reply
                            0
                            • GuapoG Guapo

                              @jsulm

                              I´m trying do execute my aplication only for tests. I´m executing it at the same folder as compiled.

                              When I do not use this line:

                              LIBS += -L"/mnt/midia4/prj/qt/Controle" -lDarumaFramework -ldl

                              It is possible execute it from CL.

                              When I need to make deployment, I´ve used linuxdeployqt script.

                              jsulmJ Offline
                              jsulmJ Offline
                              jsulm
                              Lifetime Qt Champion
                              wrote on last edited by
                              #27

                              @Guapo You can set LD_LIBRARY_PATH to point to the directory where this lib is and then start your app, see http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html

                              https://forum.qt.io/topic/113070/qt-code-of-conduct

                              GuapoG 1 Reply Last reply
                              0
                              • jsulmJ jsulm

                                @Guapo You can set LD_LIBRARY_PATH to point to the directory where this lib is and then start your app, see http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html

                                GuapoG Offline
                                GuapoG Offline
                                Guapo
                                wrote on last edited by Guapo
                                #28

                                @jsulm excuse me for this delay.

                                I found a performance problem and I need to fix it before.

                                I don´t know if it´s better open a new point to discuss.

                                This code has an answer in 1sec. This exec a function "EnviarDadosVenda" from my external lib.

                                
                                #include <dlfcn.h>
                                #include <stdio.h>
                                #include <stdlib.h>
                                #include <string.h>
                                #include <inttypes.h>
                                #include <time.h>
                                
                                #include "helpers.c"
                                
                                int main(int argc, char *argv[]) 
                                {
                                	char * (*_EnviarDadosVenda) (int, char *, char *);
                                
                                	void * handle;
                                	char * error;
                                	char * resposta;
                                	char cXML[5000];
                                
                                	strcpy(cXML, "this is for XML");
                                
                                	handle = dlopen ("./libsat.so", RTLD_LAZY);
                                
                                	_EnviarDadosVenda = dlsym(handle, "EnviarDadosVenda");
                                
                                    typedef char* (*funcao)(int, char*, char*);
                                    funcao runGui = (funcao)dlsym(handle, "EnviarDadosVenda");
                                
                                    resposta = runGui(_sessao(),"12345678", cXML);  // 1sec to return data
                                
                                	printf("======================================================\n");
                                	printf("\nExecutando funcao: _EnviarDadosVenda2\n");
                                	printf("\nRetorno: %s\n\n", (char *) resposta);
                                	printf("==++==================================================\n");
                                }
                                
                                

                                This function, running in qt, runs the same code in 16 secs. It´s the same function and the same lib.

                                char * EnviarDadosVenda2_libsat(int numerossessao, QString codigoativacao, QString pszXML){
                                    char * resposta;
                                    char cXML[1100];
                                
                                    QDateTime agora=QDateTime::currentDateTime();
                                    char* _EnviarDadosVenda(int , char*, char*);
                                
                                    strcpy(cXML, "My XML data");
                                
                                    void* handle = dlopen("./libsat.so", RTLD_LAZY);
                                
                                    typedef char* (*funcao)(int, char*, char*);
                                    funcao runGui = (funcao)dlsym(handle, "EnviarDadosVenda");
                                
                                    qDebug() << "Vai executar EnviarDadosVenda2_libsat";
                                
                                    resposta = runGui(numerossessao,"12345678", cXML);  // 16 seconds to return data
                                
                                    qDebug() << "saiu EnviarDadosVenda2_libsat " << QDateTime::currentDateTime().toTime_t()-agora.toTime_t();
                                
                                    return resposta;
                                
                                }
                                
                                
                                jsulmJ 1 Reply Last reply
                                0
                                • GuapoG Guapo

                                  @jsulm excuse me for this delay.

                                  I found a performance problem and I need to fix it before.

                                  I don´t know if it´s better open a new point to discuss.

                                  This code has an answer in 1sec. This exec a function "EnviarDadosVenda" from my external lib.

                                  
                                  #include <dlfcn.h>
                                  #include <stdio.h>
                                  #include <stdlib.h>
                                  #include <string.h>
                                  #include <inttypes.h>
                                  #include <time.h>
                                  
                                  #include "helpers.c"
                                  
                                  int main(int argc, char *argv[]) 
                                  {
                                  	char * (*_EnviarDadosVenda) (int, char *, char *);
                                  
                                  	void * handle;
                                  	char * error;
                                  	char * resposta;
                                  	char cXML[5000];
                                  
                                  	strcpy(cXML, "this is for XML");
                                  
                                  	handle = dlopen ("./libsat.so", RTLD_LAZY);
                                  
                                  	_EnviarDadosVenda = dlsym(handle, "EnviarDadosVenda");
                                  
                                      typedef char* (*funcao)(int, char*, char*);
                                      funcao runGui = (funcao)dlsym(handle, "EnviarDadosVenda");
                                  
                                      resposta = runGui(_sessao(),"12345678", cXML);  // 1sec to return data
                                  
                                  	printf("======================================================\n");
                                  	printf("\nExecutando funcao: _EnviarDadosVenda2\n");
                                  	printf("\nRetorno: %s\n\n", (char *) resposta);
                                  	printf("==++==================================================\n");
                                  }
                                  
                                  

                                  This function, running in qt, runs the same code in 16 secs. It´s the same function and the same lib.

                                  char * EnviarDadosVenda2_libsat(int numerossessao, QString codigoativacao, QString pszXML){
                                      char * resposta;
                                      char cXML[1100];
                                  
                                      QDateTime agora=QDateTime::currentDateTime();
                                      char* _EnviarDadosVenda(int , char*, char*);
                                  
                                      strcpy(cXML, "My XML data");
                                  
                                      void* handle = dlopen("./libsat.so", RTLD_LAZY);
                                  
                                      typedef char* (*funcao)(int, char*, char*);
                                      funcao runGui = (funcao)dlsym(handle, "EnviarDadosVenda");
                                  
                                      qDebug() << "Vai executar EnviarDadosVenda2_libsat";
                                  
                                      resposta = runGui(numerossessao,"12345678", cXML);  // 16 seconds to return data
                                  
                                      qDebug() << "saiu EnviarDadosVenda2_libsat " << QDateTime::currentDateTime().toTime_t()-agora.toTime_t();
                                  
                                      return resposta;
                                  
                                  }
                                  
                                  
                                  jsulmJ Offline
                                  jsulmJ Offline
                                  jsulm
                                  Lifetime Qt Champion
                                  wrote on last edited by jsulm
                                  #29

                                  @Guapo Well, I don't know why this difference. Are you sure you pass exactly the same data to EnviarDadosVenda in both cases?
                                  Also you wrote runGui takes 16 seconds to execute, but actually you measure time for copying the data, loading the library and resolving the symbol as well. Loading a library and resolving symbols can take some time, move

                                  QDateTime agora=QDateTime::currentDateTime();
                                  

                                  just before you call runGui.

                                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  GuapoG 1 Reply Last reply
                                  0
                                  • jsulmJ jsulm

                                    @Guapo Well, I don't know why this difference. Are you sure you pass exactly the same data to EnviarDadosVenda in both cases?
                                    Also you wrote runGui takes 16 seconds to execute, but actually you measure time for copying the data, loading the library and resolving the symbol as well. Loading a library and resolving symbols can take some time, move

                                    QDateTime agora=QDateTime::currentDateTime();
                                    

                                    just before you call runGui.

                                    GuapoG Offline
                                    GuapoG Offline
                                    Guapo
                                    wrote on last edited by
                                    #30

                                    @jsulm yes...I´m sure the input data are the same at the both cases.

                                    This xml string has more than 1000 bytes.

                                    I made another test using this same function in a exclusive qt project that contain only this function and this function delay 1sec.

                                    There is something in my project that retards the execution.

                                    jsulmJ 1 Reply Last reply
                                    0
                                    • GuapoG Guapo

                                      @jsulm yes...I´m sure the input data are the same at the both cases.

                                      This xml string has more than 1000 bytes.

                                      I made another test using this same function in a exclusive qt project that contain only this function and this function delay 1sec.

                                      There is something in my project that retards the execution.

                                      jsulmJ Offline
                                      jsulmJ Offline
                                      jsulm
                                      Lifetime Qt Champion
                                      wrote on last edited by
                                      #31

                                      @Guapo But did you change the way you measure the execution time? As I said in the code you posted you're measuring also library loading and symbol resolution.

                                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      GuapoG 1 Reply Last reply
                                      0
                                      • jsulmJ jsulm

                                        @Guapo But did you change the way you measure the execution time? As I said in the code you posted you're measuring also library loading and symbol resolution.

                                        GuapoG Offline
                                        GuapoG Offline
                                        Guapo
                                        wrote on last edited by
                                        #32

                                        @jsulm I found the problem about 16 secs...it´s a bad implementation of EnviarDadosVenda ( external library )....there is a parameter ( random ) and if this number is greater than 999.999, EnviarDadosVenda takes 16 secs to answer...this is out of spec. I contacted the suplier to inform this issue.

                                        1 Reply Last reply
                                        0

                                        • Login

                                        • Login or register to search.
                                        • First post
                                          Last post
                                        0
                                        • Categories
                                        • Recent
                                        • Tags
                                        • Popular
                                        • Users
                                        • Groups
                                        • Search
                                        • Get Qt Extensions
                                        • Unsolved