Results 1 to 8 of 8

Thread: QUdpSocket with threads

  1. #1
    Join Date
    Feb 2012
    Location
    Armenia/Yerevan
    Posts
    400
    Thanks
    15
    Thanked 16 Times in 15 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11

    Default QUdpSocket with threads

    I have a class QUdpSocket which reads data packets from the socket and emits them to another object other than MainWindow. I initialize the construction of this QUdpSocket inside MainWindow and connect its signals.

    Today I noticed reading packets from the socket makes ui interaction slow. I think this is because the socket object is defined inside MainWindow implementation and is one of the tasks of MainWindow which takes CPU cycle to itself and releases. To remedy this problem, I thought of defining a QThread and run this thread inside MainWindow.
    I believe running the QThread inside MainWindow would not slow down the UI anymore, as the Thread executes kinda like the way a child process initiates and departs from its parent. I hope what I thought of so far is correct.

    Next, I have one ambiguity about the inner implementation of QThread Socket. I need to initialize the port and connect the signals in the constructor of course. For the main task which is reading buffer when they become available on the socket, should the main code like "if there is a packet then read, otherwise continue" be implemented in the thread run function? is yes, is it called in regularly in a loop? or it will only execute when the readyRead() signal is triggered?

    I would thank if someone could explain this to me with a code template.

    Cheers,

  2. #2
    Join Date
    Jan 2006
    Location
    Graz, Austria
    Posts
    8,416
    Thanks
    37
    Thanked 1,544 Times in 1,494 Posts
    Qt products
    Qt3 Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: QUdpSocket with threads

    Are you sure that the reading makes it slow, not the processing of the data? I.e. have you tried without processing the read data?

    Cheers,
    _

  3. #3
    Join Date
    Feb 2012
    Location
    Armenia/Yerevan
    Posts
    400
    Thanks
    15
    Thanked 16 Times in 15 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11

    Default Re: QUdpSocket with threads

    Quote Originally Posted by anda_skoa View Post
    Are you sure that the reading makes it slow, not the processing of the data? I.e. have you tried without processing the read data?

    Cheers,
    _
    I tested the executable without processing the read data. it is fast:
    Qt Code:
    1. while(sum > 0)
    2. {
    3. QByteArray datagram;
    4.  
    5. if(udpsocket->pendingDatagramSize() == -1){
    6. // usleep(1000);
    7. continue;
    8. }
    9. datagram.resize(udpsocket->pendingDatagramSize());
    10. //qDebug() << "udp:" << udpsocket->pendingDatagramSize();
    11. udpsocket->readDatagram(datagram.data(), datagram.size(), host, &myPort);
    12.  
    13. sumPacket.append(datagram);
    14.  
    15. sum -= datagram.size();
    16.  
    17. qDebug() << loop;
    18. loop++;
    19. }
    20. if(sum == 0)
    21. emit dataReceivedClientImage(sumPacket);
    To copy to clipboard, switch view to plain text mode 

    However, when it processes the data, it falls behind. That's why in socket read, I cannot read whole packets at one (8 packets), it reads for example 3 packets, pauses a bit and continues receiving the rest. This processing of data is inside the glWidget class:

    Qt Code:
    1. void GlWidget::createTextureFromBitmap(QByteArray btmp)
    2. {
    3. bytes.clear();
    4. bytes.resize(size * 3 * sizeof(unsigned char));
    5.  
    6. for(int i = 0, j = 0; i < size*3, j < size; i += 3, j++)
    7. {
    8. bytes[i] = pixelColors[btmp[j]].r;
    9. bytes[i+1] = pixelColors[btmp[j]].g;
    10. bytes[i+2] = pixelColors[btmp[j]].b;
    11. }
    12. updateGL();
    13. qDebug() << "updated..";
    To copy to clipboard, switch view to plain text mode 

    I need to set rgb values according to the color table and then call updateGL() to render to the screen.
    You know, I cannot think of any solution using threads as well, because if even a thread puts the burden of doing the for processing loop on its shoulders, It finally needs to signal glWidget again to call updateGL(), and as far as either of these processings (for loop or updateGL()) slows down the system, a thread might be of no use!

    what do you suggest?

  4. #4
    Join Date
    Feb 2012
    Location
    Armenia/Yerevan
    Posts
    400
    Thanks
    15
    Thanked 16 Times in 15 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11

    Default Re: QUdpSocket with threads

    anyone has any idea?
    Last edited by saman_artorious; 25th November 2013 at 17:49.

  5. #5
    Join Date
    Jan 2006
    Location
    Graz, Austria
    Posts
    8,416
    Thanks
    37
    Thanked 1,544 Times in 1,494 Posts
    Qt products
    Qt3 Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: QUdpSocket with threads

    Quote Originally Posted by saman_artorious View Post
    anyone has any idea?
    I was about to look into this, but no.
    Do you think people sit around, bored, just waiting for someone with a question who can't be bother to wait for a couple of hours?

    Cheers,
    _

    P.S.: busy looping is bad, main thread or other doesn't matter. Make have a look at a tutorial on signals/slots.

  6. #6
    Join Date
    Feb 2012
    Location
    Armenia/Yerevan
    Posts
    400
    Thanks
    15
    Thanked 16 Times in 15 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11

    Default Re: QUdpSocket with threads

    Quote Originally Posted by anda_skoa View Post
    I was about to look into this, but no.
    Do you think people sit around, bored, just waiting for someone with a question who can't be bother to wait for a couple of hours?

    Cheers,
    _

    P.S.: busy looping is bad, main thread or other doesn't matter. Make have a look at a tutorial on signals/slots.
    well, it's ok, your wish. Though this is a misunderstanding. The post left behind in the list, I added a post to put it at the top of the list.
    Cheers,

  7. #7
    Join Date
    Feb 2012
    Location
    Armenia/Yerevan
    Posts
    400
    Thanks
    15
    Thanked 16 Times in 15 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11

    Default Re: QUdpSocket with threads

    P.S.: busy looping is bad, main thread or other doesn't matter. Make have a look at a tutorial on signals/slots.
    as I think, the problem does not come from the processing and rendering to the screen. Although it is costly and its effects on the loop is visible (cannot read packet from socket at once and quickly, reads a few, pauses, then continues with the remaining), is there a way to tell the loop to try reading from the socket at some other time so that the main thread wouldn't get stuck in the loop continue / sleep instruction?

  8. #8
    Join Date
    Mar 2009
    Location
    Brisbane, Australia
    Posts
    7,729
    Thanks
    13
    Thanked 1,610 Times in 1,537 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows
    Wiki edits
    17

    Default Re: QUdpSocket with threads

    The UI can only function smoothly when it reaches the event loop often. By waiting in a loop for some unspecified number of UDP packets/bytes to arrive you have tied your UI thread to the speed and regularity of network reception. You should buffer all the available UDP packets in a slot attached to readyRead(), if there is sufficient data in the buffer process and remove the data (leaving any excess), and return to the event loop (exit the slot) immediately.

    Your design implies that a single processable chunk of data is more than one UDP packet, perhaps because it is bigger than the largest possible UDP datagram. If that is not the case you have overcomplicated things.

    BTW: Your current design will only process the data if sum goes to zero exactly but you can exit the loop with a negative sum.

Similar Threads

  1. qudpsocket and localhost
    By ih8veggies in forum Newbie
    Replies: 1
    Last Post: 18th February 2011, 13:54
  2. Qt Threads vs Native Threads performance
    By StackOverflow in forum Qt Programming
    Replies: 1
    Last Post: 14th November 2010, 12:14
  3. QUdpSocket and bytesAvailable
    By babu198649 in forum Newbie
    Replies: 0
    Last Post: 10th December 2008, 10:49
  4. UDP - QUdpSocket
    By denwelzie in forum Qt Programming
    Replies: 7
    Last Post: 29th April 2008, 09:02
  5. QUdpSocket and ShareAddress
    By mdecandia in forum Qt Programming
    Replies: 5
    Last Post: 26th March 2007, 17:06

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.