123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- //---------------------------------------------------------------------------
- #ifndef CopyParamH
- #define CopyParamH
- #include "FileMasks.h"
- #include "FileBuffer.h"
- #include "RemoteFiles.h"
- #include "Exceptions.h"
- //---------------------------------------------------------------------------
- // When adding new options, mind TCopyParamType::GetLogStr()
- enum TOperationSide { osLocal, osRemote, osCurrent };
- enum TFileNameCase { ncNoChange, ncUpperCase, ncLowerCase, ncFirstUpperCase, ncLowerCaseShort };
- // TScript::OptionProc depend on the order
- enum TTransferMode { tmBinary, tmAscii, tmAutomatic };
- enum TResumeSupport { rsOn, rsSmart, rsOff };
- class THierarchicalStorage;
- const int cpaIncludeMaskOnly = 0x01;
- const int cpaNoTransferMode = 0x02;
- const int cpaNoIncludeMask = 0x04;
- const int cpaNoClearArchive = 0x08;
- const int cpaNoPreserveTime = 0x10;
- const int cpaNoRights = 0x20;
- const int cpaNoPreserveReadOnly = 0x40;
- const int cpaNoIgnorePermErrors = 0x80;
- const int cpaNoNewerOnly = 0x100;
- const int cpaNoRemoveCtrlZ = 0x200;
- const int cpaNoRemoveBOM = 0x400;
- const int cpaNoPreserveTimeDirs = 0x800;
- const int cpaNoResumeSupport = 0x1000;
- const int cpaNoEncryptNewFiles = 0x2000;
- const int cpaNoCalculateSize = 0x4000;
- //---------------------------------------------------------------------------
- struct TUsableCopyParamAttrs
- {
- int General;
- int Upload;
- int Download;
- };
- //---------------------------------------------------------------------------
- class TCopyParamType
- {
- private:
- TFileMasks FAsciiFileMask;
- TFileNameCase FFileNameCase;
- bool FPreserveReadOnly;
- bool FPreserveTime;
- bool FPreserveTimeDirs;
- TRights FRights;
- TTransferMode FTransferMode;
- bool FAddXToDirectories;
- bool FPreserveRights;
- bool FIgnorePermErrors;
- TResumeSupport FResumeSupport;
- __int64 FResumeThreshold;
- UnicodeString __fastcall GetLogStr() const;
- wchar_t FInvalidCharsReplacement;
- UnicodeString FLocalInvalidChars;
- UnicodeString FTokenizibleChars;
- bool FCalculateSize;
- UnicodeString FFileMask;
- TFileMasks FIncludeFileMask;
- std::unique_ptr<TStringList> FTransferSkipList;
- UnicodeString FTransferResumeFile;
- bool FClearArchive;
- bool FRemoveCtrlZ;
- bool FRemoveBOM;
- unsigned long FCPSLimit;
- bool FNewerOnly;
- bool FEncryptNewFiles;
- bool FExcludeHiddenFiles;
- bool FExcludeEmptyDirectories;
- __int64 FSize;
- TOnceDoneOperation FOnceDoneOperation;
- TTransferOutEvent FOnTransferOut;
- TTransferInEvent FOnTransferIn;
- static const wchar_t TokenPrefix = L'%';
- static const wchar_t NoReplacement = wchar_t(false);
- static const wchar_t TokenReplacement = wchar_t(true);
- void __fastcall SetLocalInvalidChars(UnicodeString value);
- bool __fastcall GetReplaceInvalidChars() const;
- void __fastcall SetReplaceInvalidChars(bool value);
- UnicodeString __fastcall RestoreChars(UnicodeString FileName) const;
- void __fastcall DoGetInfoStr(UnicodeString Separator, int Attrs,
- UnicodeString & Result, bool & SomeAttrIncluded, const UnicodeString & Link, UnicodeString & ScriptArgs,
- TAssemblyLanguage Language, UnicodeString & AssemblyCode) const;
- TStrings * __fastcall GetTransferSkipList() const;
- void __fastcall SetTransferSkipList(TStrings * value);
- public:
- __fastcall TCopyParamType();
- __fastcall TCopyParamType(const TCopyParamType & Source);
- virtual __fastcall ~TCopyParamType();
- TCopyParamType & __fastcall operator =(const TCopyParamType & rhp);
- virtual void __fastcall Assign(const TCopyParamType * Source);
- virtual void __fastcall Default();
- UnicodeString __fastcall ChangeFileName(UnicodeString FileName,
- TOperationSide Side, bool FirstLevel) const;
- int __fastcall LocalFileAttrs(const TRights & Rights) const;
- TRights __fastcall RemoteFileRights(int Attrs) const;
- bool __fastcall UseAsciiTransfer(UnicodeString FileName, TOperationSide Side,
- const TFileMasks::TParams & Params) const;
- bool __fastcall AllowResume(__int64 Size) const;
- bool __fastcall ResumeTransfer(UnicodeString FileName) const;
- UnicodeString __fastcall ValidLocalFileName(UnicodeString FileName) const;
- UnicodeString __fastcall ValidLocalPath(UnicodeString Path) const;
- bool __fastcall AllowAnyTransfer() const;
- bool __fastcall AllowTransfer(UnicodeString FileName, TOperationSide Side,
- bool Directory, const TFileMasks::TParams & Params, bool Hidden) const;
- bool __fastcall SkipTransfer(UnicodeString FileName, bool Directory) const;
- virtual void __fastcall Load(THierarchicalStorage * Storage);
- virtual void __fastcall Save(THierarchicalStorage * Storage, const TCopyParamType * Defaults = NULL) const;
- UnicodeString __fastcall GetInfoStr(UnicodeString Separator, int Attrs) const;
- bool __fastcall AnyUsableCopyParam(int Attrs) const;
- UnicodeString __fastcall GenerateTransferCommandArgs(int Attrs, const UnicodeString & Link) const;
- UnicodeString __fastcall GenerateAssemblyCode(TAssemblyLanguage Language, int Attrs) const;
- bool __fastcall operator==(const TCopyParamType & rhp) const;
- __property TFileMasks AsciiFileMask = { read = FAsciiFileMask, write = FAsciiFileMask };
- __property TFileNameCase FileNameCase = { read = FFileNameCase, write = FFileNameCase };
- __property bool PreserveReadOnly = { read = FPreserveReadOnly, write = FPreserveReadOnly };
- __property bool PreserveTime = { read = FPreserveTime, write = FPreserveTime };
- __property bool PreserveTimeDirs = { read = FPreserveTimeDirs, write = FPreserveTimeDirs };
- __property TRights Rights = { read = FRights, write = FRights };
- __property TTransferMode TransferMode = { read = FTransferMode, write = FTransferMode };
- __property UnicodeString LogStr = { read=GetLogStr };
- __property bool AddXToDirectories = { read=FAddXToDirectories, write=FAddXToDirectories };
- __property bool PreserveRights = { read = FPreserveRights, write = FPreserveRights };
- __property bool IgnorePermErrors = { read = FIgnorePermErrors, write = FIgnorePermErrors };
- __property TResumeSupport ResumeSupport = { read = FResumeSupport, write = FResumeSupport };
- __property __int64 ResumeThreshold = { read = FResumeThreshold, write = FResumeThreshold };
- __property wchar_t InvalidCharsReplacement = { read = FInvalidCharsReplacement, write = FInvalidCharsReplacement };
- __property bool ReplaceInvalidChars = { read = GetReplaceInvalidChars, write = SetReplaceInvalidChars };
- __property UnicodeString LocalInvalidChars = { read = FLocalInvalidChars, write = SetLocalInvalidChars };
- __property bool CalculateSize = { read = FCalculateSize, write = FCalculateSize };
- __property UnicodeString FileMask = { read = FFileMask, write = FFileMask };
- __property TFileMasks IncludeFileMask = { read = FIncludeFileMask, write = FIncludeFileMask };
- __property TStrings * TransferSkipList = { read = GetTransferSkipList, write = SetTransferSkipList };
- __property UnicodeString TransferResumeFile = { read = FTransferResumeFile, write = FTransferResumeFile };
- __property bool ClearArchive = { read = FClearArchive, write = FClearArchive };
- __property bool RemoveCtrlZ = { read = FRemoveCtrlZ, write = FRemoveCtrlZ };
- __property bool RemoveBOM = { read = FRemoveBOM, write = FRemoveBOM };
- __property unsigned long CPSLimit = { read = FCPSLimit, write = FCPSLimit };
- __property bool NewerOnly = { read = FNewerOnly, write = FNewerOnly };
- __property bool EncryptNewFiles = { read = FEncryptNewFiles, write = FEncryptNewFiles };
- __property bool ExcludeHiddenFiles = { read = FExcludeHiddenFiles, write = FExcludeHiddenFiles };
- __property bool ExcludeEmptyDirectories = { read = FExcludeEmptyDirectories, write = FExcludeEmptyDirectories };
- __property __int64 Size = { read = FSize, write = FSize };
- __property TOnceDoneOperation OnceDoneOperation = { read = FOnceDoneOperation, write = FOnceDoneOperation };
- __property TTransferOutEvent OnTransferOut = { read = FOnTransferOut, write = FOnTransferOut };
- __property TTransferInEvent OnTransferIn = { read = FOnTransferIn, write = FOnTransferIn };
- };
- //---------------------------------------------------------------------------
- unsigned long __fastcall GetSpeedLimit(const UnicodeString & Text);
- UnicodeString __fastcall SetSpeedLimit(unsigned long Limit);
- void __fastcall CopySpeedLimits(TStrings * Source, TStrings * Dest);
- TOperationSide ReverseOperationSide(TOperationSide Side);
- extern const unsigned long MinSpeed;
- extern const unsigned long MaxSpeed;
- //---------------------------------------------------------------------------
- #endif
|