I'm looking at hashing an object model, based on a serialization of it.

If I serialize an object graph using the .NET BinaryFormatter, is the serialized representation guaranteed to be the exact same, byte for byte, for another object graph where all the involved objects are composed of the same values?

Intuitively, I'd think so, but I'm unsure if object/reference IDs might somehow influence the actual serialized representation.

Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I do not know that is guaranteed, and with the lack of a documented guarantee I would not personally rely on it. In particular:

  • anything that implements ISerializable (i.e. custom serialization) can do whatever it wants
  • anything involving something like a dictionary may be unreliable - simply because there is no defined ordering inside a dictionary, and it may depend on the spare space in the original vs reconstituted, etc
  • there may be subtle compatible but not identical changes between platforms, revisions etc

However, if you are talking about binary equivalence, I deduce you are talking about storage of BinaryFormatter data, and subsequent comparison at a later date. Allow me to stress: IMO, BinaryFormatter is not suitable for storage; it is OK (ish) for transport of data between running systems that share a platform and application version, but the sheer number of times I've seen people stuck in a hole due to version differences and BinaryFormatter is overwhelming. It is for these reasons that I got interested in protobuf, and wrote my own serializer that would be suitable for storage and rehydration against existing object models that make have "versioned" in the interim.

link|improve this answer
Thanks for your feedback and your cautions are duly noted. To clarify: I'm not planning on using BinaryFormatter for storage, but as a potential shortcut to implement determining whether 2 object models are equal, in the value sense. I.e., I'd use its output as input to a hashing algorithm. – Cumbayah Apr 26 '11 at 11:40
@Cumbayah that would make be a bit nervous, truth be told. I might consider something with known output, such as json - and hashing that. – Marc Gravell Apr 26 '11 at 11:42
You might be interested to look at this project if you haven't seen this yet: db4o.com – zespri Apr 26 '11 at 11:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.