up vote 1 down vote favorite
share [g+] share [fb]

I am writing an xmpp library and I am trying to write a stream to support the zlib compressed data. I have two different versions one based on zlib.net and the other using SharpZipLib. The zlib.net version doesn't recognize the compression and the SharpZipLib version enters an infinite loop. You can find the appropriate code at http://github.com/coder2000/ubiety/tree/master/ in xmpp.compression.zlib and xmpp.compression.sharpziplib. Any help to solve this problem would be appreciated.

link|improve this question
feedback

3 Answers

This isn't a direct solution to your problem but have you tried System.IO.Compression.GZipStream or DeflateStream?

link|improve this answer
feedback

No. I am trying to be as cross platform as possible. I don't know if Mono implements those classes and I didn't know Microsoft wrote classes for zlib compression.

link|improve this answer
They are both based on industry standards, and should work for you. – StingyJack Dec 1 '08 at 1:48
@Coder2000 - you just posted an answer, not a question. Add these comments to your original question. – Jason Jackson Dec 1 '08 at 3:39
feedback

I haven't looked in depth, but it is curious that your SharpZipLib wrapper ignores offset and count in BeginRead:

public override IAsyncResult BeginRead (byte[] buffer, int offset, int count, AsyncCallback cback, object state)
{
  _outBuff = buffer;
  if ( _in.IsNeedingInput )
    return _innerStream.BeginRead(_inBuff, 0, _inBuff.Length, cback, state);

  ZlibStreamAsyncResult ar = new ZlibStreamAsyncResult(state);
  cback(ar);
  return ar;
}

Call me crazy, but probably use GZipOutputStream etc directly (or the System.Compression counterparts)... saves a lot of implementation details...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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