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. QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread
Forum Updated to NodeBB v4.3 + New Features

QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread

Scheduled Pinned Locked Moved Unsolved General and Desktop
33 Posts 5 Posters 10.9k Views 2 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.
  • R rktech

    I have read that, but I don't know how to fix it. Is it only possible to remove this warning?

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

    @rktech said in QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread:

    Is it only possible to remove this warning?

    You should fix the issue instead of removing the warning!
    Did you check the example @SGaist gave you?

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

    1 Reply Last reply
    1
    • R Offline
      R Offline
      rktech
      wrote on last edited by
      #5

      @jsulm As I have written, I have read it, but I don't know, how to fix my code.

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

        @rktech said in QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread:

        but I don't know, how to fix my code.

        As shown in the example pass the socket fd instead the object to your thread. You have to override incomingConnection() as shown there.

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

        1 Reply Last reply
        2
        • R Offline
          R Offline
          rktech
          wrote on last edited by
          #7

          @Christian-Ehrlicher I have read the example like three-times, but I still don't know how to fix it. Can you help me?

          Christian EhrlicherC 1 Reply Last reply
          0
          • R rktech

            @Christian-Ehrlicher I have read the example like three-times, but I still don't know how to fix it. Can you help me?

            Christian EhrlicherC Online
            Christian EhrlicherC Online
            Christian Ehrlicher
            Lifetime Qt Champion
            wrote on last edited by
            #8

            @rktech said in QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread:

            but I still don't know how to fix it.

            You have to override incomingConnection() as shown there.

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

            1 Reply Last reply
            1
            • R Offline
              R Offline
              rktech
              wrote on last edited by
              #9

              @Christian-Ehrlicher said in QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread:

              @rktech said in QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread:

              but I still don't know how to fix it.

              You have to override incomingConnection() as shown there.

              I have tried, but I don't know how to implement that into my code.

              1 Reply Last reply
              0
              • SGaistS Offline
                SGaistS Offline
                SGaist
                Lifetime Qt Champion
                wrote on last edited by
                #10

                What exactly have you tried ?

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

                R 1 Reply Last reply
                0
                • SGaistS SGaist

                  What exactly have you tried ?

                  R Offline
                  R Offline
                  rktech
                  wrote on last edited by
                  #11

                  @SGaist To add override to my code, but I don't know where should I place it...

                  1 Reply Last reply
                  0
                  • R Offline
                    R Offline
                    rktech
                    wrote on last edited by
                    #12

                    @SGaist How can I send the connection from incomingConnection() to Pool?

                    1 Reply Last reply
                    0
                    • R Offline
                      R Offline
                      rktech
                      wrote on last edited by
                      #13

                      @SGaist I have successfully overrided the incomingconnection(), but I don't know, how to pass it to the Pool.

                      1 Reply Last reply
                      0
                      • SGaistS Offline
                        SGaistS Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on last edited by
                        #14

                        You'll have to redesign your pool a bit to ensure that your sockets are created in the context of the run method of your QThread subclass.

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

                        R 1 Reply Last reply
                        0
                        • SGaistS SGaist

                          You'll have to redesign your pool a bit to ensure that your sockets are created in the context of the run method of your QThread subclass.

                          R Offline
                          R Offline
                          rktech
                          wrote on last edited by
                          #15

                          @SGaist I know, but how?

                          1 Reply Last reply
                          0
                          • SGaistS Offline
                            SGaistS Offline
                            SGaist
                            Lifetime Qt Champion
                            wrote on last edited by
                            #16

                            You have to transfer the descriptor to your pool and there in your run method create new sockets when descriptors are added.

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

                            R 2 Replies Last reply
                            0
                            • SGaistS SGaist

                              You have to transfer the descriptor to your pool and there in your run method create new sockets when descriptors are added.

                              R Offline
                              R Offline
                              rktech
                              wrote on last edited by
                              #17

                              @SGaist Should I add this part of code to my Pool::add() method? (Of course with editing it)

                              QTcpSocket tcpSocket;
                              
                                  if (!tcpSocket.setSocketDescriptor(socketDescriptor)) {
                                      emit error(tcpSocket.error());
                                      return;
                                  }
                              
                              1 Reply Last reply
                              0
                              • SGaistS SGaist

                                You have to transfer the descriptor to your pool and there in your run method create new sockets when descriptors are added.

                                R Offline
                                R Offline
                                rktech
                                wrote on last edited by
                                #18

                                @SGaist I have (probably) successfully rewritten the Pool add method, but I have another problem. When I add this:

                                protected:
                                    void incomingConnection(qintptr socketDescriptor) override;
                                

                                to myserver.h I get this error:

                                ...\myserver.h:35: Chyba: only virtual member functions can be marked 'override'
                                

                                (Chyba is Error in my local)
                                What I am doing wrong?

                                mrjjM 1 Reply Last reply
                                0
                                • R rktech

                                  @SGaist I have (probably) successfully rewritten the Pool add method, but I have another problem. When I add this:

                                  protected:
                                      void incomingConnection(qintptr socketDescriptor) override;
                                  

                                  to myserver.h I get this error:

                                  ...\myserver.h:35: Chyba: only virtual member functions can be marked 'override'
                                  

                                  (Chyba is Error in my local)
                                  What I am doing wrong?

                                  mrjjM Offline
                                  mrjjM Offline
                                  mrjj
                                  Lifetime Qt Champion
                                  wrote on last edited by mrjj
                                  #19

                                  Hi
                                  well it is virtual https://doc.qt.io/qt-5/qtcpserver.html#incomingConnection
                                  so does Pool inherit QTcpServer ?
                                  The error you get says "Hey, i dont see that funtion in base class, so you cant use override"

                                  R 2 Replies Last reply
                                  0
                                  • mrjjM mrjj

                                    Hi
                                    well it is virtual https://doc.qt.io/qt-5/qtcpserver.html#incomingConnection
                                    so does Pool inherit QTcpServer ?
                                    The error you get says "Hey, i dont see that funtion in base class, so you cant use override"

                                    R Offline
                                    R Offline
                                    rktech
                                    wrote on last edited by
                                    #20

                                    @mrjj No, the server is build under the myserver class

                                    R 1 Reply Last reply
                                    0
                                    • R rktech

                                      @mrjj No, the server is build under the myserver class

                                      R Offline
                                      R Offline
                                      rktech
                                      wrote on last edited by
                                      #21
                                      This post is deleted!
                                      1 Reply Last reply
                                      0
                                      • mrjjM mrjj

                                        Hi
                                        well it is virtual https://doc.qt.io/qt-5/qtcpserver.html#incomingConnection
                                        so does Pool inherit QTcpServer ?
                                        The error you get says "Hey, i dont see that funtion in base class, so you cant use override"

                                        R Offline
                                        R Offline
                                        rktech
                                        wrote on last edited by
                                        #22

                                        @mrjj the header of server look like:

                                        #ifndef MYSERVER_H
                                        #define MYSERVER_H
                                        
                                        #include <QObject>
                                        #include <QDebug>
                                        #include <QTcpServer>
                                        #include <QTcpSocket>
                                        #include <QString>
                                        #include <QFile>
                                        #include <QStandardPaths>
                                        #include <QThread>
                                        #include <QElapsedTimer>
                                        #include <pool.h>
                                        #include <QDateTime>
                                        class MyServer : public QObject
                                        {
                                            Q_OBJECT
                                        public:
                                            explicit MyServer(QObject *parent = nullptr);
                                        
                                        signals:
                                        
                                        public slots:
                                            void newConnection();
                                            void onReadyRead();
                                        
                                        private:
                                            QTcpServer *server;
                                            QList<QTcpSocket*>  _sockets;
                                            QString a;
                                            QString com;
                                            QTcpSocket *socket;
                                            QList<QTcpSocket*> sl;
                                        /*protected:
                                            void incomingConnection(qintptr socketDescriptor) override;*/
                                        };
                                        
                                        #endif // MYSERVER_H
                                        
                                        
                                        1 Reply Last reply
                                        0
                                        • Christian EhrlicherC Online
                                          Christian EhrlicherC Online
                                          Christian Ehrlicher
                                          Lifetime Qt Champion
                                          wrote on last edited by
                                          #23

                                          Sorry but please learn C++ first. If you want to override a function from a class you should inherit from this class. So inherit from QTcpServer, override the function and do whatever you want to. This is basic c++ stuff...

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

                                          R 2 Replies Last reply
                                          1

                                          • Login

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