12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #ifndef _RAR_RECVOL_
- #define _RAR_RECVOL_
- #define REV5_SIGN "Rar!\x1aRev"
- #define REV5_SIGN_SIZE 8
- class RecVolumes3
- {
- private:
- File *SrcFile[256];
- Array<byte> Buf;
- #ifdef RAR_SMP
- ThreadPool *RSThreadPool;
- #endif
- public:
- RecVolumes3(RAROptions *Cmd,bool TestOnly);
- ~RecVolumes3();
- void Make(RAROptions *Cmd,wchar *ArcName);
- bool Restore(RAROptions *Cmd,const wchar *Name,bool Silent);
- void Test(RAROptions *Cmd,const wchar *Name);
- };
- struct RecVolItem
- {
- File *f;
- wchar Name[NM];
- uint CRC;
- uint64 FileSize;
- bool New;
- bool Valid;
- };
- class RecVolumes5;
- struct RecRSThreadData
- {
- RecVolumes5 *RecRSPtr;
- RSCoder16 *RS;
- bool Encode;
- uint DataNum;
- const byte *Data;
- size_t StartPos;
- size_t Size;
- };
- class RecVolumes5
- {
- private:
- void ProcessRS(RAROptions *Cmd,uint DataNum,const byte *Data,uint MaxRead,bool Encode);
- void ProcessRS(RAROptions *Cmd,uint MaxRead,bool Encode);
- uint ReadHeader(File *RecFile,bool FirstRev);
- Array<RecVolItem> RecItems;
- byte *RealReadBuffer;
- byte *ReadBuffer;
- byte *RealBuf;
- byte *Buf;
- size_t RecBufferSize;
- uint DataCount;
- uint RecCount;
- uint TotalCount;
- bool *ValidFlags;
- uint MissingVolumes;
- #ifdef RAR_SMP
- ThreadPool *RecThreadPool;
- #endif
- uint MaxUserThreads;
- RecRSThreadData *ThreadData;
- public:
- void ProcessAreaRS(RecRSThreadData *td);
- public:
- RecVolumes5(RAROptions *Cmd,bool TestOnly);
- ~RecVolumes5();
- bool Restore(RAROptions *Cmd,const wchar *Name,bool Silent);
- void Test(RAROptions *Cmd,const wchar *Name);
- };
- bool RecVolumesRestore(RAROptions *Cmd,const wchar *Name,bool Silent);
- void RecVolumesTest(RAROptions *Cmd,Archive *Arc,const wchar *Name);
- #endif
|