vote up 3 vote down star
1

Lets say I have some domain objects that will need to be serialized/packed using a custom binary format so they can be sent over sockets to external processes. My first instinct would be to create an interface that represents any object that can be packed into this binary format.

public interface IPackable
{
    byte[] Pack();
}

Then my domain objects (such as Entity, State, Vector, etc) would each implement this interface. This is similar to how the default serialization works in .NET and Java.

public class Vector : IPackable
{
  public double X { get; set; }
  public double Y { get; set; }
  public double Z { get; set; }

  // other operators and methods...

  public byte[] Pack
  {
    MemoryStream stream = new MemoryStream();
    BinaryWriter writer = new BinaryWriter(stream);

    writer.Write(X);
    writer.Write(Y);
    writer.Write(Z);

    return stream.ToArray();
}

However, the more I learn about design principles (such as the SOLID's Single Responsibility Principle), the more I think that I should create a separate class for packing my domain objects.

I can see advantages and disadvantages with both. What do you all think? If the answer is create a separate class for packing the domain objects, should I create a separate packer for each domain object (such as EntityPacker, StatePacker, VectorPacker, etc)?

Thanks

flag

1  
I don't think there is a conclusive answer to that question, do some search on "Smart Objects, Dumb Archives" vs "Dumb Objects, Smart Archives" - it's the same dilemma. – unknown (google) Nov 5 at 16:49

3 Answers

vote up 1 vote down check

Have you also considered the System.Runtime.Serialization namespace?

The trouble with creating an external serializer is that you have to open all your interesting data to another object. Since most of your object's state is likely to be held in private variables, the exposed properties of an object don't necessarily provide enough information to fully describe it externally.

In sticking with good data encapsulation, I would favor hiding the details of packing / serializing in the object being stored.

link|flag
I thought that the default .NET serializer only serializes public properties/fields any. So, would this be any different? – dewald Nov 4 at 13:52
Sorry, I missed your comment from before... You can fully control an object's serialization using the ISerializable interface. – jheddings Nov 18 at 3:11
vote up 1 vote down

There are several forms of serialization built into the .NET framework you can use for this purpose. Examples are SOAP, XML but also binary which lends itself well to sending objects over streams of all kinds, including network streams.

Binary serialization in .NET is also capable of serializing and deserializing private properties and fields whereas the build in XML and SOAP formatters are not.

However, you must be sure that when using the binary formatter that it is only compatible with .NET library whereas SOAP could be read from any SOAP capable platform.

link|flag
vote up 0 vote down

I hate to be mean, but seriously...

link|flag
That's awesome. I haven't seen that before. I know that .NET has built-in and custom serialization, but my question was about design. From a design perspective, should I do serialization within my domain object, or within another class that simply does serialization for a certain format? – dewald Nov 5 at 17:23
Objects to be serialized need to know what to serialize (and in what actual format), not where to put it or how; that's in the serializer. The trick is to stay agnostic in between. That's where things like SerializationInfo come in as a vehicle. – Stu Nov 5 at 17:53

Your Answer

Get an OpenID
or

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