vote up 1 vote down star

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.

flag

3 Answers

vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
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
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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