473,382 Members | 1,247 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Getting serilized data size

Using the below code I am send multiple sterilized object across an IP port.
This works fine if only one object is received at a time but with packing
sometimes there is more then one object or half an object in the received
data. If I place the data in a memory stream on the received side is there
a way to determine where one ends and the next one start?

Since the deserializer stream seems to move the pointer I am trying to look
at the next couple bytes to determine if there is more data in the stream.
It seems that serialized data starts with 0,1 but I can not confirm this.
Is there maybe a rule?

I have also noticed that the number of bytes recieved is always bigger then
the number of bytes deserizlized, any clue why?

CODE 1
IFormatter f = new BinaryFormatter();
MemoryStream ms = new MemoryStream();
f.Serialize(ms, cmd);
byte[] b = ms.GetBuffer();
this.socket.BeginSend(b, 0, b.Length, SocketFlags.None, new
AsyncCallback(Send_Callback), this.socket);

CODE 2
IFormatter i = new BinaryFormatter();
MemoryStream ms = new MemoryStream(o, 0, len);
ms.Position = 0;
while(ms.Position < len)
{
long position = ms.Position;
if(!(ms.ReadByte() == 0 && ms.ReadByte() == 1))
break;
ms.Position = position;

object obj = i.Deserialize(ms);
.....

Regards,
John
Nov 16 '05 #1
14 2244
John,

How are you getting the value of "len" in CODE 2? Did you try looking at
ms.Length after serialization? Maybe you could send that in some sort of
delimited fashion over the wire.

- SM
"John J. Hughes II" <no@invalid.com> wrote in message
news:Ou**************@TK2MSFTNGP15.phx.gbl...
Using the below code I am send multiple sterilized object across an IP
port. This works fine if only one object is received at a time but with
packing sometimes there is more then one object or half an object in the
received data. If I place the data in a memory stream on the received
side is there a way to determine where one ends and the next one start?

Since the deserializer stream seems to move the pointer I am trying to
look at the next couple bytes to determine if there is more data in the
stream. It seems that serialized data starts with 0,1 but I can not
confirm this. Is there maybe a rule?

I have also noticed that the number of bytes recieved is always bigger
then the number of bytes deserizlized, any clue why?

CODE 1
IFormatter f = new BinaryFormatter();
MemoryStream ms = new MemoryStream();
f.Serialize(ms, cmd);
byte[] b = ms.GetBuffer();
this.socket.BeginSend(b, 0, b.Length, SocketFlags.None, new
AsyncCallback(Send_Callback), this.socket);

CODE 2
IFormatter i = new BinaryFormatter();
MemoryStream ms = new MemoryStream(o, 0, len);
ms.Position = 0;
while(ms.Position < len)
{
long position = ms.Position;
if(!(ms.ReadByte() == 0 && ms.ReadByte() == 1))
break;
ms.Position = position;

object obj = i.Deserialize(ms);
....

Regards,
John

Nov 16 '05 #2
John J. Hughes II wrote:
Using the below code I am send multiple sterilized object across an IP port.
This works fine if only one object is received at a time but with packing
sometimes there is more then one object or half an object in the received
data. If I place the data in a memory stream on the received side is there
a way to determine where one ends and the next one start?


Through _painstaking_ tracing and hours of debugging thinking that a
network card driver was buggy, I have found that:

- The SoapSerializer.Deserialize (sometimes) read more data than
SoapSerializer.Serialize generates (due to buffered reads).

- The BinarySerializer.Deserialize doesn't always read all the data
generated by BinarySerializer.Serialize, and will Close() the stream
when done deserializing!

So basically, you cannot send multiple serialized objects down the same
stream without being really lucky, especially after .NET-sp1.
SoapSerializer used to work most of the time before .NET-sp1.

My solution for sending multiple serialized objects, in a streaming way,
inside the same trasport-Stream is to implement a Stream that does
chunk-length en/de-coding of the amount of data written.

So I have a BlockSubStreamWriter, that writes a 16-bit length and then
the data to be written to the stream, and writes a 16-bit 0-length and
flushes to mark Close(), and a BlockSubStreamReader that reads 16-bit
length and then corresponding data, making EOF if the length is 0, and
"eating" the rest of stream untill a 0-length is received if the
BlockSubStreamReader is Close() or Dispose()'ed without having read a
0-length.

So now i can say

new BinarySerializer.Serialize(new BlockSubStreamWriter(stream), graph);
new BinarySerializer.Deserialize(new BlockSubStreamReader(stream)).

On top of this i have a 4-byte magic ID, so I can do
serialize/deserialize using multiple protocols from a simple interface:

public interface IObjectChannel: IDisposable
{
/// <summary>
/// Send object down the channel
/// </summary>
void SendObject(Object o);
/// <summary>
/// Read object from channel
/// </summary>
/// <exception cref="ObjectChannels.Closed">ObjectChannels.Closed
is thrown if the transport is closed
/// before any data is received</exception>
Object ReceiveObject();
}

I have a (rather pretty, if I should say it myself) implementation (and
some rather nifty handshaking and stuff) making up a transparent way of
shipping objects from one .NET instance to another, including extensive
unit and integration-tests.

Clients can now do (/actual code from test/)

using ( IObjectChannel c = ksio.ChannelPool.Global.Connect(host,port))
{
c.SendObject(command);
Object reply = c.ReceiveObject();
}

Which will reuse an existing connection if one is available, and GC
connections that are idle for more than a specific time (default: 1minute).

Servers simply do (/actual code from test - implements an "echo-service"/)

Socket s = ...;
try
{
using ( NetworkStream stream = new NetworkStream(s, true) )
while ( true )
using ( IObjectChannel c =
ObjectChannels.Auto.Global.Create(stream) )
c.SendObject(c.ReceiveObject());
}
catch ( ObjectChannels.MagicIdObjectChannel.Closed)
{
// That's the expected way to close
}
catch ( Exception e )
{
Console.WriteLine("UNEXPECTED END\n{0}", e);
}

The entire stuff (including a version that does gzip compression on the
data, thanks to ICSharpCode.SharpZipLib) is about 200kb worth of code,
..proj- and .sln-files, which I would be happy to publish if someone
wants to check it out.

--
Helge
Nov 16 '05 #3
Sahil Malik

Len comes form the socket when I recieved the packet... below is the code
that calls the code that you saw before. I have another system where I send
compressed data that is larger then the buffer size so I send the size as a
header then then wait for all the data to show up. This system was intented
to more or less just monitor the stream and act based on the data so I was
trying to keep the overhead down. Guess I have no choice but to do it the
long way around.

Thanks for the feedback.

/// Display data calls a delegate which inturn is sent to an event which
handles the data.
private void AcceptData(IAsyncResult result)
{
try
{
StateObject so = (StateObject)result.AsyncState;
if(so.workSocket == null || !so.workSocket.Connected)
return;

int bytes = so.workSocket.EndReceive(result);

if(bytes > 0)
{
this.displayData(so.buffer, bytes);
}
else
{
this.stop = true;
}
recDone.Set();
}
catch(Exception ex)
{ System.Diagnostics.Debug.WriteLine(ex.Message); }
}
Regards,
John
Nov 16 '05 #4
Helge Jensen

Well I am not trying to send the data down the same stream. I am just
sending it to a TCP socket which is connected. The problem seems to be that
if the receiving function does not take the data from the stream fast
enought I end up with more then one data group in a packet. Now the problem
is taking the data apart. I have another program that uses header when
sending the data I was just trying to avoid in here.

Thanks for the detailed answer!

Regards,
John
Nov 16 '05 #5
John J. Hughes II wrote:
Helge Jensen

Well I am not trying to send the data down the same stream. I am just
sending it to a TCP socket which is connected.
Arent you serializing objects and sending multiple objects through the
same connection and deserializing them when they get to their endpoint?
That's what the code reads like to me, otherwise you can simply pass a
new NetworkStream(socket) to Deserialize().

You do NOT want to put the data in a memory-stream, *trust* me. It's
because of the .NET garbage-collector: If the MemoryStream contains less
than 85kb data it will be moved for (probably) every garbage-collection,
which means a copy of a large chunk. If the MemoryStream contains more
than 85kb it will be allocates on the large object heap, and .NET is
very reluctant to free that memory.

Try writing a test-program that sends a few hundred 1Mb objects throgh
and watch your machine crumble :)

Kamstrup (my workplace) used to serialize/deserialize to memory when I
got there, sending roughly 1Mb worth of serialized objects. But that
would make win32 come to a halt, .NET expending >400Mb of memory even
though only 1Mb was sent at a time.

Now, with my new solution, .NET stays below 5Mb mem-usage.
I have also noticed that the number of bytes recieved is always bigger > then the number of bytes deserizlized, any clue why?

As I said, the BinarySerializer Deserialize() doesn't read all the data
that Serialize() writes, AND it Close()'es the stream afterwards.
Now the problem
is taking the data apart. I have another program that uses header when
sending the data I was just trying to avoid in here.
If you *do* write to MemoryStream's, then you can easily attach
data-length-headers to the data sent, and workaround your problem, as I
suspect you are saying here?

My method is just a streaming way of attaching the lengths, instead of
using a MemoryStream, and then some added bells&whistles from my
previous experiences with protocols :)

There is *no* way around knowing the lengths generated by Serialize if
you wish to read multiple objects from the same connection. I have found
no simple way to predict how many bytes Deserialize doesn't read.
Thanks for the detailed answer!


No problem, I wrestled this beast for about 25hrs of development time,
don't wan't others to go through the same experience.

--
Helge
Nov 16 '05 #6
Code now available as http://slog.dk/~jensen/download/ksio.2705.zip,
straight out of Kamstrup's Subversion-repository.

You are free to do as you please with the code, and welcome to patch it,
and even more welcome to contribute a patch back :)

To make it compile, remove the prebuild-steps (they insert
subversion-specific information not available in the .zip file) and
remove the svn.cs files from the projects (they are generated in the
prebuild steps).

--
Helge
Nov 16 '05 #7
John,

My gut feeling is that you shouldn't be doing BinaryFormatter's work, i.e.
you shouldn't have to figure out Length to do a deserialize reliably.

Also, unless you splice out individual streams per object, your multi object
stream cannot be reliable. You will be much better off wrapping that into
another object instead that acts as a collection of these various objects,
i.e. BinaryFormatter must have something atomic to work upon.

- Sahil Malik
http://dotnetjunkies.com/weblog/sahilmalik


"John J. Hughes II" <no@invalid.com> wrote in message
news:uE**************@TK2MSFTNGP12.phx.gbl...
Sahil Malik

Len comes form the socket when I recieved the packet... below is the code
that calls the code that you saw before. I have another system where I
send compressed data that is larger then the buffer size so I send the
size as a header then then wait for all the data to show up. This system
was intented to more or less just monitor the stream and act based on the
data so I was trying to keep the overhead down. Guess I have no choice
but to do it the long way around.

Thanks for the feedback.

/// Display data calls a delegate which inturn is sent to an event which
handles the data.
private void AcceptData(IAsyncResult result)
{
try
{
StateObject so = (StateObject)result.AsyncState;
if(so.workSocket == null || !so.workSocket.Connected)
return;

int bytes = so.workSocket.EndReceive(result);

if(bytes > 0)
{
this.displayData(so.buffer, bytes);
}
else
{
this.stop = true;
}
recDone.Set();
}
catch(Exception ex)
{ System.Diagnostics.Debug.WriteLine(ex.Message); }
}
Regards,
John

Nov 16 '05 #8
Helge,

Awesome inputs !!!

I just recommended something similar to what you just said here, and I
completely concur with your views.

- Sahil Malik
http://dotnetjunkies.com/weblog/sahilmalik
"Helge Jensen" <he**********@slog.dk> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
John J. Hughes II wrote:
Helge Jensen

Well I am not trying to send the data down the same stream. I am just
sending it to a TCP socket which is connected.


Arent you serializing objects and sending multiple objects through the
same connection and deserializing them when they get to their endpoint?
That's what the code reads like to me, otherwise you can simply pass a new
NetworkStream(socket) to Deserialize().

You do NOT want to put the data in a memory-stream, *trust* me. It's
because of the .NET garbage-collector: If the MemoryStream contains less
than 85kb data it will be moved for (probably) every garbage-collection,
which means a copy of a large chunk. If the MemoryStream contains more
than 85kb it will be allocates on the large object heap, and .NET is very
reluctant to free that memory.

Try writing a test-program that sends a few hundred 1Mb objects throgh and
watch your machine crumble :)

Kamstrup (my workplace) used to serialize/deserialize to memory when I got
there, sending roughly 1Mb worth of serialized objects. But that would
make win32 come to a halt, .NET expending >400Mb of memory even though
only 1Mb was sent at a time.

Now, with my new solution, .NET stays below 5Mb mem-usage.
I have also noticed that the number of bytes recieved is always

bigger > then the number of bytes deserizlized, any clue why?

As I said, the BinarySerializer Deserialize() doesn't read all the data
that Serialize() writes, AND it Close()'es the stream afterwards.
Now the problem
is taking the data apart. I have another program that uses header when
sending the data I was just trying to avoid in here.


If you *do* write to MemoryStream's, then you can easily attach
data-length-headers to the data sent, and workaround your problem, as I
suspect you are saying here?

My method is just a streaming way of attaching the lengths, instead of
using a MemoryStream, and then some added bells&whistles from my previous
experiences with protocols :)

There is *no* way around knowing the lengths generated by Serialize if you
wish to read multiple objects from the same connection. I have found no
simple way to predict how many bytes Deserialize doesn't read.
Thanks for the detailed answer!


No problem, I wrestled this beast for about 25hrs of development time,
don't wan't others to go through the same experience.

--
Helge

Nov 16 '05 #9
> You do NOT want to put the data in a memory-stream, *trust* me. It's
because of the .NET garbage-collector: If the MemoryStream contains less
than 85kb data it will be moved for (probably) every garbage-collection,
which means a copy of a large chunk. If the MemoryStream contains more
than 85kb it will be allocates on the large object heap, and .NET is very
reluctant to free that memory.

<-- I was trying to validate that paragraph. Look at the code below.

static void Main(string[] args)
{
int i;
byte[] dummydata = System.Text.Encoding.UTF8.GetBytes("This is some
dummydata, who cares what's in it as long as it is some decent length. I
think we've reached a decent length now.") ;
for (i = 0; i <= 200000; i++)
{
Console.WriteLine("Iteration : " + i.ToString());
MemoryStream ms = new MemoryStream();
ms.Write(dummydata, 0, dummydata.Length);
}
Console.Read();
}

My mem usage didn't go crazy, and really why should it .. MemoryStream is a
reference type.

What am I missing? :)

- Sahil Malik
http://dotnetjunkies.com/weblog/sahilmalik

"Helge Jensen" <he**********@slog.dk> wrote in message
news:%2****************@tk2msftngp13.phx.gbl... John J. Hughes II wrote:
Helge Jensen

Well I am not trying to send the data down the same stream. I am just
sending it to a TCP socket which is connected.


Arent you serializing objects and sending multiple objects through the
same connection and deserializing them when they get to their endpoint?
That's what the code reads like to me, otherwise you can simply pass a new
NetworkStream(socket) to Deserialize().

You do NOT want to put the data in a memory-stream, *trust* me. It's
because of the .NET garbage-collector: If the MemoryStream contains less
than 85kb data it will be moved for (probably) every garbage-collection,
which means a copy of a large chunk. If the MemoryStream contains more
than 85kb it will be allocates on the large object heap, and .NET is very
reluctant to free that memory.

Try writing a test-program that sends a few hundred 1Mb objects throgh and
watch your machine crumble :)

Kamstrup (my workplace) used to serialize/deserialize to memory when I got
there, sending roughly 1Mb worth of serialized objects. But that would
make win32 come to a halt, .NET expending >400Mb of memory even though
only 1Mb was sent at a time.

Now, with my new solution, .NET stays below 5Mb mem-usage.
I have also noticed that the number of bytes recieved is always

bigger > then the number of bytes deserizlized, any clue why?

As I said, the BinarySerializer Deserialize() doesn't read all the data
that Serialize() writes, AND it Close()'es the stream afterwards.
Now the problem
is taking the data apart. I have another program that uses header when
sending the data I was just trying to avoid in here.


If you *do* write to MemoryStream's, then you can easily attach
data-length-headers to the data sent, and workaround your problem, as I
suspect you are saying here?

My method is just a streaming way of attaching the lengths, instead of
using a MemoryStream, and then some added bells&whistles from my previous
experiences with protocols :)

There is *no* way around knowing the lengths generated by Serialize if you
wish to read multiple objects from the same connection. I have found no
simple way to predict how many bytes Deserialize doesn't read.
Thanks for the detailed answer!


No problem, I wrestled this beast for about 25hrs of development time,
don't wan't others to go through the same experience.

--
Helge

Nov 16 '05 #10
Sahil Malik wrote:

[ Sahil Malik trying to get large-object-heap problems ]
What am I missing? :)


You are just writing to one MemoryStream, which does have O(n)
mem-usage, it's not an amortization problem (like the one in

Below is the test-program that i originally used to check my assumption.
BTW: That was before .net-sp1, so things may have changed.

I have tried running it again today on SP1, and it doesn't seem to be as
bad anymore. The specific problems I had involved a server that had the
SoapFormatter leak as well, so it may have manifested worse on that machine.

The .NET GC fan-crowd is gonna come down on me like a ton of bricks
saying that the memory-profile of this is just a feature of the GC, not
collecting that memory, reusing it and giving it back to the OS if
needed. But my observation at the time was, that .NET processes using
the large-memory-heap could grind the machine to a halt, and even cause
out-of-memory situations by not releasing memory not referenced by any
object.

The program should use roughly 3*bts.Length[1] memory ~ 30Mb (bts,
stream, bts2) but did eat up all available RAM on an 256Mb machine,
making all other programs swap out, and the machine was unable to
recover from that state, since the TaskManager couldn't start so i was
unable to kill the program.

1. It is checked that the serialization is roughly the size of bts.Length.

--
Helge
Nov 16 '05 #11
Helge Jensen wrote:
mem-usage, it's not an amortization problem (like the one in


ListView, where inserting elements seems to be O(n^2)

--
Helge
Nov 16 '05 #12
Helge Jensen

Yes I am serializing them through the same connection and if I implement
handshaking which I have done in the past with a header showing the expected
size it works fine. Normally protocol stuff: send header with size, read
data until size reached, ack data, send next header/data, etc...

I do try avoid using a memory stream when possible if for no other reason it
has more overhead then a byte array but as far as I am aware the only way to
deserialize the data is to create a memory stream. I try to compensate for
the memory issued but setting values to null when done and also manually
disposing of object when possible. Lets face it .NET like to eat memory and
is not always very quick about giving it back.

As I said I have another application that does handshaking with large data
chucks which I compress before sending and have not really noticed a large
problem with memory usage. I have allocated up to 50 meg chuck, compressed
them down to couple megs and send them, normally the program does not go
over 150 meg usage and that is with debugging turned on.

But yes I agree I am going to have to use some kind of protocol and I will
not put it in a memory stream to decode later. I was just hoping when I
started this thread they MS had built something in that I was not seeing and
based on this thread it does not exist.

Regards,
John
Nov 16 '05 #13
Helge Jensen

Wow, thanks for the code... it will take a while to digest but what I have
seen looks good :)

I put the link and e-mail address in the project so if I find anything I
will update you.

Regards,
John
Nov 16 '05 #14
Sahil Malik

Yes I agree it needs a wrapper.

Regards,
John
Nov 16 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Willoughby Bridge | last post by:
Hi - Having trouble getting a multipart series of forms to move to the next form. The problem line is: <form method="post" enctype="multipart/form-data" action="Data_Form1.php"> If the...
11
by: KarimL | last post by:
Thanks for your advices... but i need to get the Image height because i dynamically resize the height of my webcontrol based on the image height. More i just have the url (relative parth) to the...
2
by: lanmou | last post by:
hi, i am creating a form in my application which dynamically creates controls by getting information from a table in ms access database .now i would like it to get the text by using another table ....
6
by: DBC User | last post by:
I have couple of object I serialise and store them in file between session. If you open the files you could see the string values. I want a way to encrypt the data so that if anyone opens the file...
2
by: jodleren | last post by:
Hi! I am making an option, which opens a small window with a picture in it and data about it. I just want a JS script, which will get the picture size, and then set the window accordingly? ...
1
davydany
by: davydany | last post by:
Hey guys...a n00b Here for this site. I'm making a sequence class for my C++ class. And The thing is in the array that I have, lets say i put in {13,17,38,18}, when i see the current values for the...
2
by: rustyc | last post by:
Well, here's my first post in this forum (other than saying 'HI' over in the hi forum ;-) As I said over there: ... for a little side project at home, I'm writing a ham radio web site in...
4
by: rakesh.usenet | last post by:
For a particular application of mine - I need a simulation of byte array output stream. * write data onto a stream * getback the contiguous content as an array later for network transport. ...
7
vikas251074
by: vikas251074 | last post by:
I am getting error above in following code since few days giving tension day and night. How can I solve this? I am facing since Oct.25. in line no. 362 After doing a lot of homework, I am...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.