123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841 |
- #if true
- using System;
- using System.Collections.Generic;
- using SharpCompress.Compressors.Rar.UnpackV1.Decode;
- using SharpCompress.Compressors.Rar.VM;
- using size_t=System.UInt32;
- using UnpackBlockHeader = SharpCompress.Compressors.Rar.UnpackV1;
- namespace SharpCompress.Compressors.Rar.UnpackV1
- {
- internal partial class Unpack
- {
-
- private const int MAX_QUICK_DECODE_BITS = 10;
-
-
- private const int MAX_UNPACK_FILTERS = 8192;
-
-
-
- private const int MAX3_UNPACK_FILTERS = 8192;
-
-
-
-
- private const int MAX3_UNPACK_CHANNELS = 1024;
-
-
- private const int MAX_FILTER_BLOCK_SIZE = 0x400000;
-
-
- private const int UNPACK_MAX_WRITE = 0x400000;
-
-
- private bool TablesRead5;
- private int WriteBorder;
-
- private const int MaxWinSize = PackDef.MAXWINSIZE;
- private const int MaxWinMask = PackDef.MAXWINMASK;
- private int UnpPtr { get { return unpPtr; } set { unpPtr = value; } }
- private int ReadBorder { get { return readBorder; } set { readBorder = value; } }
- private long DestUnpSize { get { return destUnpSize; } set { destUnpSize = value; } }
- private long WrittenFileSize { get { return writtenFileSize; } set { writtenFileSize = value; } }
- private byte[] Window{ get { return window; } }
- private uint LastLength { get { return (uint)lastLength; } set { lastLength = (int)value; } }
- private uint OldDistN(int i) { return (uint)oldDist[i]; }
- private void SetOldDistN(int i, uint value) { oldDist[i] = (int)value; }
- private int WrPtr { get { return wrPtr; } set { wrPtr = value; } }
- private Unpack BlockHeader { get { return this; } }
- private Unpack Header { get { return this; } }
- private int ReadTop { get { return readTop; } set { readTop = value; } }
- private List<UnpackFilter> Filters { get { return filters; } }
- public int BlockSize;
- public int BlockBitSize;
- public int BlockStart;
- public int HeaderSize;
- public bool LastBlockInFile;
- public bool TablePresent;
- public void Unpack5(bool Solid) {
- FileExtracted=true;
- if (!Suspended)
- {
- UnpInitData(Solid);
- if (!UnpReadBuf())
- return;
-
-
-
- if (!ReadBlockHeader() ||
- !ReadTables() || !TablesRead5)
- return;
- }
- while (true)
- {
- UnpPtr &= MaxWinMask;
- if (Inp.InAddr>=ReadBorder)
- {
- bool FileDone=false;
-
-
- while (Inp.InAddr>BlockHeader.BlockStart+BlockHeader.BlockSize-1 ||
- Inp.InAddr==BlockHeader.BlockStart+BlockHeader.BlockSize-1 &&
- Inp.InBit>=BlockHeader.BlockBitSize)
- {
- if (BlockHeader.LastBlockInFile)
- {
- FileDone=true;
- break;
- }
- if (!ReadBlockHeader() || !ReadTables())
- return;
- }
- if (FileDone || !UnpReadBuf())
- break;
- }
- if (((WriteBorder-UnpPtr) & MaxWinMask)<PackDef.MAX_LZ_MATCH+3 && WriteBorder!=UnpPtr)
- {
- UnpWriteBuf();
- if (WrittenFileSize>DestUnpSize)
- return;
- if (Suspended)
- {
- FileExtracted=false;
- return;
- }
- }
-
- uint MainSlot= this.DecodeNumber(LD);
- if (MainSlot<256)
- {
- Window[UnpPtr++]=(byte)MainSlot;
- continue;
- }
- if (MainSlot>=262)
- {
- uint Length=SlotToLength(MainSlot-262);
-
- int DBits;
- uint Distance=1,DistSlot=this.DecodeNumber(DD);
- if (DistSlot<4)
- {
- DBits=0;
- Distance+=DistSlot;
- }
- else
- {
-
- DBits=(int)(DistSlot/2 - 1);
- Distance+=(2 | (DistSlot & 1)) << DBits;
- }
- if (DBits>0)
- {
- if (DBits>=4)
- {
- if (DBits>4)
- {
- Distance+=((Inp.getbits()>>(36-DBits))<<4);
- Inp.AddBits(DBits-4);
- }
-
- uint LowDist=this.DecodeNumber(LDD);
- Distance+=LowDist;
- }
- else
- {
- Distance+=Inp.getbits()>>(32-DBits);
- Inp.AddBits(DBits);
- }
- }
- if (Distance>0x100)
- {
- Length++;
- if (Distance>0x2000)
- {
- Length++;
- if (Distance>0x40000)
- Length++;
- }
- }
- InsertOldDist(Distance);
- LastLength=Length;
- CopyString(Length,Distance);
- continue;
- }
- if (MainSlot==256)
- {
- UnpackFilter Filter = new UnpackFilter();
- if (!ReadFilter(Filter) || !AddFilter(Filter))
- break;
- continue;
- }
- if (MainSlot==257)
- {
- if (LastLength!=0)
-
- CopyString(LastLength,OldDistN(0));
- continue;
- }
- if (MainSlot<262)
- {
-
- int DistNum=(int)(MainSlot-258);
-
- uint Distance=OldDistN(DistNum);
-
- for (int I=DistNum;I>0;I--)
-
- SetOldDistN(I, OldDistN(I-1));
-
- SetOldDistN(0, Distance);
- uint LengthSlot=this.DecodeNumber(RD);
- uint Length=SlotToLength(LengthSlot);
- LastLength=Length;
- CopyString(Length,Distance);
- continue;
- }
- }
- UnpWriteBuf();
- }
- private uint ReadFilterData()
- {
- uint ByteCount=(Inp.fgetbits()>>14)+1;
- Inp.AddBits(2);
- uint Data=0;
-
- for (int I=0;I<ByteCount;I++)
- {
- Data+=(Inp.fgetbits()>>8)<<(I*8);
- Inp.AddBits(8);
- }
- return Data;
- }
- private bool ReadFilter(UnpackFilter Filter)
- {
- if (!Inp.ExternalBuffer && Inp.InAddr>ReadTop-16)
- if (!UnpReadBuf())
- return false;
- Filter.uBlockStart=ReadFilterData();
- Filter.uBlockLength=ReadFilterData();
- if (Filter.BlockLength>MAX_FILTER_BLOCK_SIZE)
- Filter.BlockLength=0;
-
- Filter.Type=(byte)(Inp.fgetbits()>>13);
- Inp.faddbits(3);
- if (Filter.Type==(byte)FilterType.FILTER_DELTA)
- {
-
- Filter.Channels=(byte)((Inp.fgetbits()>>11)+1);
- Inp.faddbits(5);
- }
- return true;
- }
- private bool AddFilter(UnpackFilter Filter)
- {
- if (Filters.Count>=MAX_UNPACK_FILTERS)
- {
- UnpWriteBuf();
- if (Filters.Count>=MAX_UNPACK_FILTERS)
- InitFilters();
- }
-
-
-
- Filter.NextWindow=WrPtr!=UnpPtr && ((WrPtr-UnpPtr)&MaxWinMask)<=Filter.BlockStart;
- Filter.uBlockStart=(uint)((Filter.BlockStart+UnpPtr)&MaxWinMask);
- Filters.Add(Filter);
- return true;
- }
- private bool UnpReadBuf()
- {
- int DataSize=ReadTop-Inp.InAddr;
- if (DataSize<0)
- return false;
- BlockHeader.BlockSize-=Inp.InAddr-BlockHeader.BlockStart;
- if (Inp.InAddr>MAX_SIZE/2)
- {
-
-
-
-
-
-
- if (DataSize>0)
-
- Array.Copy(InBuf, inAddr, InBuf, 0, DataSize);
-
-
- Inp.InAddr=0;
- ReadTop=DataSize;
- }
- else
- DataSize=ReadTop;
- int ReadCode=0;
- if (MAX_SIZE!=DataSize)
-
- ReadCode = readStream.Read(InBuf, DataSize, MAX_SIZE-DataSize);
- if (ReadCode>0)
- ReadTop+=ReadCode;
- ReadBorder=ReadTop-30;
- BlockHeader.BlockStart=Inp.InAddr;
- if (BlockHeader.BlockSize!=-1)
- {
-
-
- ReadBorder=Math.Min(ReadBorder,BlockHeader.BlockStart+BlockHeader.BlockSize-1);
- }
- return ReadCode!=-1;
- }
-
- private void UnpInitData50(bool Solid)
- {
- if (!Solid)
- TablesRead5=false;
- }
- private bool ReadBlockHeader()
- {
- Header.HeaderSize=0;
- if (!Inp.ExternalBuffer && Inp.InAddr>ReadTop-7)
- if (!UnpReadBuf())
- return false;
-
- Inp.faddbits((uint)((8-Inp.InBit)&7));
-
- byte BlockFlags=(byte)(Inp.fgetbits()>>8);
- Inp.faddbits(8);
-
- uint ByteCount=(uint)(((BlockFlags>>3)&3)+1);
-
- if (ByteCount==4)
- return false;
-
- Header.HeaderSize=(int)(2+ByteCount);
- Header.BlockBitSize=(BlockFlags&7)+1;
- byte SavedCheckSum=(byte)(Inp.fgetbits()>>8);
- Inp.faddbits(8);
- int BlockSize=0;
-
- for (int I=0;I<ByteCount;I++)
- {
-
- BlockSize+=(int)(Inp.fgetbits()>>8)<<(I*8);
- Inp.AddBits(8);
- }
- Header.BlockSize=BlockSize;
- byte CheckSum=(byte)(0x5a^BlockFlags^BlockSize^(BlockSize>>8)^(BlockSize>>16));
- if (CheckSum!=SavedCheckSum)
- return false;
- Header.BlockStart=Inp.InAddr;
- ReadBorder=Math.Min(ReadBorder,Header.BlockStart+Header.BlockSize-1);
- Header.LastBlockInFile=(BlockFlags & 0x40)!=0;
- Header.TablePresent=(BlockFlags & 0x80)!=0;
- return true;
- }
- }
- }
- #endif
|