Menu

[r7]: / formedittrace.pas  Maximize  Restore  History

Download this file

155 lines (133 with data), 5.2 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{---------------------------------------------------------------------}
{ }
{ Firebird database server profiler tool (FBProfiler) }
{ }
{ Copyright (c) 2013-2018 Bel Air Informatique (www.belair-info.fr) }
{ Copyright (c) 2013-2018 Serguei Tarassov (www.arbinada.com) }
{ }
{ FBProfiler uses IBX For Lazarus components (Firebird Express) }
{ FBProfiler was firstly released for public domain }
{ on October 31 of 2015 (Halloween) so any donations are welcome. }
{ }
{ The contents of this file are subject to the InterBase }
{ Public License Version 1.0 (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.firebirdsql.org/en/interbase-public-license/ }
{ 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. }
{ }
{---------------------------------------------------------------------}
unit FormEditTrace;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
Buttons, ValEdit, Spin, StdCtrls,
TraceControl;
type
{ TFrmEditTrace }
TFrmEditTrace = class(TForm)
BtnSaveConf: TBitBtn;
BtnCancel: TBitBtn;
BtnOK: TBitBtn;
EdtHost: TLabeledEdit;
EdtUser: TLabeledEdit;
EdtPassword: TLabeledEdit;
Label1: TLabel;
EdtPort: TSpinEdit;
EdtConfValues: TValueListEditor;
EdtDatabaseFilter: TLabeledEdit;
EdtTraceName: TLabeledEdit;
DlgSaveConf: TSaveDialog;
procedure BtnOKClick(Sender: TObject);
procedure BtnSaveConfClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
FConfig: TTraceConfig;
procedure SetConfig(Value: TTraceConfig);
procedure UpdateConfig;
public
property Config: TTraceConfig read FConfig write SetConfig;
end;
var
FrmEditTrace: TFrmEditTrace;
implementation
uses
AppServices,
TraceFiles;
{$R *.lfm}
{ TFrmEditTrace }
procedure TFrmEditTrace.FormCreate(Sender: TObject);
begin
EdtConfValues.FixedCols := 1;
EdtConfValues.Strings.Clear;
end;
procedure TFrmEditTrace.BtnOKClick(Sender: TObject);
begin
UpdateConfig;
end;
procedure TFrmEditTrace.BtnSaveConfClick(Sender: TObject);
begin
UpdateConfig;
DlgSaveConf.Filter := TTraceConfFile.GetDlgFilter;
DlgSaveConf.InitialDir := SysUtils.GetCurrentDir;
DlgSaveConf.FileName := Config.TraceName + TraceConfExt;
if DlgSaveConf.Execute then
TTraceConfFile.Save(DlgSaveConf.FileName, Config);
end;
procedure TFrmEditTrace.SetConfig(Value: TTraceConfig);
var
i, Index: integer;
Param: TTraceConfigParam;
begin
Assert(Value <> nil, 'Configuration provided is null');
FConfig := Value;
EdtTraceName.Text := FConfig.TraceName;
EdtHost.Text := FConfig.HostName;
EdtPort.Value := FConfig.Port;
EdtUser.Text := FConfig.UserName;
EdtPassword.Text := FConfig.Password;
EdtDatabaseFilter.Text := FConfig.DatabaseFilter;
EdtConfValues.Strings.Clear;
for i := 0 to FConfig.Params.Count - 1 do
begin
Param := FConfig.Params[i];
Index := EdtConfValues.Strings.AddObject(
Param.Name + '=' + Param.Value, Param);
case Param.ParamType of
ptList, ptBoolean:
begin
EdtConfValues.ItemProps[Index].EditStyle := esPickList;
EdtConfValues.ItemProps[Index].PickList.AddStrings(Param.PickList);
end;
else
EdtConfValues.ItemProps[Index].EditStyle := esSimple;
end;
end;
end;
procedure TFrmEditTrace.UpdateConfig;
var
i: integer;
Param: TTraceConfigParam;
begin
if FConfig = nil then
Exit;
FConfig.TraceName := EdtTraceName.Text;
FConfig.HostName := EdtHost.Text;
FConfig.Port := EdtPort.Value;
FConfig.UserName := EdtUser.Text;
FConfig.Password := EdtPassword.Text;
FConfig.DatabaseFilter := EdtDatabaseFilter.Text;
for i := 0 to EdtConfValues.Strings.Count - 1 do
begin
//TODO Error with EdtConfValues.Values[] vs EdtConfValues.Strings.Values[]
//GetLog.Debug('%d: %s. Key: %s, value: %s', [i, EdtConfValues.Strings[i], EdtConfValues.Strings.Names[i], EdtConfValues.Values[EdtConfValues.Strings.Names[i]]]);
Param := TTraceConfigParam(EdtConfValues.Strings.Objects[i]);
Assert(Param <> nil, 'Param is nil: ' + EdtConfValues.Strings[i]);
Param.Value := EdtConfValues.Strings.Values[EdtConfValues.Strings.Names[i]];
end;
end;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.