vote up 1 vote down star

The following code throws an EZDecompressionError with message 'Invalid ZStream operation' whenever the line

Reader.Free

is executed. Can someone tell me what's wrong with this code?

Reader := nil;
Decompressor := nil;
InputFile := TFileStream (FileName, fmOpenRead);
try
  Decompressor := TDecompressionStream.Create (InputFile);
  Reader := TReader.Create (Decompressor, 1024);
  SomeString := Reader.ReadString;
finally
  Reader.Free
  Decompressor.Free;
  InputFile.Free;
end;

I tested to change the order of the memory freeing commands but that doesn't seem to help. Leaving out the Reader.Free line of course results in a memory leak.

flag

73% accept rate

1 Answer

vote up 3 vote down check

Smasher

TReader does a FStream.Seek(FBufPos - FBufCount, soCurrent) in its destructor.

The error get's raised because of a backwards seek. If you call Reader.FlushBuffer and Reader.Position := soFromBeginning before freeing the reader, does the error disappear?


From the comments of TDecompressionstream. TDecompressionStream is read-only and unidirectional; you can seek forward in the stream, but not backwards.

Regards,
Lieven

link|flag
The error does not disappear unfortunately...this must be a pretty common usage scenario...I'm really confused...thanks for looking into that! – Smasher Feb 25 at 10:30
The error get's raised because the destructor of TReader probably does a backwards search in your stream. Somehow you have to make sure that this is changed into a forward search to circumvent the exception. – Lieven Feb 25 at 11:14
still crashing :( Is TReader not supposed to be used in conjunction with TDecompressionStream? – Smasher Feb 25 at 14:06
How about decompressing to a TMemoryStream and then use that for the TReader? – Lars Truijens Feb 25 at 14:09
@Smasher. I believe Lars' solution would work. Thanks for stepping in Lars. It "is" odd though as it does looks like a common enough scenario. – Lieven Feb 25 at 15:00
show 2 more comments

Your Answer

Get an OpenID
or

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