Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some old codebase where two processes communicate over the socket. It uses the CArchive to communicate over the socket. One process will serialize and other one will derialize. Everything was working for many years. Recently I have started getting some strange exceptions.

We are serializing a class called CTestInfo. This has many members and also many other classes inside. Each class is having its own serialization.

In the send we are serializing, so the code implementation looks like

 Send()//PArt of a class which derives from CSocket
 {
 testInfoOject.Serialize(*ArchiveOut)
 ArchiveOut->Flush()
 }

 CTestInfo::Serialize(CArchive &ar)
 {
       //Set of calls to Member Serialize
       ar.Serialize(member);//Many such calls are there
       if(ar.IsStoring())
 {
    ar<< someintmember;
 }
 else
 {
    ar >> someintmember
 }

 }

We now added at some inner level a few more objects to serialize, then the exception started to occur. That class (CStat) is serializing nothing but a few int and doubles. There were originally few memebers of the same class were being serialized. We just added a few more objects of the class.

The exception is on the recieving end "An attempt was made to access [file] past its end".

When I tried adding logs to see where it happens in the class inside. the [file] is giving a number and is different everytime.

 for (int i=0;i<MAX_TESTS;i++) //MAX_TESTS is 20
 {
     testArray[i].Serialize(); //Actual exception is inside the class But everytime the member is different
 }

In Test array Serialize

 someStatObj.Serialize();
 //Added few more StatObjects to serialize.

The error is different everytime it is not happening on the same CStatObj.

I have been trying out various options, The I have added a ar.Flush() periodically in the inner classes and added a wait while recieving like 5ms. The I am not observing any crahses (Ran for about more than 24 hrs).

I have read that >> << operators are blocking calls. But I am not sure why this problem occurs. There is absolutely no problem with the CStats class as it is not having any logic. All the objects are defined on the stack or as members by value. There are no pointer allocations.

The questions are 1. Is there a possibility that the CSocketFile goes empty for a while while Archive not yet flushed the content on Sending end and receiver trying to read the empty file?

  1. Can this kind of setup with lot of nested classes serializing the whole data without looking for the actual size of the data is correct. [It was working for more than 10 years]

  2. Should I use something like check the buffer of the CArchive atleast have the data for the current read? If yes what functions to use.

Thanks --CH

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.