📄 jvchangenotify.pas
字号:
{-----------------------------------------------------------------------------
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/MPL-1.1.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: JvChangeNotify.PAS, released on 2002-05-26.
The Initial Developer of the Original Code is Peter Th鰎nqvist [peter3 at sourceforge dot net]
Portions created by Peter Th鰎nqvist are Copyright (C) 2002 Peter Th鰎nqvist.
All Rights Reserved.
Contributor(s):
You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
located at http://jvcl.sourceforge.net
Description:
A wrapper for the Find[First/Next]ChangeNotification API calls.
Changes:
//dierk schmid 2004-4-28
-- TJvChangeNotify: Put property "active" from public to published section
(cause I always forget to set this property in runtime to true)
-- TJvChangeNotify.SetActive: Exit if csDesigning in ComponentState (Active is now published)
-- TJvChangeItem.SetDir: Exception not when csDesigning in ComponentState
(cause, it was impossible to reset in designtime the directory property)
-- Same TJvChangeNotify.CheckActive: Exception not when csDesigning+csloading in ComponentState
-- added procedure TJvChangeNotify.Loaded; override;
Known Issues:
-----------------------------------------------------------------------------}
// $Id: JvChangeNotify.pas,v 1.35 2005/02/17 10:20:00 marquardt Exp $
unit JvChangeNotify;
interface
{$I jvcl.inc}
{$I windowsonly.inc}
uses
{$IFDEF UNITVERSIONING}
JclUnitVersioning,
{$ENDIF UNITVERSIONING}
Windows, Classes,
JvComponent;
type
TJvNotifyArray = array [0..MAXIMUM_WAIT_OBJECTS - 1] of THandle;
TJvChangeAction = (caChangeFileName, caChangeDirName, caChangeAttributes, caChangeSize,
caChangeLastWrite, caChangeSecurity);
TJvChangeActions = set of TJvChangeAction;
TJvNotifyEvent = procedure(Sender: TObject; Dir: string; Actions: TJvChangeActions) of object;
TJvThreadNotifyEvent = procedure(Sender: TObject; Index: Integer) of object;
TJvNotifyError = procedure(Sender: TObject; const Msg: string) of object;
TJvChangeItems = class;
TJvChangeNotify = class;
TJvChangeItem = class(TCollectionItem)
private
FParent: TJvChangeItems;
FActions: TJvChangeActions;
FSubTrees: Boolean;
FDir: string;
FOnChange: TNotifyEvent;
procedure SetSubTrees(const Value: Boolean);
procedure SetDir(const Value: string);
protected
function GetDisplayName: string; override;
procedure Change; virtual;
public
constructor Create(Collection: TCollection); override;
procedure Assign(Source: TPersistent); override;
published
property Directory: string read FDir write SetDir;
property Actions: TJvChangeActions read FActions write FActions default [caChangeFileName, caChangeDirName];
property IncludeSubTrees: Boolean read FSubTrees write SetSubTrees default False;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
end;
TJvChangeItems = class(TCollection)
protected
FOwner: TJvChangeNotify;
function GetItem(Index: Integer): TJvChangeItem;
procedure SetItem(Index: Integer; Value: TJvChangeItem);
function GetOwner: TPersistent; override;
public
constructor Create(AOwner: TJvChangeNotify);
function Add: TJvChangeItem;
procedure Assign(Source: TPersistent); override;
property Items[Index: Integer]: TJvChangeItem read GetItem write SetItem; default;
end;
TJvChangeThread = class(TThread)
private
FNotifyArray: TJvNotifyArray;
FCount: Integer;
FIndex: Integer;
FInterval: Integer;
FNotify: TJvThreadNotifyEvent;
procedure SynchChange;
public
constructor Create(NotifyArray: TJvNotifyArray; Count, Interval: Integer; AFreeOnTerminate: Boolean);
procedure Execute; override;
property OnChangeNotify: TJvThreadNotifyEvent read FNotify write FNotify;
end;
TJvChangeNotify = class(TJvComponent)
private
FThread: TJvChangeThread;
FActive: Boolean;
FInterval: Integer;
FCollection: TJvChangeItems;
FNotify: TJvNotifyEvent;
FNotifyArray: TJvNotifyArray;
FFreeOnTerminate: Boolean;
procedure SetCollection(const Value: TJvChangeItems);
procedure SetInterval(const Value: Integer);
procedure SetActive(const Value: Boolean);
procedure CheckActive(const Name: string);
function NotifyError(const Msg: string): string;
procedure DoThreadChangeNotify(Sender: TObject; Index: Integer);
procedure DoThreadTerminate(Sender: TObject);
protected
procedure Change(Item: TJvChangeItem); virtual;
procedure Loaded; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Active: Boolean read FActive write SetActive default False;
property Notifications: TJvChangeItems read FCollection write SetCollection;
property CheckInterval: Integer read FInterval write SetInterval default 100;
// Set FreeOnTerminate to True if you want to be able to change the Active property
// in the OnChangeNotify event. NOTE: FreeOnTerminate should be changed when Active := False
property FreeOnTerminate: Boolean read FFreeOnTerminate write FFreeOnTerminate default True;
property OnChangeNotify: TJvNotifyEvent read FNotify write FNotify;
end;
function ActionsToString(Actions: TJvChangeActions): string;
{$IFDEF UNITVERSIONING}
const
UnitVersioning: TUnitVersionInfo = (
RCSfile: '$RCSfile: JvChangeNotify.pas,v $';
Revision: '$Revision: 1.35 $';
Date: '$Date: 2005/02/17 10:20:00 $';
LogPath: 'JVCL\run'
);
{$ENDIF UNITVERSIONING}
implementation
uses
SysUtils,
JvJCLUtils, JvResources, JvTypes;
// JvJCLUtils for DirectoryExists
function ActionsToString(Actions: TJvChangeActions): string;
const
ActionStrings: array [TJvChangeAction] of string =
(RsFileNameChange, RsDirectoryNameChange, RsAttributesChange,
RsSizeChange, RsWriteChange, RsSecurityChange);
var
I: TJvChangeAction;
begin
Result := '';
for I := Low(TJvChangeAction) to High(TJvChangeAction) do
if I in Actions then
if Result = '' then
Result := ActionStrings[I]
else
Result := Result + ',' + ActionStrings[I];
end;
//=== { TJvChangeItem } ======================================================
constructor TJvChangeItem.Create(Collection: TCollection);
begin
inherited Create(Collection);
FParent := TJvChangeItems(Collection);
FSubTrees := False;
FActions := [caChangeFileName, caChangeDirName];
end;
procedure TJvChangeItem.Assign(Source: TPersistent);
begin
if Source is TJvChangeItem then
begin
Directory := TJvChangeItem(Source).Directory;
Actions := TJvChangeItem(Source).Actions;
IncludeSubTrees := TJvChangeItem(Source).IncludeSubTrees;
end
else
inherited Assign(Source);
end;
procedure TJvChangeItem.SetSubTrees(const Value: Boolean);
begin
if FSubTrees <> Value then
begin
if csDesigning in FParent.FOwner.ComponentState then
FSubTrees := Value
else
if Value then
FSubTrees := Value and (Win32Platform = VER_PLATFORM_WIN32_NT)
else
FSubTrees := False;
end;
end;
procedure TJvChangeItem.SetDir(const Value: string);
begin
if FDir <> Value then
begin
if not (csDesigning in FParent.FOwner.ComponentState) and
((Length(Value) = 0) or not DirectoryExists(Value)) then
raise EJVCLException.CreateResFmt(@RsEFmtInvalidPath, [Value]);
FDir := Value;
end;
end;
function TJvChangeItem.GetDisplayName: string;
begin
if FDir <> '' then
Result := FDir
else
Result := inherited GetDisplayName;
end;
procedure TJvChangeItem.Change;
begin
if Assigned(FOnChange) then
FOnChange(Self);
end;
//=== { TJvChangeItems } =====================================================
constructor TJvChangeItems.Create(AOwner: TJvChangeNotify);
begin
inherited Create(TJvChangeItem);
FOwner := AOwner;
end;
function TJvChangeItems.Add: TJvChangeItem;
begin
if Count < MAXIMUM_WAIT_OBJECTS then
Result := TJvChangeItem(inherited Add)
else
raise EJVCLException.CreateResFmt(@RsEFmtMaxCountExceeded, [MAXIMUM_WAIT_OBJECTS]);
end;
function TJvChangeItems.GetItem(Index: Integer): TJvChangeItem;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -