Click here to Skip to main content
15,867,453 members
Articles / Programming Languages / C#

A Fast/Compact Serialization Framework

Rate me:
Please Sign up or sign in to vote.
4.85/5 (37 votes)
13 Oct 2010GPL35 min read 280.8K   1.2K   175   97
A framework for object serializiation/deserialization that is many times faster and yields a compact output.

Introduction

NxSerialization is an easy to use object serialization framework that replaces the functionality of the default serialization providers for .NET and Mono. The binary formatter for NxSerialization can be up to 50 times faster than the default binary formatter for .NET and Mono. This is evident from the screenshot of the benchmark application shown above. There are three main benefits this framework provides to applications that serialize objects. The main benefits being that of increased space and time performance, and enhanced security comes as a byproduct.

Quick Facts

The figure below contains benchmark results using the sample application shipped with NxSerialization for CLI. The important values are given in bold. The time measured was for 100 iterations of 100 runs each. In each run, an object of the specified type was serialized and then deserialized. These results may vary depending upon the system configuration; however, the important thing to consider is the relative difference or the performance factors between the native and the NxSerializer.

Warning: These stats are from the previous release, and do not reflect comparison with latest native formatters.

Size based comparison of .NET and NxSerialization formatters

Size based comparison of .NET and NxSerialization formatters

Time based comparison of .NET and NxSerialization formatters

Time based comparison of .NET and NxSerialization formatters

What is New in 3.0?

There is nothing substantially new in this release, except the inclusion of the Remoting sub-system and a few unfinished features. After an extended long period of inactivity and quite some queries to release the Remoting specific portions, I have finally decided to release all that I had in my dev folders, and it's probably going to be the last release ever.

An interesting observation is that the latest versions of CLR have much improved native formatters, and what used to be on the average >5 times speed gain in the past is now much reduced. The stats above are therefore not representative of comparison with latest .NET versions. It also follows that the toolkit has probably seen its time :)

Unfinished Features

EAR - (Emit Avoid Reflection)

Some of the surrogates have an EAR property that when set uses dynamic IL to facilitate creation of objects and avoids the abhorred Activator.CreateInstance that is not known to be a super-fast way. The support is in early stages, and not rigorously tested, and therefore issues may popup. Moreover, there is no way to configure EAR externally, and source modifications are needed should you want to try it.

Remoting

The ability to use NxSerialization in Remoting sinks should theoretically speedup Remoting code - though the network latency may overshadow it - but surprisingly, the results have always been quite the opposite (which is why I never released it). There are also issues with HTTP channels (some functionality is missing), as well as Channel security that does not work at all.

Surrogates for System.Data.*

Still unimplemented - even though a straightforward task.

I would love to know if anyone still finds it useful and could spot the shortcomings in Remoting slowdown and suggest a fix. As always, your feedback is highly welcome!

Using the Framework

Application objects can be integrated with the framework in two ways. By writing a surrogate for the object type and registering the surrogate with the framework, or by implementing INxSerializable. The framework provides a built-in surrogate for types that implement INxSerializable. For unknown types, native .NET serialization is used.

The following sample of code demonstrates a type that implements INxSerializable. Note the line at the bottom that registers the type with the framework.

C#
// Sample class that implements INxSerializable
[Serializable]
class SampleCompactableClass : INxSerializable
{
   private String title = "SampleCompactableClass";

   void INxSerializable.Serialize(INxBinaryWriter w)
   {
      w.Write(title);
   }

   void INxSerializable.Deserialize(INxBinaryReader r)
   {
      title = r.ReadString();
   }
}

...
// Register the class with the framework.
NxFormatterServices.Default.RegisterKnownType(typeof(SampleCompactableClass));

The following sample of code demonstrates a sample surrogate for another type that does not implement INxSerializable. Using surrogates is the only way the framework is able to compactly serialize .NET native types.

C#
// Sample surrogate for SampleSurrogatedClass
class SampleSurrogate : NxSerializationSurrogate
{
   public SampleSurrogate() : base(typeof(SampleSurrogatedClass)) {}

   public override object Read(INxBinaryReader r)
   {
      SampleSurrogatedClass obj = new SampleSurrogatedClass();
      obj.title = r.ReadString();
      return obj;
   }

   public override void Write(INxBinaryWriter w, object graph)
   {
      SampleSurrogatedClass obj = (SampleSurrogatedClass) graph;
      w.Write(obj.title);
   }
}

// Sample class that does not implement INxSerializable
[Serializable]
class SampleSurrogatedClass
{
   internal string title = "SampleSurrogatedClass";
}

...
// Register the surrogate with the framework.
NxTypeSurrogateSelectorNative.Default.Register(new SampleSurrogate());

Everything else is pretty much self-explanatory. For more information, look at the sample benchmark application provided with the source code.

Comments

Please note that for objects where the actual data size to type-info size ratio is very large, not much memory reduction will occur. Try a byte array of size 100K. It is also possible to come up with a case where the native serializer is actually more efficient in terms of CPU.

Among other possibilities with the framework are:

  • Enhanced security as custom serialization protects your object's data from prying eyes. Excluding the possibilities of complete reverse engineering, objects cannot be deserialized from persistent streams.
  • .NET CLR 1.x objects can be deserialized into 2.0 objects. Objects of type A can be deserialized to objects of type B etc.

History

OpenNxSerialization 2.0 (August 08, 2008)

Changes in this version include:

  • Arrays and collections serialization is now significantly faster.
  • New surrogates for a lot of built-in types.
  • Support for serialization of containers in the System.Collections.Generic namespace.
  • Support for serialization of BitVector32, BitArray and KeyValuePair objects.
  • Support for serialization of Type objects.
  • Surrogate redirection support now provided.
  • Dynamic (on the fly) surrogates now supported.
  • Major refactoring of the API.
  • Quite a few enhancements and utilities everywhere.

OpenNxSerialization 1.5 (March 12, 2008)

Changes in this version include:

  • NxFormatter now implements IRemotingFormatter.
  • New surrogates for a lot of built-in types.
  • Support for serialization of ISerializable objects.
  • Support for serialization of MarshalByRef objects.
  • Support for generic versions of SerializeAs and DeserializeAs functions.
  • Streaming context can now contain application specific items.
  • Quite a few enhancements and utilities everywhere.

OpenNxSerialization 1.0 (CompactSerialization 2.5) (July 21, 2007)

Once again, thanks to all contributors. Changes in this version include:

  • CompactSerialization 2.5 is now OpenNxSerialization 1.0.
  • Support for multiple instances of TypeSurrogateSelector.
  • Support for SerializeAs and DeserializeAs functions (faster and more compact).
  • Reader does not close the base stream.
  • Support to configure types using a config file.
  • Quite a few enhancements and utilities everywhere.

CompactSerialization 2.0 (May 17, 2006)

This has been possible due to the wonderful feedback I've received. Thanks to all contributors. Changes in this version include:

  • Support for .NET 2.0 Nullable types.
  • Circular and shared references are now handled wisely.
  • Support for permanent/hard type handles.
  • Support for enumerations, SortedList etc.
  • Major refactoring of the internal and public APIs.
  • Improved performance at places, and decreased at places :).

CompactSerialization 1.0 (Feb 15, 2006)

  • Released the initial version of the framework.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect
Pakistan Pakistan
Let a = b ....... (1)
a - b = a - b
a^2 - ab = a^2 - ab
a^2 - ab = a^2 - b^2 (from 1)
a (a - b) = (a + b) (a - b)
a = (a + b) ...... (2)

if a = 1
1 = (1 + 1) (from 1 & 2)
1 = 2 !!

Comments and Discussions

 
GeneralMy vote of 3 Pin
supernorb20-Feb-13 7:21
supernorb20-Feb-13 7:21 
QuestionMy vote of 3 Pin
supernorb20-Feb-13 7:18
supernorb20-Feb-13 7:18 
AnswerRe: My vote of 3 Pin
.Shoaib20-Feb-13 7:41
.Shoaib20-Feb-13 7:41 
GeneralRe: My vote of 3 Pin
supernorb20-Feb-13 8:02
supernorb20-Feb-13 8:02 
GeneralLicensing Pin
Strebulaev Sergey28-Oct-10 18:36
Strebulaev Sergey28-Oct-10 18:36 
AnswerRe: Licensing Pin
.Shoaib2-Nov-10 23:31
.Shoaib2-Nov-10 23:31 
QuestionRe: Licensing Pin
Paul Kesaris1-Mar-11 2:59
Paul Kesaris1-Mar-11 2:59 
GeneralYour math wonder Pin
agamia13-Oct-10 23:21
agamia13-Oct-10 23:21 
JokeRe: Your math wonder Pin
.Shoaib14-Oct-10 4:28
.Shoaib14-Oct-10 4:28 
NewsAnnouncement Pin
.Shoaib13-Oct-10 9:32
.Shoaib13-Oct-10 9:32 
GeneralPlease post demo for use of Remoting (MarshalByRef) Pin
Vedan27-Sep-10 2:40
Vedan27-Sep-10 2:40 
AnswerRe: Please post demo for use of Remoting (MarshalByRef) Pin
.Shoaib13-Oct-10 9:26
.Shoaib13-Oct-10 9:26 
GeneralCompact Framework support Pin
iivanov14-Jan-10 10:34
iivanov14-Jan-10 10:34 
AnswerRe: Compact Framework support Pin
.Shoaib14-Jan-10 22:44
.Shoaib14-Jan-10 22:44 
GeneralHelp I need the source code of CompactSerialization V. 2.0 Pin
Member 54074116-Oct-09 3:37
Member 54074116-Oct-09 3:37 
Questionhow to use with nullable types Pin
oodoow25-Sep-09 1:54
oodoow25-Sep-09 1:54 
AnswerRe: how to use with nullable types Pin
.Shoaib25-Sep-09 2:31
.Shoaib25-Sep-09 2:31 
GeneralRemoting Use Pin
mobeid200610-Jun-09 5:53
mobeid200610-Jun-09 5:53 
AnswerRe: Remoting Use Pin
.Shoaib10-Jun-09 6:13
.Shoaib10-Jun-09 6:13 
GeneralRe: Remoting Use Pin
mobeid200610-Jun-09 20:09
mobeid200610-Jun-09 20:09 
QuestionCan this be sued with the Compact Framework 2.0 Pin
Bype13-Nov-08 5:49
Bype13-Nov-08 5:49 
AnswerRe: Can this be sued with the Compact Framework 2.0 Pin
Cloud Computing User31-Mar-10 18:33
Cloud Computing User31-Mar-10 18:33 
GeneralDot net compact framework Pin
Sandeep Datta9-Oct-08 2:30
Sandeep Datta9-Oct-08 2:30 
GeneralCross Platform Serialization Pin
kapil bhavsar14-Sep-08 19:08
kapil bhavsar14-Sep-08 19:08 
AnswerRe: Cross Platform Serialization Pin
.Shoaib16-Sep-08 20:02
.Shoaib16-Sep-08 20:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.