I serialize multiple objects into a binary archive with Boost.
When reading back those objects from a binary_iarchive
, is there a way to know how many objects are in the archive or simply a way to detect the end of the archive ?
The only way I found is to use a try-catch to detect the stream exception. Thanks in advance.
I can think of a number of approaches:
Serialize STL containers to/from your archive (see documentation). The archive will automatically keep track of how many objects there are in the containers.
Serialize a count variable before serializing your objects. When reading back your objects, you'll know beforehand how many objects you expect to read back.
You could have the last object have a special value that acts as a kind of sentinel that indicates the end of the list of objects. Perhaps you could add an
isLast
member function to the object.This is not very pretty, but you could have a separate "index file" alongside your archive that stores the number of objects in the archive.
Use the
tellp
position of the underlying stream object to detect if you're at the end of file:Example (just a sketch, not tested):
This might not work with XML archives.
you just read a byte from the file.
If you do not reach the end,
backword a byte then.
Do you have all your objects when you begin serializing? If not, you are "abusing" boost serialization - it is not meant to be used that way. However, I am using it that way, using
try catch
to find the end of the file, and it works for me. Just hide it away somewhere in the implementation. Beware though, if using it this way, you need to either not serialize pointers, or disable pointer tracking.If you do have all the objects already, see Emile's answer. They are all valid approaches.