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. Dealing with UDP streamed data - saving
Forum Updated to NodeBB v4.3 + New Features

Dealing with UDP streamed data - saving

Scheduled Pinned Locked Moved Unsolved General and Desktop
15 Posts 2 Posters 909 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 Offline
    R Offline
    RobbieP
    wrote on last edited by
    #5

    one row per block of data probably...so if it were csv an example would be:
    timestamp,elapsed,airspeed,120.345,altitude,6700.304,pitch,15.13,roll,1.223,yaw,0.121

    the data comes in like this:

    #define SP_PACKET_SIZE 200
    #define NAME_SIZE 64
        struct SP_PacketStruct
        {
            int Size;                               ///< Number of items in the data packet
            char Name[SP_PACKET_SIZE][NAME_SIZE];   ///< Data labels
            double Value[SP_PACKET_SIZE];           ///< Data packet values
        };
    
    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #6

      Then I would benchmark the insertion speed and maybe offload the storage to a secondary thread.

      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

        Then I would benchmark the insertion speed and maybe offload the storage to a secondary thread.

        R Offline
        R Offline
        RobbieP
        wrote on last edited by
        #7

        @SGaist That makes sense. What I'm curious about is the storage method though...I've been looking for the best option...is SqlIte what you would recommend? When you say benchmark, are you referring to buffering? I'll be in control of the send rate...it varies for each project. The highest rate we've ever dealt with is 125hz.

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

          No, to benchmark is to measure performance.

          Depending on the volume of data you expect to get a full database system like PostgreSQL might be better.

          Note that a NoSQL database might also be of interest.

          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
          • R Offline
            R Offline
            RobbieP
            wrote on last edited by
            #9

            I have experience with mysql...do you think sqlite would be a bad choice?

            1 Reply Last reply
            0
            • R Offline
              R Offline
              RobbieP
              wrote on last edited by
              #10

              I ask because I'm not really sure I even need a database...most of our previous data has all been just dumped to csv files that our statisticians can then import into matlab for analysis.

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

                Hence the benchmarking :-)

                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
                • R Offline
                  R Offline
                  RobbieP
                  wrote on last edited by
                  #12

                  Gotcha...I'm honestly leaning more towards just buffering to memory with periodic text file writing...

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

                    If the amount of data is reasonable and the file writing speed is as well, that is a valid option. Don't forget the final dump when you close the application otherwise you might lose data.

                    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
                    • R Offline
                      R Offline
                      RobbieP
                      wrote on last edited by
                      #14

                      yup. Before I start diving into this then, do you know of any good examples of buffered text file writing? Thanks for the discussion!

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

                        Using QTextStream with QFile would be a good start.
                        Start simple, check speed and if not enough, rework that part.

                        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

                        • Login

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