123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //---------------------------------------------------------------------------
- #ifndef FileBufferH
- #define FileBufferH
- #include <classes.hpp>
- //---------------------------------------------------------------------------
- extern const wchar_t * EOLTypeNames;
- enum TEOLType { eolLF /* \n */, eolCRLF /* \r\n */, eolCR /* \r */ };
- const int cpRemoveCtrlZ = 0x01;
- const int cpRemoveBOM = 0x02;
- //---------------------------------------------------------------------------
- typedef void __fastcall (__closure *TTransferOutEvent)(TObject * Sender, const unsigned char * Data, size_t Len);
- typedef size_t __fastcall (__closure *TTransferInEvent)(TObject * Sender, unsigned char * Data, size_t Len);
- //---------------------------------------------------------------------------
- class TFileBuffer
- {
- public:
- __fastcall TFileBuffer();
- virtual __fastcall ~TFileBuffer();
- void __fastcall Convert(char * Source, char * Dest, int Params, bool & Token);
- void __fastcall Convert(TEOLType Source, TEOLType Dest, int Params, bool & Token);
- void __fastcall Convert(char * Source, TEOLType Dest, int Params, bool & Token);
- void __fastcall Convert(TEOLType Source, char * Dest, int Params, bool & Token);
- void __fastcall Insert(int Index, const char * Buf, int Len);
- void __fastcall Delete(int Index, int Len);
- DWORD __fastcall LoadStream(TStream * Stream, const DWORD Len, bool ForceLen);
- DWORD __fastcall ReadStream(TStream * Stream, const DWORD Len, bool ForceLen);
- DWORD __fastcall LoadFromIn(TTransferInEvent OnTransferIn, TObject * Sender, DWORD Len);
- void __fastcall WriteToStream(TStream * Stream, const DWORD Len);
- void __fastcall WriteToOut(TTransferOutEvent OnTransferOut, TObject * Sender, const DWORD Len);
- void Reset();
- __property TMemoryStream * Memory = { read=FMemory };
- __property char * Data = { read=GetData };
- __property int Size = { read=FSize, write=SetSize };
- private:
- TMemoryStream * FMemory;
- int FSize;
- char * __fastcall GetData() const { return (char *)FMemory->Memory; }
- char * __fastcall GetPointer() const { return GetData() + GetPosition(); }
- void NeedSpace(DWORD Size);
- void __fastcall SetSize(int value);
- int __fastcall GetPosition() const { return (int)FMemory->Position; }
- void __fastcall ProcessRead(DWORD Len, DWORD Result);
- };
- //---------------------------------------------------------------------------
- class TSafeHandleStream : public THandleStream
- {
- public:
- __fastcall TSafeHandleStream(int AHandle);
- __fastcall TSafeHandleStream(THandleStream * Source, bool Own);
- static TSafeHandleStream * CreateFromFile(const UnicodeString & FileName, unsigned short Mode);
- virtual __fastcall ~TSafeHandleStream();
- virtual int __fastcall Read(void * Buffer, int Count);
- virtual int __fastcall Write(const void * Buffer, int Count);
- virtual int __fastcall Read(System::DynamicArray<System::Byte> Buffer, int Offset, int Count);
- virtual int __fastcall Write(const System::DynamicArray<System::Byte> Buffer, int Offset, int Count);
- private:
- THandleStream * FSource;
- bool FOwned;
- };
- //---------------------------------------------------------------------------
- char * __fastcall EOLToStr(TEOLType EOLType);
- //---------------------------------------------------------------------------
- #endif
|