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. QModbusTcpClient use RAM more and more.
Qt 6.11 is out! See what's new in the release blog

QModbusTcpClient use RAM more and more.

Scheduled Pinned Locked Moved Unsolved General and Desktop
20 Posts 7 Posters 4.8k 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.
  • KroMignonK KroMignon

    @Lari said in QModbusTcpClient use RAM more and more.:

    Could you explain that a little bit more?

    Suggestion would be to do this:

    • change readReady() to readReady(QModbusReply * reply)
    • change writeFinished() to writeFinished(QModbusReply * reply)
    • change connect statement as follow
    // in read()
    connect(reply, &QModbusReply::finished, this, [reply, this]() {
            readReady(reply);
        });
    
    // in write()
    connect(reply, &QModbusReply::finished, this, [reply, this]() {
            writeFinished(reply);
        });
    
    
    L Offline
    L Offline
    Lari
    wrote on last edited by
    #9

    @KroMignon , thank you.

    I tested your decision, but it didn't help. Memory leaks away.
    but if you disconnect from the server, then this memory is deleted.

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

      Hi,

      Are you properly deleting the replies you get ?

      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
      0
      • L Lari

        @KroMignon , thank you.

        I tested your decision, but it didn't help. Memory leaks away.
        but if you disconnect from the server, then this memory is deleted.

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

        @Lari said in QModbusTcpClient use RAM more and more.:

        but if you disconnect from the server, then this memory is deleted.

        This is strange.
        It's look like you do not delete the replies, and they are cleaned-up with parent destruction.

        In your code, you are using deleteLater(), you could add traces (with qDebug()) to ensure those lines are executed.

        deleteLater() will delay the deletion on next enter in thread event loop.
        As you signals/slots seems to work, this should also work.

        I have no explanation :(

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

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

          See https://bugreports.qt.io/browse/QTBUG-92072

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

          L 1 Reply Last reply
          3
          • Christian EhrlicherC Christian Ehrlicher

            See https://bugreports.qt.io/browse/QTBUG-92072

            L Offline
            L Offline
            Lari
            wrote on last edited by Lari
            #13

            I modified the Qt example (\serialbus\modbus\master) a little to organize a continuous exchange with a frequency of 250ms. I read 10 holding registers and see a leak from 5-7 minutes and it grows. I changed only these two functions.

            void MainWindow::onReadReady(QModbusReply * reply)
            {
               //auto reply = qobject_cast<QModbusReply *>(sender());
                if (!reply)
                    return;
            
                if (reply->error() == QModbusDevice::NoError) 
            	{
                    ;
            		
            //        const QModbusDataUnit unit = reply->result();
            //        for (int i = 0, total = int(unit.valueCount()); i < total; ++i) {
            //            const QString entry = tr("Address: %1, Value: %2").arg(unit.startAddress() + i)
            //                                     .arg(QString::number(unit.value(i),
            //                                          unit.registerType() <= QModbusDataUnit::Coils ? 10 : 16));
            //            ui->readValue->addItem(entry);
            //        }
                } 
            	else if (reply->error() == QModbusDevice::ProtocolError) 
            	{
                    statusBar()->showMessage(tr("Read response error: %1 (Mobus exception: 0x%2)").
                                                arg(reply->errorString()).
                                                arg(reply->rawResult().exceptionCode(), -1, 16), 5000);
                } else 
            	{
                    statusBar()->showMessage(tr("Read response error: %1 (code: 0x%2)").
                                                arg(reply->errorString()).
                                                arg(reply->error(), -1, 16), 5000);
                }
            
                reply->deleteLater();
            }
            
             void MainWindow::onReadButtonClicked()
            {
                if (!modbusDevice)
                    return;
                ui->readValue->clear();
                statusBar()->clearMessage();
            
                mStart = (!mStart) ? true : false;
                if (mStart)
                    ui->readButton->setText("Stop read");
                else
                    ui->readButton->setText("Read");
            		
            		
                while (mStart)
                {
                    if (auto *reply = modbusDevice->sendReadRequest(readRequest(), ui->serverEdit->value())) {
                    if (!reply->isFinished())
                    {
                        QObject::connect(reply, &QModbusReply::finished, this, [reply, this]() {
                              onReadReady(reply);
                        });
                    }
                    else
                        delete reply; // broadcast replies return immediately
                    } 
            		else 
            		{
            			statusBar()->showMessage(tr("Read error: ") + modbusDevice->errorString(), 5000);
                    }
                    for (int i=0; i<25; i++)  // I do this to organize a delay of 250 ms
                    {
                        QThread::msleep(10);
                        QCoreApplication::processEvents();
                    }
                }
                return;
            }
            

            This simple use case shows a leak in both Windows and Linux after 5-7 minutes. And it grows constantly. Checked by the 2 days of work of the example.

            Christian EhrlicherC 1 Reply Last reply
            0
            • L Lari

              I modified the Qt example (\serialbus\modbus\master) a little to organize a continuous exchange with a frequency of 250ms. I read 10 holding registers and see a leak from 5-7 minutes and it grows. I changed only these two functions.

              void MainWindow::onReadReady(QModbusReply * reply)
              {
                 //auto reply = qobject_cast<QModbusReply *>(sender());
                  if (!reply)
                      return;
              
                  if (reply->error() == QModbusDevice::NoError) 
              	{
                      ;
              		
              //        const QModbusDataUnit unit = reply->result();
              //        for (int i = 0, total = int(unit.valueCount()); i < total; ++i) {
              //            const QString entry = tr("Address: %1, Value: %2").arg(unit.startAddress() + i)
              //                                     .arg(QString::number(unit.value(i),
              //                                          unit.registerType() <= QModbusDataUnit::Coils ? 10 : 16));
              //            ui->readValue->addItem(entry);
              //        }
                  } 
              	else if (reply->error() == QModbusDevice::ProtocolError) 
              	{
                      statusBar()->showMessage(tr("Read response error: %1 (Mobus exception: 0x%2)").
                                                  arg(reply->errorString()).
                                                  arg(reply->rawResult().exceptionCode(), -1, 16), 5000);
                  } else 
              	{
                      statusBar()->showMessage(tr("Read response error: %1 (code: 0x%2)").
                                                  arg(reply->errorString()).
                                                  arg(reply->error(), -1, 16), 5000);
                  }
              
                  reply->deleteLater();
              }
              
               void MainWindow::onReadButtonClicked()
              {
                  if (!modbusDevice)
                      return;
                  ui->readValue->clear();
                  statusBar()->clearMessage();
              
                  mStart = (!mStart) ? true : false;
                  if (mStart)
                      ui->readButton->setText("Stop read");
                  else
                      ui->readButton->setText("Read");
              		
              		
                  while (mStart)
                  {
                      if (auto *reply = modbusDevice->sendReadRequest(readRequest(), ui->serverEdit->value())) {
                      if (!reply->isFinished())
                      {
                          QObject::connect(reply, &QModbusReply::finished, this, [reply, this]() {
                                onReadReady(reply);
                          });
                      }
                      else
                          delete reply; // broadcast replies return immediately
                      } 
              		else 
              		{
              			statusBar()->showMessage(tr("Read error: ") + modbusDevice->errorString(), 5000);
                      }
                      for (int i=0; i<25; i++)  // I do this to organize a delay of 250 ms
                      {
                          QThread::msleep(10);
                          QCoreApplication::processEvents();
                      }
                  }
                  return;
              }
              

              This simple use case shows a leak in both Windows and Linux after 5-7 minutes. And it grows constantly. Checked by the 2 days of work of the example.

              Christian EhrlicherC Offline
              Christian EhrlicherC Offline
              Christian Ehrlicher
              Lifetime Qt Champion
              wrote on last edited by
              #14

              @Lari The bug was already confirmed - see my link.

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

              L 1 Reply Last reply
              0
              • Christian EhrlicherC Christian Ehrlicher

                @Lari The bug was already confirmed - see my link.

                L Offline
                L Offline
                Lari
                wrote on last edited by Lari
                #15

                @Christian-Ehrlicher said in QModbusTcpClient use RAM more and more.:

                he bug was already confirmed - see my link.

                Christian-Ehrlicher,
                Thank you. I created this bug in bugreports. But Qt answers for a long time, and I am in uncertainty - what am I doing wrong? and how to make the QModbusClient object work correctly?

                Christian EhrlicherC 1 Reply Last reply
                0
                • L Lari

                  @Christian-Ehrlicher said in QModbusTcpClient use RAM more and more.:

                  he bug was already confirmed - see my link.

                  Christian-Ehrlicher,
                  Thank you. I created this bug in bugreports. But Qt answers for a long time, and I am in uncertainty - what am I doing wrong? and how to make the QModbusClient object work correctly?

                  Christian EhrlicherC Offline
                  Christian EhrlicherC Offline
                  Christian Ehrlicher
                  Lifetime Qt Champion
                  wrote on last edited by
                  #16

                  @Lari Either fix the code by yourself or find someone who does for you.

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

                  L 1 Reply Last reply
                  0
                  • Christian EhrlicherC Christian Ehrlicher

                    @Lari Either fix the code by yourself or find someone who does for you.

                    L Offline
                    L Offline
                    Lari
                    wrote on last edited by
                    #17

                    @Christian-Ehrlicher,
                    ok. thank you.

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

                      Since it seems to work with 5.14 (at least it looks like in the bug report) I would start checking what changed between 5.14 and 5.15 for this module/class.

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

                      L 1 Reply Last reply
                      1
                      • Christian EhrlicherC Christian Ehrlicher

                        Since it seems to work with 5.14 (at least it looks like in the bug report) I would start checking what changed between 5.14 and 5.15 for this module/class.

                        L Offline
                        L Offline
                        Lari
                        wrote on last edited by
                        #19

                        @Christian-Ehrlicher said in QModbusTcpClient use RAM more and more.:

                        Since it seems to work with 5.14 (at least it looks like in the bug report) I would start checking what changed between 5.14 and 5.15 for this module/class.

                        Christian-Ehrlicher,
                        Thank you for help.

                        L 1 Reply Last reply
                        0
                        • L Lari

                          @Christian-Ehrlicher said in QModbusTcpClient use RAM more and more.:

                          Since it seems to work with 5.14 (at least it looks like in the bug report) I would start checking what changed between 5.14 and 5.15 for this module/class.

                          Christian-Ehrlicher,
                          Thank you for help.

                          L Offline
                          L Offline
                          Lari
                          wrote on last edited by
                          #20

                          5.13 and 5.12 version - there is no memory leak in this module. 5.14 - already has memory leak.

                          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