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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
unit BreakPropertyDlg;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
// LCL
Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls, ButtonPanel, EditBtn, Spin,
// IdeIntf
IDEHelpIntf,
// DebuggerIntf
DbgIntfDebuggerBase,
// IDE
BreakPropertyDlgGroups, DebuggerDlg, Debugger,
BaseDebugManager, LazarusIDEStrConsts, InputHistory, IDEProcs;
type
{ TBreakPropertyDlg }
TBreakPropertyDlg = class(TDebuggerDlg)
ButtonPanel: TButtonPanel;
chkTakeSnap: TCheckBox;
chkLogCallStack: TCheckBox;
chkEnableGroups: TCheckBox;
chkDisableGroups: TCheckBox;
chkEvalExpression: TCheckBox;
chkLogMessage: TCheckBox;
chkActionBreak: TCheckBox;
cmbGroup: TComboBox;
edtCondition: TComboBox;
edtEvalExpression: TEdit;
edtLine: TSpinEdit;
edtLogMessage: TEdit;
edtEnableGroups: TEditButton;
edtDisableGroups: TEditButton;
edtAutocontinueMS: TEdit;
edtCounter: TEdit;
edtFilename: TEdit;
gbActions: TGroupBox;
Label1: TLabel;
lblWatchKind: TLabel;
lblWatchScope: TLabel;
lblLogCallStackLimit: TLabel;
lblMS: TLabel;
lblFileName: TLabel;
lblLine: TLabel;
lblCondition: TLabel;
lblHitCount: TLabel;
lblGroup: TLabel;
lblAutoContinue: TLabel;
edtLogCallStack: TSpinEdit;
rbWrite: TRadioButton;
rbRead: TRadioButton;
rbReadWrite: TRadioButton;
rbGlobal: TRadioButton;
rbLocal: TRadioButton;
rgWatchKind: TPanel;
rgWatchScope: TPanel;
procedure btnHelpClick(Sender: TObject);
procedure btnOKClick(Sender: TObject);
procedure BreakPointRemove(const {%H-}ASender: TIDEBreakPoints;
const ABreakpoint: TIDEBreakPoint);
procedure BreakPointUpdate(const {%H-}ASender: TIDEBreakPoints;
const {%H-}ABreakpoint: TIDEBreakPoint);
procedure chkDisableGroupsChange(Sender: TObject);
procedure chkEnableGroupsChange(Sender: TObject);
procedure chkEvalExpressionChange(Sender: TObject);
procedure chkLogCallStackChange(Sender: TObject);
procedure chkLogMessageChange(Sender: TObject);
procedure cmbGroupKeyPress(Sender: TObject; var Key: char);
procedure edtDisableGroupsButtonClick(Sender: TObject);
procedure edtEnableGroupsButtonClick(Sender: TObject);
private
FBreakpointsNotification : TIDEBreakPointsNotification;
FBreakpoint: TIDEBreakPoint;
FUpdatingInfo: Boolean;
protected
procedure DoEndUpdate; override;
procedure UpdateInfo;
public
constructor Create(AOwner: TComponent; ABreakPoint: TIDEBreakPoint);overload;
destructor Destroy; override;
end;
implementation
{$R *.lfm}
{ TBreakPropertyDlg }
procedure TBreakPropertyDlg.BreakPointUpdate(
const ASender: TIDEBreakPoints; const ABreakpoint: TIDEBreakPoint);
begin
UpdateInfo;
end;
procedure TBreakPropertyDlg.chkDisableGroupsChange(Sender: TObject);
begin
edtDisableGroups.Enabled := chkDisableGroups.Checked;
end;
procedure TBreakPropertyDlg.chkEnableGroupsChange(Sender: TObject);
begin
edtEnableGroups.Enabled := chkEnableGroups.Checked;
end;
procedure TBreakPropertyDlg.chkEvalExpressionChange(Sender: TObject);
begin
edtEvalExpression.Enabled := chkEvalExpression.Checked;
end;
procedure TBreakPropertyDlg.chkLogCallStackChange(Sender: TObject);
begin
edtLogCallStack.Enabled := chkLogCallStack.Checked;
end;
procedure TBreakPropertyDlg.chkLogMessageChange(Sender: TObject);
begin
edtLogMessage.Enabled := chkLogMessage.Checked;
end;
procedure TBreakPropertyDlg.cmbGroupKeyPress(Sender: TObject; var Key: char);
begin
if Key = ';' then Key := #0;
end;
procedure TBreakPropertyDlg.edtDisableGroupsButtonClick(Sender: TObject);
var
s: TCaption;
begin
if FBreakpoint = nil then Exit;
s := edtDisableGroups.Text;
if ExecuteBreakPointGroupDlg(FBreakpoint, s, DebugBoss.BreakPointGroups, bgaDisable) = mrok
then edtDisableGroups.Text := s;
end;
procedure TBreakPropertyDlg.edtEnableGroupsButtonClick(Sender: TObject);
var
s: TCaption;
begin
if FBreakpoint = nil then Exit;
s := edtEnableGroups.Text;
if ExecuteBreakPointGroupDlg(FBreakpoint, s, DebugBoss.BreakPointGroups, bgaEnable) = mrok
then edtEnableGroups.Text := s;
end;
procedure TBreakPropertyDlg.btnHelpClick(Sender: TObject);
begin
LazarusHelp.ShowHelpForIDEControl(Self);
end;
procedure TBreakPropertyDlg.BreakPointRemove(
const ASender: TIDEBreakPoints; const ABreakpoint: TIDEBreakPoint);
begin
if ABreakpoint = FBreakpoint
then ModalResult := mrCancel;
end;
procedure TBreakPropertyDlg.btnOKClick(Sender: TObject);
function CheckGroupList(Alist: TStringList): Boolean;
var
i: Integer;
r: TModalResult;
s: String;
NewGroup: TIDEBreakPointGroup;
begin
Result := True;
s := '';
for i := 0 to Alist.Count-1 do begin
if Alist[i] = '' then continue;
if DebugBoss.BreakPointGroups.GetGroupByName(Alist[i]) = nil then
s := s + ', ' + Alist[i];
end;
if s = '' then exit;
delete(s, 1, 2);
r := MessageDlg(Format(dbgBreakPropertyGroupNotFound, [LineEnding, s]),
mtConfirmation, [mbYes, mbIgnore, mbCancel], 0);
if r = mrCancel then exit(False);
if r = mrYes then begin
for i := 0 to Alist.Count-1 do begin
if Alist[i] = '' then continue;
if DebugBoss.BreakPointGroups.GetGroupByName(Alist[i]) = nil then begin
NewGroup := TIDEBreakPointGroup(DebugBoss.BreakPointGroups.Add);
NewGroup.Name := Alist[i];
end;
end;
end;
end;
var
Actions: TIDEBreakPointActions;
GroupName: String;
NewGroup: TIDEBreakPointGroup;
ws: TDBGWatchPointScope;
wk: TDBGWatchPointKind;
i: SizeInt;
EnableGroupList, DisableGroupList: TStringList;
begin
if FBreakpoint = nil then Exit;
EnableGroupList := TStringList.Create;
DisableGroupList := TStringList.Create;
try
EnableGroupList.Delimiter := ';';
DisableGroupList.Delimiter := ';';
EnableGroupList.DelimitedText := edtEnableGroups.Text+';'+edtDisableGroups.Text;
if not CheckGroupList(EnableGroupList) then begin
ModalResult := mrNone;
exit;
end;
EnableGroupList.DelimitedText := edtEnableGroups.Text;
DisableGroupList.DelimitedText := edtDisableGroups.Text;
FBreakpointsNotification.OnUpdate := nil;
case FBreakpoint.Kind of
bpkSource:
begin
// filename + line
FBreakpoint.SetLocation(edtFilename.Text, edtLine.Value);
end;
bpkAddress:
begin
FBreakpoint.SetAddress(StrToQWordDef(edtFilename.Text, 0));
end;
bpkData:
begin
if rbGlobal.Checked
then ws := wpsGlobal
else ws := wpsLocal;
wk := wpkWrite;
if rbRead.Checked
then wk := wpkRead;
if rbReadWrite.Checked
then wk := wpkReadWrite;
FBreakpoint.SetWatch(edtFilename.Text, ws, wk);
end;
end;
// expression
FBreakpoint.Expression := edtCondition.Text;
// hitcount
FBreakpoint.BreakHitCount := StrToIntDef(edtCounter.Text, FBreakpoint.HitCount);
//auto continue
FBreakpoint.AutoContinueTime := StrToIntDef(edtAutocontinueMS.Text, FBreakpoint.AutoContinueTime);
// group
GroupName := cmbGroup.Text;
NewGroup := DebugBoss.BreakPointGroups.GetGroupByName(GroupName);
if not Assigned(NewGroup) and (GroupName <> '') then
begin
NewGroup := TIDEBreakPointGroup(DebugBoss.BreakPointGroups.Add);
NewGroup.Name := GroupName;
end;
FBreakpoint.Group := NewGroup;
// enable groups
for i := 0 to DebugBoss.BreakPointGroups.Count-1 do begin
NewGroup := DebugBoss.BreakPointGroups[i];
if EnableGroupList.IndexOf(NewGroup.Name) >= 0
then FBreakpoint.EnableGroupList.Add(NewGroup)
else FBreakpoint.EnableGroupList.Remove(NewGroup);
end;
// disable groups
for i := 0 to DebugBoss.BreakPointGroups.Count-1 do begin
NewGroup := DebugBoss.BreakPointGroups[i];
if DisableGroupList.IndexOf(NewGroup.Name) >= 0
then FBreakpoint.DisableGroupList.Add(NewGroup)
else FBreakpoint.DisableGroupList.Remove(NewGroup);
end;
// actions
Actions := [];
if chkActionBreak.Checked then Include(Actions, bpaStop);
if chkDisableGroups.Checked then Include(Actions, bpaDisableGroup);
if chkEnableGroups.Checked then Include(Actions, bpaEnableGroup);
if chkEvalExpression.Checked then Include(Actions, bpaEValExpression);
if chkLogMessage.Checked then Include(Actions, bpaLogMessage);
if chkLogCallStack.Checked then Include(Actions, bpaLogCallStack);
if chkTakeSnap.Checked then include(Actions, bpaTakeSnapshot);
FBreakpoint.Actions := Actions;
FBreakpoint.LogEvalExpression := edtEvalExpression.Text;
FBreakpoint.LogMessage := edtLogMessage.Text;
FBreakpoint.LogCallStackLimit := edtLogCallStack.Value;
if edtCondition.Text <> '' then
with InputHistories.HistoryLists.GetList('BreakPointExpression',
True, rltCaseSensitive) do
begin
i := IndexOf(edtCondition.Text);
if i <> -1 then Delete(i);
Insert(0, edtCondition.Text);
end;
finally
EnableGroupList.Free;
DisableGroupList.Free;
end;
end;
procedure TBreakPropertyDlg.DoEndUpdate;
begin
inherited DoEndUpdate;
UpdateInfo;
end;
procedure TBreakPropertyDlg.UpdateInfo;
var
Actions: TIDEBreakPointActions;
I: Integer;
s: String;
begin
FUpdatingInfo := True;
if FBreakpoint = nil then Exit;
case FBreakpoint.Kind of
bpkSource:
begin
// filename
edtFilename.Text := FBreakpoint.Source;
// line
if FBreakpoint.Line > 0
then edtLine.Value := FBreakpoint.Line
else edtLine.Value := 0;
end;
bpkAddress:
begin
edtFilename.Text := '$' + IntToHex(FBreakpoint.Address, 8); // todo: 8/16 depends on platform
end;
bpkData:
begin
edtFilename.Text := FBreakpoint.WatchData;
rbGlobal.Checked := FBreakpoint.WatchScope = wpsGlobal;
rbLocal.Checked := FBreakpoint.WatchScope = wpsLocal;
rbWrite.Checked := FBreakpoint.WatchKind = wpkWrite;
rbRead.Checked := FBreakpoint.WatchKind = wpkRead;
rbReadWrite.Checked := FBreakpoint.WatchKind = wpkReadWrite;
end;
end;
// expression
edtCondition.Text := FBreakpoint.Expression;
// hitcount
edtCounter.Text := IntToStr(FBreakpoint.BreakHitCount);
// auto continue
edtAutocontinueMS.Text := IntToStr(FBreakpoint.AutoContinueTime);
// group
for I := 0 to DebugBoss.BreakPointGroups.Count - 1 do
cmbGroup.Items.Add(DebugBoss.BreakPointGroups[I].Name);
if FBreakpoint.Group = nil
then cmbGroup.Text := ''
else cmbGroup.Text := FBreakpoint.Group.Name;
// enable groups
s := '';
for i := 0 to FBreakpoint.EnableGroupList.Count - 1 do begin
if s <> '' then s := s + ';';
s := s + FBreakpoint.EnableGroupList[i].Name;
end;
edtEnableGroups.Text := s;
// disable groups
s := '';
for i := 0 to FBreakpoint.DisableGroupList.Count - 1 do begin
if s <> '' then s := s + ';';
s := s + FBreakpoint.DisableGroupList[i].Name;
end;
edtDisableGroups.Text := s;
// actions
Actions := FBreakpoint.Actions;
chkActionBreak.Checked := bpaStop in Actions;
chkDisableGroups.Checked := bpaDisableGroup in Actions;
chkEnableGroups.Checked := bpaEnableGroup in Actions;
chkEvalExpression.Checked := bpaEValExpression in Actions;
chkLogMessage.Checked := bpaLogMessage in Actions;
edtLogMessage.Text := FBreakpoint.LogMessage;
edtEvalExpression.Text := FBreakpoint.LogEvalExpression;
chkLogCallStack.Checked := bpaLogCallStack in Actions;
edtLogCallStack.Value := FBreakpoint.LogCallStackLimit;
chkTakeSnap.Checked := bpaTakeSnapshot in Actions;
FUpdatingInfo := False;
end;
constructor TBreakPropertyDlg.Create(AOwner: TComponent; ABreakPoint: TIDEBreakPoint);
begin
inherited Create(AOwner);
Caption := lisBreakPointProperties;
case ABreakPoint.Kind of
bpkSource:
begin
lblFileName.Caption := lisPEFilename;
lblLine.Caption := lisLine;
end;
bpkAddress:
begin
lblFileName.Caption := lisAddress;
lblLine.Visible := False;
edtLine.Visible := False;
edtFilename.ReadOnly := False;
edtFilename.Color := clDefault;
end;
bpkData:
begin
lblFileName.Caption := lisWatchData;
lblLine.Visible := False;
edtLine.Visible := False;
edtFilename.ReadOnly := False;
edtFilename.Color := clDefault;
lblWatchKind.Visible := True;
lblWatchScope.Visible := True;
rgWatchKind.Visible := True;
rgWatchScope.Visible := True;
lblWatchScope.Caption := lisWatchScope;
lblWatchKind.Caption := lisWatchKind;
rbGlobal.Caption := lisWatchScopeGlobal;
rbLocal.Caption := lisWatchScopeLocal;
rbWrite.Caption := lisWatchKindWrite;
rbRead.Caption := lisWatchKindRead;
rbReadWrite.Caption := lisWatchKindReadWrite;
end;
end;
lblCondition.Caption := lisCondition + ':';
lblHitCount.Caption := lisHitCount + ':';
lblAutoContinue.Caption := lisAutoContinueAfter;
lblMS.Caption := lisMS;
lblGroup.Caption := lisGroup + ':';
gbActions.Caption := lisActions;
chkActionBreak.Caption := lisBreak;
chkEnableGroups.Caption := lisEnableGroups;
chkDisableGroups.Caption := lisDisableGroups;
chkEvalExpression.Caption := lisEvalExpression;
chkLogMessage.Caption := lisLogMessage;
chkLogCallStack.Caption := lisLogCallStack;
lblLogCallStackLimit.Caption := lisLogCallStackLimit;
chkTakeSnap.Caption := lisTakeSnapshot;
edtCondition.Items.Assign(InputHistories.HistoryLists.GetList(
'BreakPointExpression', True,rltCaseSensitive));
FBreakpoint := ABreakPoint;
FBreakpointsNotification := TIDEBreakPointsNotification.Create;
FBreakpointsNotification.AddReference;
FBreakpointsNotification.OnUpdate := @BreakPointUpdate;
FBreakpointsNotification.OnRemove := @BreakPointRemove;
UpdateInfo;
ButtonPanel.OKButton.Caption:=lisMenuOk;
ButtonPanel.HelpButton.Caption:=lisMenuHelp;
ButtonPanel.CancelButton.Caption:=lisCancel;
end;
destructor TBreakPropertyDlg.Destroy;
begin
FBreakpointsNotification.OnUpdate := nil;
FBreakpointsNotification.OnRemove := nil;
FBreakpointsNotification.ReleaseReference;
FBreakpointsNotification := nil;
inherited Destroy;
end;
end.
|