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. How do I properly serialize and deserialize a QList class in QT using QDatastream?
Forum Updated to NodeBB v4.3 + New Features

How do I properly serialize and deserialize a QList class in QT using QDatastream?

Scheduled Pinned Locked Moved Solved General and Desktop
29 Posts 5 Posters 7.0k 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.
  • VRoninV VRonin

    Looks like you are deserialising on a const method. What is the code around that call?

    T Offline
    T Offline
    twodee
    wrote on last edited by
    #9
    This post is deleted!
    1 Reply Last reply
    0
    • VRoninV VRonin

      Looks like you are deserialising on a const method. What is the code around that call?

      T Offline
      T Offline
      twodee
      wrote on last edited by
      #10

      @VRonin I figured the serialization out, now I have to do something like out << *layer; to get it serialized. But how will that allow me to serialize a QList<Layer*> to be serialized as a whole?

      JonBJ 1 Reply Last reply
      0
      • T twodee

        @VRonin I figured the serialization out, now I have to do something like out << *layer; to get it serialized. But how will that allow me to serialize a QList<Layer*> to be serialized as a whole?

        JonBJ Offline
        JonBJ Offline
        JonB
        wrote on last edited by JonB
        #11

        @twodee
        Read through threadin this forum https://forum.qt.io/topic/58701/how-to-serialize-deserialize-a-qlist-myclass

        As per http://doc.qt.io/qt-5/datastreamformat.html, QList<T> can be de/serialized. You need to provide the de/serialization for your class T, which is what you have been working on here.

        1 Reply Last reply
        0
        • T Offline
          T Offline
          twodee
          wrote on last edited by
          #12
          This post is deleted!
          1 Reply Last reply
          0
          • T Offline
            T Offline
            twodee
            wrote on last edited by twodee
            #13

            As the post said it's about one line with the operator new, could you tell me what that line is?

             QList<Layer*> layers = paintWidget->getItems(); 
            out << layers;
            

            This doesn't seem to do the trick. I have been scratching my head for too long, sorry if I am being stupid.

            Also for some reason overloading QDataStream& operator<<(QDataStream& ds, const Layer *layer) doesn't work anymore, which did work earlier.

            1 Reply Last reply
            0
            • VRoninV Offline
              VRoninV Offline
              VRonin
              wrote on last edited by VRonin
              #14
              out << qint32(layers.size());
              for(Layer* layer : qAsConst(layers))
              out << qint32(layer->type()) << *layer;
              

              qint32 size;
              qint32 type;
              in >> size;
              while(size-- >0 ){
              in >> type;
              Layer* layer = nullptr;
              switch(type){
              case Raster:
              layer = new RasterLayer;
              break;
              default:
              Q_UNREACHABLE();
              }
              in >> *layer;
              }

              "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
              ~Napoleon Bonaparte

              On a crusade to banish setIndexWidget() from the holy land of Qt

              JonBJ T 2 Replies Last reply
              0
              • VRoninV VRonin
                out << qint32(layers.size());
                for(Layer* layer : qAsConst(layers))
                out << qint32(layer->type()) << *layer;
                

                qint32 size;
                qint32 type;
                in >> size;
                while(size-- >0 ){
                in >> type;
                Layer* layer = nullptr;
                switch(type){
                case Raster:
                layer = new RasterLayer;
                break;
                default:
                Q_UNREACHABLE();
                }
                in >> *layer;
                }
                JonBJ Offline
                JonBJ Offline
                JonB
                wrote on last edited by JonB
                #15

                @VRonin
                I don't want to muddy the waters for the OP here, but may I ask: why do you explicitly serialize the layers list yourself in a loop? I thought that the point of the link I mentioned, http://doc.qt.io/qt-5/datastreamformat.html, is that it shows:

                The QDataStream allows you to serialize some of the Qt data types. The table below lists the data types that QDataStream can serialize

                QList<T>	
                    The number of items (quint32)
                    The items (T)
                

                so why can't you just out << layers ?

                Is this because you want to know where layer->type() is in the serialization, so that you can look at it during deserialization and do your own newing? If there were no sub-classing going on in the list elements then you wouldn't need to do that and could just do the list directly? Could it then just be deserialized with in >> layers? Or will deserializing never do any newing of elements for you?

                VRoninV 1 Reply Last reply
                0
                • JonBJ JonB

                  @VRonin
                  I don't want to muddy the waters for the OP here, but may I ask: why do you explicitly serialize the layers list yourself in a loop? I thought that the point of the link I mentioned, http://doc.qt.io/qt-5/datastreamformat.html, is that it shows:

                  The QDataStream allows you to serialize some of the Qt data types. The table below lists the data types that QDataStream can serialize

                  QList<T>	
                      The number of items (quint32)
                      The items (T)
                  

                  so why can't you just out << layers ?

                  Is this because you want to know where layer->type() is in the serialization, so that you can look at it during deserialization and do your own newing? If there were no sub-classing going on in the list elements then you wouldn't need to do that and could just do the list directly? Could it then just be deserialized with in >> layers? Or will deserializing never do any newing of elements for you?

                  VRoninV Offline
                  VRoninV Offline
                  VRonin
                  wrote on last edited by
                  #16

                  @JonB That would imply having datastream operators acting on pointers and that's dangerous:

                  • What if you pass a null pointer
                  • What if you pass a dangling pointer
                  • Who own the memory allocated by the pointer? the operator?

                  "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                  ~Napoleon Bonaparte

                  On a crusade to banish setIndexWidget() from the holy land of Qt

                  JonBJ 1 Reply Last reply
                  0
                  • VRoninV VRonin

                    @JonB That would imply having datastream operators acting on pointers and that's dangerous:

                    • What if you pass a null pointer
                    • What if you pass a dangling pointer
                    • Who own the memory allocated by the pointer? the operator?
                    JonBJ Offline
                    JonBJ Offline
                    JonB
                    wrote on last edited by
                    #17

                    @VRonin
                    So are you saying: "Yes, you can de/serialize QList<T> directly as per that link, but while that's fine for simple types it's not suitable for pointers"?

                    I may be confusing myself. In my C# we don't have "pointers" and we just de/serialize lists directly without a care. Deserializing does whatever newing is necessary behind the scenes.

                    J.HilkJ 1 Reply Last reply
                    0
                    • JonBJ JonB

                      @VRonin
                      So are you saying: "Yes, you can de/serialize QList<T> directly as per that link, but while that's fine for simple types it's not suitable for pointers"?

                      I may be confusing myself. In my C# we don't have "pointers" and we just de/serialize lists directly without a care. Deserializing does whatever newing is necessary behind the scenes.

                      J.HilkJ Offline
                      J.HilkJ Offline
                      J.Hilk
                      Moderators
                      wrote on last edited by
                      #18

                      @JonB said in How do I properly serialize and deserialize a QList class in QT using QDatastream?:

                      I may be confusing myself. In my C# we don't have "pointers" and we just de/serialize lists directly without a care.

                      I beg to differ!

                      you can use pointers in c# and manage your memory by hand, but you have to explicitly tell the compiler to allow it with -unsafe, IIRC

                      Quick google search:
                      https://www.tutorialspoint.com/csharp/csharp_unsafe_codes.htm


                      Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                      Q: What's that?
                      A: It's blue light.
                      Q: What does it do?
                      A: It turns blue.

                      JonBJ 1 Reply Last reply
                      0
                      • VRoninV Offline
                        VRoninV Offline
                        VRonin
                        wrote on last edited by
                        #19

                        take this example:

                        // QList<int*> m_ownerList;
                        m_ownerList.append(new int(5));
                        m_ownerList.append(new int(3));
                        
                        m_myInt1 = new  int(5);
                        m_myInt2 = new  int(3);
                        m_nonOwnerList = QList<int*>{{m_myInt1 ,m_myInt2} };
                        

                        What should QDataStream& operator>>(QDataStream& , const QList<int*> ) do? free the memory already allocated or not?

                        "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                        ~Napoleon Bonaparte

                        On a crusade to banish setIndexWidget() from the holy land of Qt

                        1 Reply Last reply
                        0
                        • J.HilkJ J.Hilk

                          @JonB said in How do I properly serialize and deserialize a QList class in QT using QDatastream?:

                          I may be confusing myself. In my C# we don't have "pointers" and we just de/serialize lists directly without a care.

                          I beg to differ!

                          you can use pointers in c# and manage your memory by hand, but you have to explicitly tell the compiler to allow it with -unsafe, IIRC

                          Quick google search:
                          https://www.tutorialspoint.com/csharp/csharp_unsafe_codes.htm

                          JonBJ Offline
                          JonBJ Offline
                          JonB
                          wrote on last edited by
                          #20

                          @J.Hilk
                          But I would never want to use pointers in C# or manage memory by hand, that's (more than) half the point of using C#!?

                          Maybe there's a misunderstanding. I don't use C# with Qt (I use Python). I'm just familiar with C# compared to C++. I am trying to understand @VRonin's explanation of de/serializing this QList<T>, where he is saying he does it explicitly to manage pointers, when I know I would just de/serialize a list from C# without iterating the elements myself, and trying to understand why.

                          1 Reply Last reply
                          0
                          • VRoninV VRonin
                            out << qint32(layers.size());
                            for(Layer* layer : qAsConst(layers))
                            out << qint32(layer->type()) << *layer;
                            

                            qint32 size;
                            qint32 type;
                            in >> size;
                            while(size-- >0 ){
                            in >> type;
                            Layer* layer = nullptr;
                            switch(type){
                            case Raster:
                            layer = new RasterLayer;
                            break;
                            default:
                            Q_UNREACHABLE();
                            }
                            in >> *layer;
                            }
                            T Offline
                            T Offline
                            twodee
                            wrote on last edited by
                            #21

                            @VRonin Hi, thanks for the extended example. I have come up with a working solutin that looks similar to yours, could you let me know if this is a good way to deal with it?

                            QDataStream& operator >>(QDataStream& stream, QList<Layer*>& layers){
                                layers.clear();
                                int size;
                                int type;
                            
                                stream>>size;
                            
                                QString name;
                                QPixmap pixmap;
                            
                                Layer* layer = nullptr;
                                for(int i =0; i<size; ++i){
                            
                                    stream >> name >> type;
                                    switch (type) {
                                    case Layer::RASTER:
                                        stream >> pixmap;
                                        layer = new RasterLayer(name, pixmap.toImage());
                                        break;
                                    default:
                                        Q_UNREACHABLE();
                                        break;
                                    }
                                    layer->read(stream);
                            
                                    layers.push_back(layer);
                                }
                                return stream;
                            }
                            
                            1 Reply Last reply
                            0
                            • VRoninV Offline
                              VRoninV Offline
                              VRonin
                              wrote on last edited by
                              #22

                              The very first line of your code is a memory leak. This is exactly my point. Don't handle memory inside serialising/deserialising it's not the right place

                              "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                              ~Napoleon Bonaparte

                              On a crusade to banish setIndexWidget() from the holy land of Qt

                              1 Reply Last reply
                              2
                              • T Offline
                                T Offline
                                twodee
                                wrote on last edited by
                                #23

                                I felt wrong in doing so too as I mentioned in my original question, but I still am not sure where would I be creating the new RasterLayer in my case. Could you give me some clues on how to go about it?

                                kshegunovK 1 Reply Last reply
                                0
                                • VRoninV Offline
                                  VRoninV Offline
                                  VRonin
                                  wrote on last edited by
                                  #24

                                  Memory owned by an object should be created and freed by a method of said object:

                                  You can create a wrapper class around QList<Layer*> that will take care of allocating/freeing the memory inside and create safe datastream operator for this wrapper

                                  "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                                  ~Napoleon Bonaparte

                                  On a crusade to banish setIndexWidget() from the holy land of Qt

                                  T 1 Reply Last reply
                                  2
                                  • T twodee

                                    I felt wrong in doing so too as I mentioned in my original question, but I still am not sure where would I be creating the new RasterLayer in my case. Could you give me some clues on how to go about it?

                                    kshegunovK Offline
                                    kshegunovK Offline
                                    kshegunov
                                    Moderators
                                    wrote on last edited by kshegunov
                                    #25

                                    @twodee said in How do I properly serialize and deserialize a QList class in QT using QDatastream?:

                                    I felt wrong in doing so too as I mentioned in my original question, but I still am not sure where would I be creating the new RasterLayer in my case. Could you give me some clues on how to go about it?

                                    Firstly, use the factory as you're using polymorphism, that'd be the way to go here. And secondly delegate the deserialization to the object through a virtual function; the whole reading. It's a good idea, since you're dealing with polymorphic objects, to also employ some kind of stack-based memory management here, to make sure you don't leak memory.
                                    You can see how I did it here and draw some inspiration:
                                    https://github.com/VSRonin/ChatExample/blob/commonlib/QtSimpleChat/chatmessage.h
                                    https://github.com/VSRonin/ChatExample/blob/commonlib/QtSimpleChat/chatmessage.cpp

                                    I am trying to understand @VRonin's explanation of de/serializing this QList<T>, where he is saying he does it explicitly to manage pointers, when I know I would just de/serialize a list from C# without iterating the elements myself, and trying to understand why.

                                    'Cause when you have allocations and deallocations in different parts of the code, i.e. not declaring the objects' lifetimes clearly you're begging for trouble. C++ is lower level (thank god) than C#, so it's up to the proficiency of the programmer to actually choose the best and most versatile implementation. It may seem elitist, but we don't want the language to be something to be worked around whenever there's something falling outside of the standard set of problems to solve. In Java/C# you start by assuming the programmer is irresponsible and can't handle the problem of finding a good way to manage the memory. This may prevent a lot of errors, but also hits hard on the efficiency ...

                                    Read and abide by the Qt Code of Conduct

                                    1 Reply Last reply
                                    3
                                    • VRoninV VRonin

                                      Memory owned by an object should be created and freed by a method of said object:

                                      You can create a wrapper class around QList<Layer*> that will take care of allocating/freeing the memory inside and create safe datastream operator for this wrapper

                                      T Offline
                                      T Offline
                                      twodee
                                      wrote on last edited by twodee
                                      #26

                                      @VRonin So, if I create a function for the wrapper around QList<Layer*> class (let's call it LayerList) that creates the correct layers depending upon the type (essentially acting as a factory), then I can go to the >> stream and instead of doing a new RasterLayer() I will call the LayerList::createLayer() method, in which case the memory is created and freed by the object owning the layers. Is my idea correct?

                                      kshegunovK 1 Reply Last reply
                                      0
                                      • T twodee

                                        @VRonin So, if I create a function for the wrapper around QList<Layer*> class (let's call it LayerList) that creates the correct layers depending upon the type (essentially acting as a factory), then I can go to the >> stream and instead of doing a new RasterLayer() I will call the LayerList::createLayer() method, in which case the memory is created and freed by the object owning the layers. Is my idea correct?

                                        kshegunovK Offline
                                        kshegunovK Offline
                                        kshegunov
                                        Moderators
                                        wrote on last edited by kshegunov
                                        #27

                                        You have a two-layered problem here.

                                        1. How to manage the memory
                                        2. How to do (de)serialization

                                        Start backwards, ensure you read and write the object correctly. You can do "virtual shift" operators as a syntactic sugar as well by delegating:

                                        virtual bool Layer::serialize(QDataStream &) const;
                                        virtual bool Layer::deserialize(QDataStream &);
                                        
                                        // Then just delegate from the base class (need to be `friend`s to the base class):
                                        QDataStream & operator >> (QDataStream & stream, Layer & layer)
                                        {
                                            layer.deserialize(stream);
                                            return stream;
                                        }
                                        
                                        QDataStream & operator << (QDataStream & stream, const Layer & layer)
                                        {
                                            layer.serialize(stream);
                                            return stream;
                                        }
                                        

                                        This should more or less take care of task 2. Don't forget to use the virtuals up the hirearchy - i.e. each derived class would call the base class' (de)serialize to get the data of the base read/written. This way you don't have code duplication and you keep the idea that each class is responsible for its own data.

                                        As for 1), you should ideally go with some kind of clever pointer. In the example above I used QSharedData and QSharedDataPointer, but you can also use QSharedPointer (which provides external reference counting). In principle I'd always opt for the first option, as the refcount is internal to the object a reference is held to. Using QSharedDataPointer would mean also that the base class has to derive from QSharedData, just as the example I sourced above. Whenever you have that it's a breeze, as you don't have to worry when the deallocation is happening and you are left only with one thing to do - read an integer and pass it to the static function of your Layer class that'd create the correct object based on that integer and return a base pointer to it. After all that the stream operator would look really simple:

                                        class LayerPointer; //< This is your stack-based memory management class
                                        
                                        QDataStream & operator >> (QDataStream & stream, QList<LayerPointer> & layers)
                                        {
                                            layers.clear();
                                        
                                            int size;
                                            stream >> size;
                                            layers.reserve(size);
                                        
                                            for(int i = 0; i < size; i++)  {
                                                stream >> type;
                                                LayerPointer layer = Layer::create(type); //< Factory creation
                                                stream >> *layer; //< The "virtual stream operator", will call the proper implementation
                                        
                                                layers.append(layer);
                                            }
                                        
                                            return stream;
                                        }
                                        

                                        Read and abide by the Qt Code of Conduct

                                        T 1 Reply Last reply
                                        3
                                        • kshegunovK kshegunov

                                          You have a two-layered problem here.

                                          1. How to manage the memory
                                          2. How to do (de)serialization

                                          Start backwards, ensure you read and write the object correctly. You can do "virtual shift" operators as a syntactic sugar as well by delegating:

                                          virtual bool Layer::serialize(QDataStream &) const;
                                          virtual bool Layer::deserialize(QDataStream &);
                                          
                                          // Then just delegate from the base class (need to be `friend`s to the base class):
                                          QDataStream & operator >> (QDataStream & stream, Layer & layer)
                                          {
                                              layer.deserialize(stream);
                                              return stream;
                                          }
                                          
                                          QDataStream & operator << (QDataStream & stream, const Layer & layer)
                                          {
                                              layer.serialize(stream);
                                              return stream;
                                          }
                                          

                                          This should more or less take care of task 2. Don't forget to use the virtuals up the hirearchy - i.e. each derived class would call the base class' (de)serialize to get the data of the base read/written. This way you don't have code duplication and you keep the idea that each class is responsible for its own data.

                                          As for 1), you should ideally go with some kind of clever pointer. In the example above I used QSharedData and QSharedDataPointer, but you can also use QSharedPointer (which provides external reference counting). In principle I'd always opt for the first option, as the refcount is internal to the object a reference is held to. Using QSharedDataPointer would mean also that the base class has to derive from QSharedData, just as the example I sourced above. Whenever you have that it's a breeze, as you don't have to worry when the deallocation is happening and you are left only with one thing to do - read an integer and pass it to the static function of your Layer class that'd create the correct object based on that integer and return a base pointer to it. After all that the stream operator would look really simple:

                                          class LayerPointer; //< This is your stack-based memory management class
                                          
                                          QDataStream & operator >> (QDataStream & stream, QList<LayerPointer> & layers)
                                          {
                                              layers.clear();
                                          
                                              int size;
                                              stream >> size;
                                              layers.reserve(size);
                                          
                                              for(int i = 0; i < size; i++)  {
                                                  stream >> type;
                                                  LayerPointer layer = Layer::create(type); //< Factory creation
                                                  stream >> *layer; //< The "virtual stream operator", will call the proper implementation
                                          
                                                  layers.append(layer);
                                              }
                                          
                                              return stream;
                                          }
                                          
                                          T Offline
                                          T Offline
                                          twodee
                                          wrote on last edited by twodee
                                          #28

                                          @kshegunov So for 1) to work, all I have to do is a create a LayerPointer class that extends QSharedData or is there something else I would have to add? I have never dealt with this type of situation before. Also, I have already solved 2) the way you suggested, so I am currently focusing on 1).

                                          kshegunovK 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