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. QTcpSocket, execution halts why and what does it mean?
Forum Updated to NodeBB v4.3 + New Features

QTcpSocket, execution halts why and what does it mean?

Scheduled Pinned Locked Moved Unsolved General and Desktop
23 Posts 5 Posters 2.7k 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.
  • SPlattenS SPlatten

    @KroMignon , the examples I've found on QThread do not include how to NOT block the event loop, so an example on what to do in the thread so it doesn't block the event loop.

    I've just added:

            QCoreApplication::processEvents();
    

    To the thread loops, is this enough?

    Pl45m4P Offline
    Pl45m4P Offline
    Pl45m4
    wrote on last edited by Pl45m4
    #13

    @SPlatten said in QTcpSocket, execution halts why and what does it mean?:

    the examples I've found on QThread do not include how to NOT block the event loop

    Here, this wont block:

    • https://www.bogotobogo.com/Qt/Qt5_QTcpSocket.php (your 2nd linked example)

    This guy (https://stackoverflow.com/questions/37167927/proper-way-to-run-managable-background-thread-with-qthread) has made a similar mistake.
    You want to connect once and then let the event loop and your signals do the rest.


    If debugging is the process of removing software bugs, then programming must be the process of putting them in.

    ~E. W. Dijkstra

    1 Reply Last reply
    1
    • Christian EhrlicherC Online
      Christian EhrlicherC Online
      Christian Ehrlicher
      Lifetime Qt Champion
      wrote on last edited by
      #14

      Funny - this discussion was already done more than 3 months ago already: https://forum.qt.io/topic/120700/receiving-data-from-qtcpsocket/30

      Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
      Visit the Qt Academy at https://academy.qt.io/catalog

      SPlattenS 1 Reply Last reply
      2
      • Christian EhrlicherC Christian Ehrlicher

        Funny - this discussion was already done more than 3 months ago already: https://forum.qt.io/topic/120700/receiving-data-from-qtcpsocket/30

        SPlattenS Offline
        SPlattenS Offline
        SPlatten
        wrote on last edited by
        #15

        @Christian-Ehrlicher , is it any surprise I'm confused, in that thread you pointed me to the Fortune client and server examples, which I have been following then there is conflicting advice that comes back form this forum when I implement a solution that I'm having problems with.

        Add to this the what appears to be flaky Qt Creator with updates that seem to send me backwards. I feel I'm loosing the plot.

        Kind Regards,
        Sy

        1 Reply Last reply
        0
        • Christian EhrlicherC Online
          Christian EhrlicherC Online
          Christian Ehrlicher
          Lifetime Qt Champion
          wrote on last edited by
          #16

          The old thread told you to use signals and slots and not the waitFor functions and now we're at the exactly same place.

          Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
          Visit the Qt Academy at https://academy.qt.io/catalog

          SPlattenS 2 Replies Last reply
          0
          • Christian EhrlicherC Christian Ehrlicher

            The old thread told you to use signals and slots and not the waitFor functions and now we're at the exactly same place.

            SPlattenS Offline
            SPlattenS Offline
            SPlatten
            wrote on last edited by SPlatten
            #17

            @Christian-Ehrlicher , well obviously I have mental memory issues.

            Kind Regards,
            Sy

            1 Reply Last reply
            0
            • Christian EhrlicherC Christian Ehrlicher

              The old thread told you to use signals and slots and not the waitFor functions and now we're at the exactly same place.

              SPlattenS Offline
              SPlattenS Offline
              SPlatten
              wrote on last edited by
              #18

              @Christian-Ehrlicher , the examples that ship with Qt 5.15.2 include:

              blockingfortuneclient
              threadedfortuneserver

              On looking at both, these are the sources I used to base my work on. My server is slightly different in that the clients are intended to stay connected after establishing a connection.

              I will compare the client source with my own.

              Kind Regards,
              Sy

              1 Reply Last reply
              0
              • Christian EhrlicherC Online
                Christian EhrlicherC Online
                Christian Ehrlicher
                Lifetime Qt Champion
                wrote on last edited by
                #19

                From my pov you don't need threads at all but this is not what you want to hear for whatever reason - you rather work on simple stuff like a QTcpSocket for months.

                Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                Visit the Qt Academy at https://academy.qt.io/catalog

                SPlattenS 1 Reply Last reply
                0
                • Christian EhrlicherC Christian Ehrlicher

                  From my pov you don't need threads at all but this is not what you want to hear for whatever reason - you rather work on simple stuff like a QTcpSocket for months.

                  SPlattenS Offline
                  SPlattenS Offline
                  SPlatten
                  wrote on last edited by
                  #20

                  @Christian-Ehrlicher , one day I will be ready to share what I'm working on, which isn't now.

                  Kind Regards,
                  Sy

                  KroMignonK 1 Reply Last reply
                  0
                  • SPlattenS SPlatten

                    @Christian-Ehrlicher , one day I will be ready to share what I'm working on, which isn't now.

                    KroMignonK Offline
                    KroMignonK Offline
                    KroMignon
                    wrote on last edited by
                    #21

                    @SPlatten said in QTcpSocket, execution halts why and what does it mean?:

                    one day I will be ready to share what I'm working on, which isn't now.

                    This sentence sounds strange to me.

                    I think you misunderstanding some comments/replies you received here.
                    My personal goal is to help other developers to solve problem they have will creating software with Qt, like I received help from other to solve/understand errors in my software.

                    On the other side, this also helps me to get a better overview of Qt Framework and continue to learn.

                    It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                    SPlattenS Pl45m4P 2 Replies Last reply
                    1
                    • KroMignonK KroMignon

                      @SPlatten said in QTcpSocket, execution halts why and what does it mean?:

                      one day I will be ready to share what I'm working on, which isn't now.

                      This sentence sounds strange to me.

                      I think you misunderstanding some comments/replies you received here.
                      My personal goal is to help other developers to solve problem they have will creating software with Qt, like I received help from other to solve/understand errors in my software.

                      On the other side, this also helps me to get a better overview of Qt Framework and continue to learn.

                      SPlattenS Offline
                      SPlattenS Offline
                      SPlatten
                      wrote on last edited by
                      #22

                      @KroMignon , sorry, some of the comments, not yours I find a little offensive.

                      Kind Regards,
                      Sy

                      1 Reply Last reply
                      0
                      • KroMignonK KroMignon

                        @SPlatten said in QTcpSocket, execution halts why and what does it mean?:

                        one day I will be ready to share what I'm working on, which isn't now.

                        This sentence sounds strange to me.

                        I think you misunderstanding some comments/replies you received here.
                        My personal goal is to help other developers to solve problem they have will creating software with Qt, like I received help from other to solve/understand errors in my software.

                        On the other side, this also helps me to get a better overview of Qt Framework and continue to learn.

                        Pl45m4P Offline
                        Pl45m4P Offline
                        Pl45m4
                        wrote on last edited by
                        #23

                        @KroMignon said in QTcpSocket, execution halts why and what does it mean?:

                        My personal goal is to help other developers to solve problem they have will creating software with Qt, like I received help from other to solve/understand errors in my software.
                        On the other side, this also helps me to get a better overview of Qt Framework and continue to learn.

                        This is exactly why I'm here :D


                        If debugging is the process of removing software bugs, then programming must be the process of putting them in.

                        ~E. W. Dijkstra

                        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