238 lines
7.3 KiB
ObjectPascal
238 lines
7.3 KiB
ObjectPascal
(* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is TurboPower Abbrevia
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* TurboPower Software
|
|
*
|
|
* Portions created by the Initial Developer are Copyright (C) 1997-2002
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* ***** END LICENSE BLOCK ***** *)
|
|
|
|
{*********************************************************}
|
|
{* ABBREVIA: AbCabMak.pas *}
|
|
{*********************************************************}
|
|
{* ABBREVIA: Cabinet builder component (VCL) *}
|
|
{* See AbQCabMk.pas for the CLX header *}
|
|
{*********************************************************}
|
|
|
|
unit AbCabMak;
|
|
|
|
{$I AbDefine.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes,
|
|
AbCBrows,
|
|
AbArcTyp, AbCabTyp;
|
|
|
|
type
|
|
TAbCustomMakeCab = class(TAbCustomCabBrowser)
|
|
protected {private}
|
|
FFolderThreshold : Longint;
|
|
FCompressionType : TAbCabCompressionType;
|
|
FStoreOptions : TAbStoreOptions;
|
|
FOnSave : TAbArchiveEvent;
|
|
|
|
protected {methods}
|
|
procedure DoSave(Sender : TObject); virtual;
|
|
procedure InitArchive; override;
|
|
procedure SetFolderThreshold(Value : Longint);
|
|
procedure SetCompressionType(Value : TAbCabCompressionType);
|
|
procedure SetFileName(const aFileName : string); override;
|
|
procedure SetStoreOptions( Value : TAbStoreOptions );
|
|
|
|
protected {properties}
|
|
property CompressionType : TAbCabCompressionType
|
|
read FCompressionType
|
|
write SetCompressionType;
|
|
property FolderThreshold : Longint
|
|
read FFolderThreshold
|
|
write SetFolderThreshold;
|
|
property StoreOptions : TAbStoreOptions
|
|
read FStoreOptions
|
|
write SetStoreOptions
|
|
default AbDefStoreOptions;
|
|
|
|
protected {events}
|
|
property OnSave : TAbArchiveEvent
|
|
read FOnSave
|
|
write FOnSave;
|
|
|
|
public {methods}
|
|
constructor Create( AOwner : TComponent ); override;
|
|
procedure AddFiles(const FileMask : string; SearchAttr : Integer );
|
|
procedure AddFilesEx(const FileMask : string;
|
|
const ExclusionMask : string; SearchAttr : Integer );
|
|
procedure StartNewFolder;
|
|
procedure StartNewCabinet;
|
|
end;
|
|
|
|
type
|
|
{$IFDEF HasPlatformsAttribute}
|
|
[ComponentPlatformsAttribute(pidWin32 or pidWin64)]
|
|
{$ENDIF}
|
|
TAbMakeCab = class(TAbCustomMakeCab)
|
|
published
|
|
property ArchiveProgressMeter;
|
|
property BaseDirectory;
|
|
property CabSize;
|
|
property CompressionType;
|
|
property FolderThreshold;
|
|
property ItemProgressMeter;
|
|
property StoreOptions;
|
|
property OnArchiveProgress;
|
|
property OnArchiveItemProgress;
|
|
property OnChange;
|
|
property OnConfirmProcessItem;
|
|
property OnLoad;
|
|
property OnProcessItemFailure;
|
|
property OnRequestImage;
|
|
property OnSave;
|
|
property SetID;
|
|
property SpanningThreshold;
|
|
property TempDirectory;
|
|
property Version;
|
|
property FileName; {must be after OnLoad}
|
|
end;
|
|
{.Z+}
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
|
SysUtils,
|
|
AbExcept,
|
|
AbUtils;
|
|
|
|
{ TAbCustomMakeCab ========================================================= }
|
|
constructor TAbCustomMakeCab.Create( AOwner : TComponent );
|
|
begin
|
|
inherited Create( AOwner );
|
|
FCompressionType := AbDefCompressionType;
|
|
FSpanningThreshold := AbDefCabSpanningThreshold;
|
|
FFolderThreshold := AbDefFolderThreshold;
|
|
FSetID := 0;
|
|
FStoreOptions := AbDefStoreOptions;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.AddFiles(const FileMask : string; SearchAttr : Integer );
|
|
{Add files to the cabinet where the disk filespec matches}
|
|
begin
|
|
if Assigned(CabArchive) then
|
|
CabArchive.AddFiles(FileMask, SearchAttr)
|
|
else
|
|
raise EAbNoArchive.Create;
|
|
DoChange;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.AddFilesEx(const FileMask : string;
|
|
const ExclusionMask : string;
|
|
SearchAttr : Integer);
|
|
{Add files that match Filemask except those matching ExclusionMask}
|
|
begin
|
|
if Assigned(CabArchive) then
|
|
CabArchive.AddFilesEx(FileMask, ExclusionMask, SearchAttr)
|
|
else
|
|
raise EAbNoArchive.Create;
|
|
DoChange;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.DoSave(Sender : TObject);
|
|
begin
|
|
if Assigned(FOnSave) then
|
|
FOnSave(Self);
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.InitArchive;
|
|
begin
|
|
inherited InitArchive;
|
|
if Assigned(CabArchive) then begin
|
|
{properties}
|
|
CabArchive.FolderThreshold := FFolderThreshold;
|
|
CabArchive.CompressionType := FCompressionType;
|
|
CabArchive.SetID := FSetID;
|
|
CabArchive.StoreOptions := FStoreOptions;
|
|
{events}
|
|
CabArchive.OnSave := DoSave;
|
|
end;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.SetCompressionType(Value : TAbCabCompressionType);
|
|
{Set the type of compression to use}
|
|
begin
|
|
FCompressionType := Value;
|
|
if Assigned(CabArchive) then
|
|
CabArchive.CompressionType := Value;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.SetFileName(const aFileName : string);
|
|
{Create the specified cabinet file}
|
|
begin
|
|
FFilename := aFileName;
|
|
if csDesigning in ComponentState then
|
|
Exit;
|
|
if Assigned(FArchive) then begin
|
|
FArchive.Free;
|
|
FArchive := nil;
|
|
end;
|
|
if (aFileName <> '') then begin
|
|
FArchive := TAbCabArchive.Create(aFileName, fmOpenWrite);
|
|
InitArchive;
|
|
FArchive.Load;
|
|
FArchiveType := atCab;
|
|
end;
|
|
DoChange;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.SetFolderThreshold(Value : Longint);
|
|
{Set folder compression boundary}
|
|
begin
|
|
FFolderThreshold := Value;
|
|
if Assigned(CabArchive) then
|
|
CabArchive.FolderThreshold := Value;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.SetStoreOptions(Value : TAbStoreOptions);
|
|
begin
|
|
FStoreOptions := Value;
|
|
if Assigned(CabArchive) then
|
|
CabArchive.StoreOptions := Value;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.StartNewCabinet;
|
|
{Flush current cabinet and start a new one}
|
|
begin
|
|
if Assigned(CabArchive) then
|
|
CabArchive.NewCabinet
|
|
else
|
|
raise EAbNoArchive.Create;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
procedure TAbCustomMakeCab.StartNewFolder;
|
|
{Flush current folder and start a new one}
|
|
begin
|
|
if Assigned(CabArchive) then
|
|
CabArchive.NewFolder
|
|
else
|
|
raise EAbNoArchive.Create;
|
|
end;
|
|
{ -------------------------------------------------------------------------- }
|
|
|
|
end.
|