2014-05-20 06:59:10 +00:00
|
|
|
unit X2Log.Observer.MonitorForm;
|
|
|
|
|
|
|
|
interface
|
|
|
|
uses
|
2014-05-20 08:49:57 +00:00
|
|
|
System.Classes,
|
|
|
|
System.Generics.Collections,
|
2014-05-31 20:10:10 +00:00
|
|
|
System.Types,
|
2014-05-30 12:51:01 +00:00
|
|
|
Vcl.ActnList,
|
2014-05-20 19:17:23 +00:00
|
|
|
Vcl.ComCtrls,
|
2014-05-20 06:59:10 +00:00
|
|
|
Vcl.Controls,
|
2014-05-30 12:51:01 +00:00
|
|
|
Vcl.Dialogs,
|
2014-05-20 19:17:23 +00:00
|
|
|
Vcl.ExtCtrls,
|
2014-05-20 06:59:10 +00:00
|
|
|
Vcl.Forms,
|
2014-05-20 08:49:57 +00:00
|
|
|
Vcl.ImgList,
|
2014-05-20 19:17:23 +00:00
|
|
|
Vcl.StdCtrls,
|
|
|
|
Vcl.ToolWin,
|
2014-05-20 08:49:57 +00:00
|
|
|
VirtualTrees,
|
2014-05-20 06:59:10 +00:00
|
|
|
Winapi.Messages,
|
|
|
|
|
2014-05-30 12:51:01 +00:00
|
|
|
X2Log.Intf;
|
2014-05-20 06:59:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
const
|
|
|
|
CM_REENABLE = WM_APP + 1;
|
|
|
|
|
|
|
|
|
|
|
|
type
|
2014-05-31 20:10:10 +00:00
|
|
|
TX2LogObserverMonitorForm = class;
|
|
|
|
TMonitorFormDictionary = TObjectDictionary<IX2LogObservable,TX2LogObserverMonitorForm>;
|
|
|
|
|
|
|
|
|
2014-05-20 06:59:10 +00:00
|
|
|
TX2LogObserverMonitorForm = class(TForm, IX2LogObserver)
|
2014-05-20 08:49:57 +00:00
|
|
|
vstLog: TVirtualStringTree;
|
|
|
|
ilsLog: TImageList;
|
2014-05-20 09:19:04 +00:00
|
|
|
splDetails: TSplitter;
|
|
|
|
HeaderControl1: THeaderControl;
|
|
|
|
pnlDetails: TPanel;
|
|
|
|
reDetails: TRichEdit;
|
|
|
|
pnlLog: TPanel;
|
|
|
|
tbLog: TToolBar;
|
|
|
|
tbDetails: TToolBar;
|
|
|
|
pnlBorder: TPanel;
|
|
|
|
tbClear: TToolButton;
|
|
|
|
tbSaveDetails: TToolButton;
|
|
|
|
sbStatus: TStatusBar;
|
2014-05-20 19:17:23 +00:00
|
|
|
tbCopyDetails: TToolButton;
|
|
|
|
alLog: TActionList;
|
|
|
|
actClear: TAction;
|
|
|
|
actCopyDetails: TAction;
|
|
|
|
actSaveDetails: TAction;
|
|
|
|
actPause: TAction;
|
|
|
|
tbPause: TToolButton;
|
2014-05-30 12:51:01 +00:00
|
|
|
sdDetails: TSaveDialog;
|
2014-05-31 20:47:52 +00:00
|
|
|
tbShowVerbose: TToolButton;
|
|
|
|
tbShowInfo: TToolButton;
|
|
|
|
tbShowWarning: TToolButton;
|
|
|
|
tbShowError: TToolButton;
|
|
|
|
actShowVerbose: TAction;
|
|
|
|
actShowInfo: TAction;
|
|
|
|
actShowWarning: TAction;
|
|
|
|
actShowError: TAction;
|
|
|
|
lblFilter: TLabel;
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
procedure FormShow(Sender: TObject);
|
|
|
|
procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
|
|
|
procedure vstLogInitNode(Sender: TBaseVirtualTree; ParentNode, Node: PVirtualNode; var InitialStates: TVirtualNodeInitStates);
|
|
|
|
procedure vstLogFreeNode(Sender: TBaseVirtualTree; Node: PVirtualNode);
|
|
|
|
procedure vstLogGetText(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType; var CellText: string);
|
2014-05-20 19:17:23 +00:00
|
|
|
procedure vstLogGetHint(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex; var LineBreakStyle: TVTTooltipLineBreakStyle; var HintText: string);
|
2014-05-20 08:49:57 +00:00
|
|
|
procedure vstLogGetImageIndex(Sender: TBaseVirtualTree; Node: PVirtualNode; Kind: TVTImageKind; Column: TColumnIndex; var Ghosted: Boolean; var ImageIndex: Integer);
|
2014-05-20 09:19:04 +00:00
|
|
|
procedure vstLogFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex);
|
2014-05-20 19:17:23 +00:00
|
|
|
procedure actClearExecute(Sender: TObject);
|
|
|
|
procedure actCopyDetailsExecute(Sender: TObject);
|
2014-05-30 12:51:01 +00:00
|
|
|
procedure actSaveDetailsExecute(Sender: TObject);
|
2014-05-20 19:17:23 +00:00
|
|
|
procedure actPauseExecute(Sender: TObject);
|
2014-05-31 20:10:10 +00:00
|
|
|
procedure ToolbarCustomDraw(Sender: TToolBar; const ARect: TRect; var DefaultDraw: Boolean);
|
2014-05-31 20:47:52 +00:00
|
|
|
procedure actShowVerboseExecute(Sender: TObject);
|
|
|
|
procedure actShowInfoExecute(Sender: TObject);
|
|
|
|
procedure actShowWarningExecute(Sender: TObject);
|
|
|
|
procedure actShowErrorExecute(Sender: TObject);
|
2014-05-20 08:49:57 +00:00
|
|
|
private class var
|
2014-05-31 20:10:10 +00:00
|
|
|
FInstances: TMonitorFormDictionary;
|
2014-05-20 08:49:57 +00:00
|
|
|
private
|
|
|
|
FFreeOnClose: Boolean;
|
2014-05-31 20:10:10 +00:00
|
|
|
FLogObservable: IX2LogObservable;
|
2014-05-20 08:49:57 +00:00
|
|
|
FLogAttached: Boolean;
|
2014-05-20 19:17:23 +00:00
|
|
|
FPausedLogCount: Integer;
|
2014-05-30 12:51:01 +00:00
|
|
|
FDetails: IX2LogDetails;
|
2014-05-31 20:47:52 +00:00
|
|
|
FVisibleLevels: TX2LogLevels;
|
2014-05-20 06:59:10 +00:00
|
|
|
protected
|
2014-05-31 20:10:10 +00:00
|
|
|
class function GetInstance(ALog: IX2LogObservable; out AForm: TX2LogObserverMonitorForm): Boolean;
|
2014-05-20 08:49:57 +00:00
|
|
|
class procedure RemoveInstance(AForm: TX2LogObserverMonitorForm);
|
|
|
|
class procedure CleanupInstances;
|
|
|
|
|
2014-05-20 06:59:10 +00:00
|
|
|
procedure CreateParams(var Params: TCreateParams); override;
|
|
|
|
|
|
|
|
procedure WMEnable(var Msg: TWMEnable); message WM_ENABLE;
|
|
|
|
procedure CMReenable(var Msg: TMessage); message CM_REENABLE;
|
2014-05-20 08:49:57 +00:00
|
|
|
|
2014-05-20 19:17:23 +00:00
|
|
|
procedure UpdateUI;
|
|
|
|
procedure UpdateStatus;
|
2014-05-31 20:47:52 +00:00
|
|
|
procedure UpdateFilter;
|
|
|
|
|
|
|
|
function GetPaused: Boolean;
|
|
|
|
procedure ToggleVisibleLevel(AAction: TObject; ALevel: TX2LogLevel);
|
2014-05-20 19:17:23 +00:00
|
|
|
|
2014-05-30 12:51:01 +00:00
|
|
|
procedure SetDetails(ADetails: IX2LogDetails);
|
|
|
|
procedure SetBinaryDetails(ADetails: IX2LogDetailsBinary);
|
|
|
|
|
|
|
|
property Details: IX2LogDetails read FDetails;
|
2014-05-31 20:10:10 +00:00
|
|
|
property LogObservable: IX2LogObservable read FLogObservable;
|
2014-05-20 08:49:57 +00:00
|
|
|
property LogAttached: Boolean read FLogAttached;
|
2014-05-20 19:17:23 +00:00
|
|
|
property Paused: Boolean read GetPaused;
|
|
|
|
property PausedLogCount: Integer read FPausedLogCount write FPausedLogCount;
|
2014-05-31 20:47:52 +00:00
|
|
|
property VisibleLevels: TX2LogLevels read FVisibleLevels write FVisibleLevels;
|
2014-05-20 06:59:10 +00:00
|
|
|
public
|
2014-05-31 20:10:10 +00:00
|
|
|
class function Instance(ALog: IX2LogObservable): TX2LogObserverMonitorForm;
|
2014-05-20 08:49:57 +00:00
|
|
|
|
2014-05-31 20:10:10 +00:00
|
|
|
class procedure ShowInstance(ALog: IX2LogObservable);
|
|
|
|
class procedure CloseInstance(ALog: IX2LogObservable);
|
2014-05-20 08:49:57 +00:00
|
|
|
|
2014-05-31 20:10:10 +00:00
|
|
|
constructor Create(AOwner: TComponent; ALogObservable: IX2LogObservable = nil); reintroduce;
|
2014-05-20 08:49:57 +00:00
|
|
|
destructor Destroy; override;
|
|
|
|
|
2014-05-20 06:59:10 +00:00
|
|
|
{ IX2LogObserver }
|
2014-05-30 12:51:01 +00:00
|
|
|
procedure Log(ALevel: TX2LogLevel; const AMessage: string; ADetails: IX2LogDetails);
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
property FreeOnClose: Boolean read FFreeOnClose write FFreeOnClose;
|
2014-05-20 06:59:10 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
2014-05-20 08:49:57 +00:00
|
|
|
System.DateUtils,
|
2014-05-30 12:51:01 +00:00
|
|
|
System.Math,
|
2014-05-20 08:49:57 +00:00
|
|
|
System.SysUtils,
|
2014-05-20 19:17:23 +00:00
|
|
|
Vcl.Clipbrd,
|
2014-05-31 20:10:10 +00:00
|
|
|
Vcl.Themes,
|
2014-05-20 08:49:57 +00:00
|
|
|
Winapi.Windows,
|
|
|
|
|
|
|
|
X2Log.Constants;
|
2014-05-20 06:59:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
|
2014-05-20 08:49:57 +00:00
|
|
|
type
|
|
|
|
TLogEntryNodeData = record
|
|
|
|
Time: TDateTime;
|
|
|
|
Level: TX2LogLevel;
|
|
|
|
Message: string;
|
2014-05-30 12:51:01 +00:00
|
|
|
Details: IX2LogDetails;
|
2014-05-20 08:49:57 +00:00
|
|
|
|
2014-05-30 12:51:01 +00:00
|
|
|
procedure Initialize(ALevel: TX2LogLevel; const AMessage: string; ADetails: IX2LogDetails);
|
2014-05-20 08:49:57 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
PLogEntryNodeData = ^TLogEntryNodeData;
|
|
|
|
|
|
|
|
|
|
|
|
const
|
|
|
|
ColumnLevel = 0;
|
|
|
|
ColumnTime = 1;
|
|
|
|
ColumnMessage = 2;
|
|
|
|
|
2014-05-31 20:47:52 +00:00
|
|
|
LevelImageIndex: array[TX2LogLevel] of TImageIndex = (0, 1, 2, 3);
|
|
|
|
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
{ TLogEntryNode }
|
2014-05-30 12:51:01 +00:00
|
|
|
procedure TLogEntryNodeData.Initialize(ALevel: TX2LogLevel; const AMessage: string; ADetails: IX2LogDetails);
|
2014-05-20 08:49:57 +00:00
|
|
|
begin
|
2014-05-30 13:25:10 +00:00
|
|
|
Self.Time := Now;
|
|
|
|
Self.Level := ALevel;
|
|
|
|
Self.Message := AMessage;
|
|
|
|
Self.Details := ADetails;
|
2014-05-20 08:49:57 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-20 06:59:10 +00:00
|
|
|
{ TX2LogObserverMonitorForm }
|
2014-05-31 20:10:10 +00:00
|
|
|
class function TX2LogObserverMonitorForm.Instance(ALog: IX2LogObservable): TX2LogObserverMonitorForm;
|
2014-05-20 08:49:57 +00:00
|
|
|
var
|
2014-05-31 20:10:10 +00:00
|
|
|
log: IX2LogObservable;
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
begin
|
|
|
|
{ Explicit cast ensures we're getting the same pointer every time if, for example,
|
|
|
|
the implementing interface is a descendant of IX2Log }
|
2014-05-31 20:10:10 +00:00
|
|
|
log := (ALog as IX2LogObservable);
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
if not Assigned(FInstances) then
|
2014-05-31 20:10:10 +00:00
|
|
|
FInstances := TMonitorFormDictionary.Create([doOwnsValues]);
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
if not FInstances.TryGetValue(log, Result) then
|
|
|
|
begin
|
|
|
|
Result := TX2LogObserverMonitorForm.Create(nil, log);
|
|
|
|
Result.FreeOnClose := True;
|
|
|
|
|
|
|
|
FInstances.Add(log, Result);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-31 20:10:10 +00:00
|
|
|
class procedure TX2LogObserverMonitorForm.ShowInstance(ALog: IX2LogObservable);
|
2014-05-20 08:49:57 +00:00
|
|
|
begin
|
|
|
|
Instance(ALog).Show;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-31 20:10:10 +00:00
|
|
|
class procedure TX2LogObserverMonitorForm.CloseInstance(ALog: IX2LogObservable);
|
2014-05-20 08:49:57 +00:00
|
|
|
var
|
|
|
|
monitorForm: TX2LogObserverMonitorForm;
|
|
|
|
|
|
|
|
begin
|
|
|
|
if GetInstance(ALog, monitorForm) then
|
|
|
|
monitorForm.Close;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-31 20:10:10 +00:00
|
|
|
class function TX2LogObserverMonitorForm.GetInstance(ALog: IX2LogObservable; out AForm: TX2LogObserverMonitorForm): Boolean;
|
2014-05-20 08:49:57 +00:00
|
|
|
begin
|
|
|
|
Result := False;
|
|
|
|
|
|
|
|
if Assigned(FInstances) then
|
|
|
|
Result := FInstances.TryGetValue(ALog as IX2Log, AForm);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
class procedure TX2LogObserverMonitorForm.RemoveInstance(AForm: TX2LogObserverMonitorForm);
|
|
|
|
var
|
2014-05-31 20:10:10 +00:00
|
|
|
log: IX2LogObservable;
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
begin
|
|
|
|
if Assigned(FInstances) then
|
|
|
|
begin
|
|
|
|
for log in FInstances.Keys do
|
|
|
|
begin
|
|
|
|
if FInstances[log] = AForm then
|
|
|
|
begin
|
2014-05-30 13:25:10 +00:00
|
|
|
FInstances.ExtractPair(log);
|
2014-05-20 08:49:57 +00:00
|
|
|
break;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
class procedure TX2LogObserverMonitorForm.CleanupInstances;
|
|
|
|
begin
|
|
|
|
if Assigned(FInstances) then
|
|
|
|
FreeAndNil(FInstances);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-31 20:10:10 +00:00
|
|
|
constructor TX2LogObserverMonitorForm.Create(AOwner: TComponent; ALogObservable: IX2LogObservable);
|
2014-05-20 08:49:57 +00:00
|
|
|
var
|
|
|
|
captionFormat: string;
|
|
|
|
|
|
|
|
begin
|
|
|
|
inherited Create(AOwner);
|
|
|
|
|
2014-05-31 20:10:10 +00:00
|
|
|
FLogObservable := ALogObservable;
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
captionFormat := GetLogResourceString(@LogMonitorFormCaption);
|
|
|
|
if Pos('%s', captionFormat) > 0 then
|
|
|
|
Caption := Format(captionFormat, [Application.Title])
|
|
|
|
else
|
|
|
|
Caption := captionFormat;
|
|
|
|
|
|
|
|
vstLog.NodeDataSize := SizeOf(TLogEntryNodeData);
|
|
|
|
vstLog.Header.Columns[ColumnTime].Text := GetLogResourceString(@LogMonitorFormColumnTime);
|
|
|
|
vstLog.Header.Columns[ColumnMessage].Text := GetLogResourceString(@LogMonitorFormColumnMessage);
|
2014-05-20 09:19:04 +00:00
|
|
|
|
2014-05-31 20:47:52 +00:00
|
|
|
actClear.Caption := GetLogResourceString(@LogMonitorFormButtonClear);
|
|
|
|
actPause.Caption := GetLogResourceString(@LogMonitorFormButtonPause);
|
|
|
|
actCopyDetails.Caption := GetLogResourceString(@LogMonitorFormButtonCopyDetails);
|
|
|
|
actSaveDetails.Caption := GetLogResourceString(@LogMonitorFormButtonSaveDetails);
|
2014-05-20 19:17:23 +00:00
|
|
|
|
2014-05-30 12:51:01 +00:00
|
|
|
sdDetails.Filter := GetLogResourceString(@LogMonitorFormSaveDetailsFilter);
|
|
|
|
|
2014-05-31 20:47:52 +00:00
|
|
|
lblFilter.Caption := ' ' + GetLogResourceString(@LogMonitorFormButtonFilter) + ' ';
|
|
|
|
actShowVerbose.Caption := GetLogLevelText(TX2LogLevel.Verbose);
|
|
|
|
actShowInfo.Caption := GetLogLevelText(TX2LogLevel.Info);
|
|
|
|
actShowWarning.Caption := GetLogLevelText(TX2LogLevel.Warning);
|
|
|
|
actShowError.Caption := GetLogLevelText(TX2LogLevel.Error);
|
|
|
|
|
|
|
|
FVisibleLevels := [Low(TX2LogLevel)..High(TX2LogLevel)];
|
2014-05-20 19:17:23 +00:00
|
|
|
UpdateUI;
|
2014-05-20 08:49:57 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-20 06:59:10 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.CreateParams(var Params: TCreateParams);
|
|
|
|
begin
|
|
|
|
inherited CreateParams(Params);
|
|
|
|
|
|
|
|
Params.WndParent := 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-20 08:49:57 +00:00
|
|
|
destructor TX2LogObserverMonitorForm.Destroy;
|
|
|
|
begin
|
2014-05-31 20:10:10 +00:00
|
|
|
if Assigned(FLogObservable) and FLogAttached then
|
|
|
|
FLogObservable.Detach(Self);
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
RemoveInstance(Self);
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.FormShow(Sender: TObject);
|
|
|
|
begin
|
2014-05-31 20:10:10 +00:00
|
|
|
if Assigned(FLogObservable) and (not FLogAttached) then
|
2014-05-20 08:49:57 +00:00
|
|
|
begin
|
2014-05-31 20:10:10 +00:00
|
|
|
FLogObservable.Attach(Self);
|
2014-05-20 08:49:57 +00:00
|
|
|
FLogAttached := True;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.FormClose(Sender: TObject; var Action: TCloseAction);
|
|
|
|
begin
|
2014-05-31 20:10:10 +00:00
|
|
|
if Assigned(FLogObservable) and FLogAttached then
|
2014-05-20 08:49:57 +00:00
|
|
|
begin
|
2014-05-31 20:10:10 +00:00
|
|
|
FLogObservable.Detach(Self);
|
2014-05-20 08:49:57 +00:00
|
|
|
FLogAttached := False;
|
|
|
|
end;
|
|
|
|
|
|
|
|
if FreeOnClose then
|
|
|
|
Action := caFree
|
|
|
|
else
|
|
|
|
Action := caHide;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-30 12:51:01 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.Log(ALevel: TX2LogLevel; const AMessage: string; ADetails: IX2LogDetails);
|
2014-05-20 08:49:57 +00:00
|
|
|
var
|
|
|
|
node: PVirtualNode;
|
|
|
|
nodeData: PLogEntryNodeData;
|
|
|
|
|
2014-05-20 06:59:10 +00:00
|
|
|
begin
|
2014-05-20 19:17:23 +00:00
|
|
|
{ Ensure thread safety; TThread.Queue will run the procedure immediately
|
|
|
|
if Log is called from the main thread, or queue it asynchronously }
|
|
|
|
TThread.Queue(nil,
|
|
|
|
procedure
|
2014-05-30 13:25:10 +00:00
|
|
|
var
|
|
|
|
scroll: Boolean;
|
|
|
|
|
2014-05-20 19:17:23 +00:00
|
|
|
begin
|
|
|
|
if not Paused then
|
|
|
|
begin
|
2014-05-30 13:25:10 +00:00
|
|
|
scroll := (vstLog.RootNodeCount > 0) and (vstLog.BottomNode = vstLog.GetLast);
|
|
|
|
|
2014-05-20 19:17:23 +00:00
|
|
|
node := vstLog.AddChild(nil);
|
|
|
|
nodeData := vstLog.GetNodeData(node);
|
|
|
|
nodeData^.Initialize(ALevel, AMessage, ADetails);
|
2014-05-20 09:19:04 +00:00
|
|
|
|
2014-05-31 20:47:52 +00:00
|
|
|
vstLog.IsVisible[node] := (ALevel in VisibleLevels);
|
|
|
|
|
2014-05-30 13:25:10 +00:00
|
|
|
if scroll then
|
|
|
|
vstLog.ScrollIntoView(node, False);
|
|
|
|
|
2014-05-20 19:17:23 +00:00
|
|
|
UpdateUI;
|
|
|
|
end else
|
|
|
|
begin
|
|
|
|
PausedLogCount := PausedLogCount + 1;
|
|
|
|
UpdateStatus;
|
|
|
|
end;
|
|
|
|
end);
|
2014-05-20 06:59:10 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.WMEnable(var Msg: TWMEnable);
|
|
|
|
begin
|
|
|
|
if not Msg.Enabled then
|
|
|
|
{ Modal forms disable all other forms, ensure we're still accessible }
|
|
|
|
PostMessage(Self.Handle, CM_REENABLE, 0, 0);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.CMReenable(var Msg: TMessage);
|
|
|
|
begin
|
|
|
|
EnableWindow(Self.Handle, True);
|
|
|
|
end;
|
|
|
|
|
2014-05-20 08:49:57 +00:00
|
|
|
|
2014-05-20 19:17:23 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.UpdateUI;
|
|
|
|
begin
|
|
|
|
actClear.Enabled := (vstLog.RootNodeCount > 0);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.UpdateStatus;
|
|
|
|
begin
|
|
|
|
if Paused then
|
|
|
|
sbStatus.SimpleText := ' ' + Format(GetLogResourceString(@LogMonitorFormStatusPaused), [PausedLogCount])
|
|
|
|
else
|
|
|
|
sbStatus.SimpleText := '';
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-31 20:47:52 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.UpdateFilter;
|
|
|
|
var
|
|
|
|
node: PVirtualNode;
|
|
|
|
nodeData: PLogEntryNodeData;
|
|
|
|
|
|
|
|
begin
|
|
|
|
vstLog.BeginUpdate;
|
|
|
|
try
|
|
|
|
for node in vstLog.Nodes do
|
|
|
|
begin
|
|
|
|
nodeData := vstLog.GetNodeData(node);
|
|
|
|
vstLog.IsVisible[node] := (nodeData^.Level in VisibleLevels);
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
vstLog.EndUpdate;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
function TX2LogObserverMonitorForm.GetPaused: Boolean;
|
|
|
|
begin
|
|
|
|
Result := actPause.Checked;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.ToggleVisibleLevel(AAction: TObject; ALevel: TX2LogLevel);
|
|
|
|
begin
|
|
|
|
if ALevel in VisibleLevels then
|
|
|
|
Exclude(FVisibleLevels, ALevel)
|
|
|
|
else
|
|
|
|
Include(FVisibleLevels, ALevel);
|
|
|
|
|
|
|
|
(AAction as TCustomAction).Checked := (ALevel in VisibleLevels);
|
|
|
|
UpdateFilter;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-30 12:51:01 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.SetDetails(ADetails: IX2LogDetails);
|
|
|
|
var
|
|
|
|
logDetailsBinary: IX2LogDetailsBinary;
|
|
|
|
logDetailsText: IX2LogDetailsText;
|
|
|
|
|
|
|
|
begin
|
|
|
|
FDetails := ADetails;
|
|
|
|
|
|
|
|
if Assigned(Details) then
|
|
|
|
begin
|
|
|
|
if Supports(ADetails, IX2LogDetailsBinary, logDetailsBinary) then
|
|
|
|
SetBinaryDetails(logDetailsBinary)
|
|
|
|
|
|
|
|
else if Supports(ADetails, IX2LogDetailsText, logDetailsText) then
|
|
|
|
reDetails.Text := logDetailsText.AsString;
|
|
|
|
end else
|
|
|
|
reDetails.Clear;
|
|
|
|
|
|
|
|
|
|
|
|
actCopyDetails.Enabled := Supports(ADetails, IX2LogDetailsCopyable);
|
|
|
|
actSaveDetails.Enabled := Supports(ADetails, IX2LogDetailsStreamable);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.SetBinaryDetails(ADetails: IX2LogDetailsBinary);
|
|
|
|
const
|
|
|
|
BufferSize = 4096;
|
|
|
|
|
|
|
|
BytesPerLine = 16;
|
|
|
|
HexSplitPos = 7;
|
|
|
|
HexSplitSpacing = 1;
|
|
|
|
|
|
|
|
HexDigits = 2;
|
|
|
|
TextDigits = 1;
|
|
|
|
HexSpacing = 0;
|
|
|
|
HexTextSpacing = 2;
|
|
|
|
|
|
|
|
ReadableCharacters = [32..126, 161..255];
|
|
|
|
UnreadableCharacter = '.';
|
|
|
|
|
|
|
|
|
|
|
|
procedure ResetLine(var ALine: string);
|
|
|
|
var
|
|
|
|
linePos: Integer;
|
|
|
|
|
|
|
|
begin
|
|
|
|
for linePos := 1 to Length(ALine) do
|
|
|
|
ALine[linePos] := ' ';
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
var
|
|
|
|
stream: TStream;
|
|
|
|
buffer: array[0..Pred(BufferSize)] of Byte;
|
|
|
|
readBytes: Integer;
|
|
|
|
linePosition: Integer;
|
|
|
|
line: string;
|
|
|
|
bufferIndex: Integer;
|
|
|
|
hexValue: string;
|
|
|
|
hexPos: Integer;
|
|
|
|
textPos: Integer;
|
|
|
|
|
|
|
|
begin
|
|
|
|
stream := ADetails.AsStream;
|
|
|
|
linePosition := 0;
|
|
|
|
|
|
|
|
SetLength(line, (BytesPerLine * (HexDigits + HexSpacing + TextDigits)) + HexTextSpacing +
|
|
|
|
IfThen(HexSplitPos < BytesPerLine, HexSplitSpacing, 0));
|
|
|
|
ResetLine(line);
|
|
|
|
|
|
|
|
reDetails.Lines.BeginUpdate;
|
|
|
|
try
|
|
|
|
reDetails.Lines.Clear;
|
|
|
|
|
|
|
|
while True do
|
|
|
|
begin
|
|
|
|
readBytes := stream.Read(buffer, SizeOf(buffer));
|
|
|
|
if readBytes = 0 then
|
|
|
|
break;
|
|
|
|
|
|
|
|
for bufferIndex := 0 to Pred(readBytes) do
|
|
|
|
begin
|
|
|
|
hexValue := IntToHex(buffer[bufferIndex], HexDigits);
|
|
|
|
|
|
|
|
if linePosition >= BytesPerLine then
|
|
|
|
begin
|
|
|
|
reDetails.Lines.Add(line);
|
|
|
|
|
|
|
|
ResetLine(line);
|
|
|
|
linePosition := 0;
|
|
|
|
end;
|
|
|
|
|
|
|
|
hexPos := (linePosition * (HexDigits + HexSpacing));
|
|
|
|
if linePosition > HexSplitPos then
|
|
|
|
Inc(hexPos, HexSplitSpacing);
|
|
|
|
|
|
|
|
line[hexPos + 1] := hexValue[1];
|
|
|
|
line[hexPos + 2] := hexValue[2];
|
|
|
|
|
|
|
|
textPos := (BytesPerLine * (HexDigits + HexSpacing)) + HexTextSpacing + (linePosition * TextDigits);
|
|
|
|
if HexSplitPos < BytesPerLine then
|
|
|
|
Inc(textPos, HexSplitSpacing);
|
|
|
|
|
|
|
|
if buffer[bufferIndex] in ReadableCharacters then
|
|
|
|
line[textPos] := Chr(buffer[bufferIndex])
|
|
|
|
else
|
|
|
|
line[textPos] := UnreadableCharacter;
|
|
|
|
|
|
|
|
Inc(linePosition);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
if linePosition > 0 then
|
|
|
|
reDetails.Lines.Add(line);
|
|
|
|
finally
|
|
|
|
reDetails.Lines.EndUpdate;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-20 08:49:57 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.vstLogInitNode(Sender: TBaseVirtualTree; ParentNode, Node: PVirtualNode;
|
|
|
|
var InitialStates: TVirtualNodeInitStates);
|
|
|
|
var
|
|
|
|
nodeData: PLogEntryNodeData;
|
|
|
|
|
|
|
|
begin
|
|
|
|
nodeData := Sender.GetNodeData(Node);
|
|
|
|
Initialize(nodeData^);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.vstLogFreeNode(Sender: TBaseVirtualTree; Node: PVirtualNode);
|
|
|
|
var
|
|
|
|
nodeData: PLogEntryNodeData;
|
|
|
|
|
|
|
|
begin
|
|
|
|
nodeData := Sender.GetNodeData(Node);
|
|
|
|
Finalize(nodeData^);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.vstLogGetText(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex;
|
|
|
|
TextType: TVSTTextType; var CellText: string);
|
|
|
|
var
|
|
|
|
nodeData: PLogEntryNodeData;
|
|
|
|
|
|
|
|
begin
|
|
|
|
CellText := '';
|
|
|
|
nodeData := Sender.GetNodeData(Node);
|
|
|
|
|
|
|
|
case Column of
|
|
|
|
ColumnTime:
|
|
|
|
CellText := DateTimeToStr(nodeData^.Time);
|
|
|
|
|
|
|
|
ColumnMessage:
|
|
|
|
CellText := nodeData^.Message;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-20 19:17:23 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.vstLogGetHint(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex;
|
|
|
|
var LineBreakStyle: TVTTooltipLineBreakStyle; var HintText: string);
|
|
|
|
var
|
|
|
|
nodeData: PLogEntryNodeData;
|
|
|
|
|
|
|
|
begin
|
|
|
|
if Column = ColumnLevel then
|
|
|
|
begin
|
|
|
|
nodeData := Sender.GetNodeData(Node);
|
|
|
|
HintText := GetLogLevelText(nodeData^.Level);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-20 08:49:57 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.vstLogGetImageIndex(Sender: TBaseVirtualTree; Node: PVirtualNode; Kind: TVTImageKind;
|
|
|
|
Column: TColumnIndex; var Ghosted: Boolean; var ImageIndex: Integer);
|
|
|
|
var
|
|
|
|
nodeData: PLogEntryNodeData;
|
|
|
|
|
|
|
|
begin
|
|
|
|
if Kind in [ikNormal, ikSelected] then
|
|
|
|
begin
|
|
|
|
nodeData := Sender.GetNodeData(Node);
|
|
|
|
|
|
|
|
case Column of
|
|
|
|
ColumnLevel:
|
2014-05-31 20:47:52 +00:00
|
|
|
ImageIndex := LevelImageIndex[nodeData^.Level];
|
2014-05-20 08:49:57 +00:00
|
|
|
|
|
|
|
ColumnMessage:
|
2014-05-30 12:51:01 +00:00
|
|
|
if Assigned(nodeData^.Details) then
|
2014-05-20 08:49:57 +00:00
|
|
|
ImageIndex := 4;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2014-05-20 09:19:04 +00:00
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.vstLogFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex);
|
|
|
|
var
|
|
|
|
nodeData: PLogEntryNodeData;
|
|
|
|
|
|
|
|
begin
|
|
|
|
if Assigned(Node) then
|
|
|
|
begin
|
|
|
|
nodeData := Sender.GetNodeData(Node);
|
2014-05-30 12:51:01 +00:00
|
|
|
SetDetails(nodeData^.Details);
|
2014-05-20 09:19:04 +00:00
|
|
|
end else
|
2014-05-30 12:51:01 +00:00
|
|
|
SetDetails(nil);
|
2014-05-20 19:17:23 +00:00
|
|
|
|
|
|
|
UpdateUI;
|
2014-05-20 09:19:04 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-20 19:17:23 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.actClearExecute(Sender: TObject);
|
2014-05-20 09:19:04 +00:00
|
|
|
begin
|
|
|
|
vstLog.Clear;
|
2014-05-20 19:17:23 +00:00
|
|
|
UpdateUI;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.actCopyDetailsExecute(Sender: TObject);
|
2014-05-30 12:51:01 +00:00
|
|
|
var
|
|
|
|
logDetailsCopyable: IX2LogDetailsCopyable;
|
|
|
|
|
|
|
|
begin
|
|
|
|
if Supports(Details, IX2LogDetailsCopyable, logDetailsCopyable) then
|
|
|
|
logDetailsCopyable.CopyToClipboard;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.actSaveDetailsExecute(Sender: TObject);
|
|
|
|
var
|
|
|
|
logDetailsStreamable: IX2LogDetailsStreamable;
|
|
|
|
outputStream: TFileStream;
|
|
|
|
|
2014-05-20 19:17:23 +00:00
|
|
|
begin
|
2014-05-30 12:51:01 +00:00
|
|
|
if Supports(Details, IX2LogDetailsStreamable, logDetailsStreamable) then
|
|
|
|
begin
|
|
|
|
if sdDetails.Execute then
|
|
|
|
begin
|
|
|
|
outputStream := TFileStream.Create(sdDetails.FileName, fmCreate or fmShareDenyWrite);
|
|
|
|
try
|
|
|
|
logDetailsStreamable.SaveToStream(outputStream);
|
|
|
|
finally
|
|
|
|
FreeAndNil(outputStream);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
2014-05-20 19:17:23 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.actPauseExecute(Sender: TObject);
|
|
|
|
begin
|
|
|
|
PausedLogCount := 0;
|
|
|
|
UpdateStatus;
|
2014-05-20 09:19:04 +00:00
|
|
|
end;
|
|
|
|
|
2014-05-30 13:06:47 +00:00
|
|
|
|
2014-05-31 20:47:52 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.actShowVerboseExecute(Sender: TObject);
|
|
|
|
begin
|
|
|
|
ToggleVisibleLevel(Sender, TX2LogLevel.Verbose);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.actShowInfoExecute(Sender: TObject);
|
|
|
|
begin
|
|
|
|
ToggleVisibleLevel(Sender, TX2LogLevel.Info);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.actShowWarningExecute(Sender: TObject);
|
|
|
|
begin
|
|
|
|
ToggleVisibleLevel(Sender, TX2LogLevel.Warning);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
procedure TX2LogObserverMonitorForm.actShowErrorExecute(Sender: TObject);
|
|
|
|
begin
|
|
|
|
ToggleVisibleLevel(Sender, TX2LogLevel.Error);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-31 20:10:10 +00:00
|
|
|
procedure TX2LogObserverMonitorForm.ToolbarCustomDraw(Sender: TToolBar; const ARect: TRect; var DefaultDraw: Boolean);
|
|
|
|
var
|
|
|
|
element: TThemedElementDetails;
|
|
|
|
rect: TRect;
|
|
|
|
|
|
|
|
begin
|
|
|
|
if StyleServices.Enabled then
|
|
|
|
begin
|
|
|
|
rect := Sender.ClientRect;
|
|
|
|
if Assigned(Self.Menu) then
|
|
|
|
Dec(rect.Top, GetSystemMetrics(SM_CYMENU));
|
|
|
|
|
|
|
|
element := StyleServices.GetElementDetails(trRebarRoot);
|
|
|
|
StyleServices.DrawElement(Sender.Canvas.Handle, element, rect);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2014-05-30 13:06:47 +00:00
|
|
|
initialization
|
|
|
|
finalization
|
|
|
|
TX2LogObserverMonitorForm.CleanupInstances;
|
|
|
|
|
2014-05-20 06:59:10 +00:00
|
|
|
end.
|