// Update.h #ifndef __UPDATE_H #define __UPDATE_H #include "Common/Wildcard.h" #include "Windows/FileFind.h" #include "../../Archive/IArchive.h" #include "UpdateAction.h" #include "ArchiveOpenCallback.h" #include "UpdateCallback.h" #include "Property.h" struct CArchivePath { UString Prefix; // path(folder) prefix including slash UString Name; // base name UString BaseExtension; // archive type extension or "exe" extension UString VolExtension; // archive type extension for volumes bool Temp; UString TempPrefix; // path(folder) for temp location UString TempPostfix; CArchivePath(): Temp(false) {}; void ParseFromPath(const UString &path) { SplitPathToParts(path, Prefix, Name); if (Name.IsEmpty()) return; int dotPos = Name.ReverseFind(L'.'); if (dotPos <= 0) return; if (dotPos == Name.Length() - 1) { Name = Name.Left(dotPos); BaseExtension.Empty(); return; } if (BaseExtension.CompareNoCase(Name.Mid(dotPos + 1)) == 0) { BaseExtension = Name.Mid(dotPos + 1); Name = Name.Left(dotPos); } else BaseExtension.Empty(); } UString GetPathWithoutExt() const { return Prefix + Name; } UString GetFinalPath() const { UString path = GetPathWithoutExt(); if (!BaseExtension.IsEmpty()) path += UString(L'.') + BaseExtension; return path; } UString GetTempPath() const { UString path = TempPrefix + Name; if (!BaseExtension.IsEmpty()) path += UString(L'.') + BaseExtension; path += L".tmp"; path += TempPostfix; return path; } }; struct CUpdateArchiveCommand { CArchivePath ArchivePath; NUpdateArchive::CActionSet ActionSet; }; struct CCompressionMethodMode { #ifndef EXCLUDE_COM UString FilePath; CLSID ClassID; #else UString Name; #endif CObjectVector Properties; }; struct CUpdateOptions { CCompressionMethodMode MethodMode; CObjectVector Commands; bool UpdateArchiveItself; CArchivePath ArchivePath; bool SfxMode; UString SfxModule; bool StdInMode; UString StdInFileName; bool StdOutMode; bool EMailMode; bool EMailRemoveAfter; UString EMailAddress; UString WorkingDir; CUpdateOptions(): UpdateArchiveItself(true), SfxMode(false), StdInMode(false), StdOutMode(false), EMailMode(false), EMailRemoveAfter(false) {}; CRecordVector VolumesSizes; }; struct CErrorInfo { DWORD SystemError; UString FileName; UString FileName2; UString Message; // UStringVector ErrorPaths; // CRecordVector ErrorCodes; CErrorInfo(): SystemError(0) {}; }; struct CUpdateErrorInfo: public CErrorInfo { }; struct IUpdateCallbackUI2: public IUpdateCallbackUI { virtual HRESULT OpenResult(const wchar_t *name, HRESULT result) = 0; virtual HRESULT StartScanning() = 0; virtual HRESULT CanNotFindError(const wchar_t *name, DWORD systemError) = 0; virtual HRESULT FinishScanning() = 0; virtual HRESULT StartArchive(const wchar_t *name, bool updating) = 0; virtual HRESULT FinishArchive() = 0; }; HRESULT UpdateArchive(const NWildcard::CCensor &censor, CUpdateOptions &options, CUpdateErrorInfo &errorInfo, IOpenCallbackUI *openCallback, IUpdateCallbackUI2 *callback); #endif