Menu

[r2517]: / trunk / Src / UCompileMgr.pas  Maximize  Restore  History

Download this file

276 lines (245 with data), 8.9 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
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
{
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/
*
* Copyright (C) 2009-2012, Peter Johnson (www.delphidabbler.com).
*
* $Rev$
* $Date$
*
* Provides objects that manage test compilation and assoicated UI, display of
* compilation results via a callback and and compiler configuration.
}
unit UCompileMgr;
interface
uses
// Delphi
Classes, Controls,
// Project
Compilers.UGlobals, DB.USnippet, UView;
type
{
TCompileResultDisplay:
Callback method used to display compiler results after a test compilation.
@param Compilers [in] Compilers object containing compilation results.
}
TCompileResultDisplay = procedure(const Compilers: ICompilers) of object;
type
{
TCompileMgr:
Object that performs test compilations and display of compile errors and
warnings.
}
TCompileMgr = class(TComponent)
strict private
fLastCompiledSnippet: TSnippet; // Value of LastCompiledSnippet property
fCompilers: ICompilers; // Value of Compilers property
/// <summary>Handles database change events. Clears test compilation if
/// related snippet is changed or deleted.</summary>
/// <param name="Sender">TObject [in] Object that triggered event. Not
/// used.</param>
/// <param name="EvtInfo">IInterface [in] Object that carries information
/// about the database change event.</param>
procedure DBChangeEventHandler(Sender: TObject; const EvtInfo: IInterface);
strict protected
property LastCompiledSnippet: TSnippet read fLastCompiledSnippet;
{Last compiled snippet. May not be added to Snippets object}
public
constructor Create(AOwner: TComponent); override;
{Class constructor. Sets up object.
@param AOwner [in] Component that owns this object.
}
destructor Destroy; override;
{Class destructor. Tears down object.
}
function HaveCompilers: Boolean;
{Checks if any compilers are set up to work with CodeSnip.
@return True if at least one compiler is available, False otherwise.
}
procedure Compile(const UIParent: TWinControl; const Snippet: TSnippet;
const DisplayProc: TCompileResultDisplay = nil);
{Test compiles a snippet and then displays the compilation results. Shows
a wait dialog box if compilation takes a long time.
@param UIParent [in] Control that parents any wait window that is
displayed. Wait window aligned above this control.
@param Snippet [in] Snippet to be compiled. Stored in
LastCompiledSnippet property.
@param DisplayProc [in] Callback method called to display compilation
results.
}
function HaveErrors: Boolean;
{Checks if any compiler object has a compilation error or warning to
report.
@return True if there are any errors, False otherwise.
}
procedure ShowErrors;
{Shows dialog box containing all errors and warnings for last compiled
snippet.
}
property Compilers: ICompilers read fCompilers;
{Compilers object to be used to perform compilation}
end;
{
TMainCompileMgr:
Extended compilation manager for use with main form. Checks if a view item
can be compiled and also permits user to configure compilers.
}
TMainCompileMgr = class(TCompileMgr)
public
function CanCompile(View: IView): Boolean;
{Checks if the object represented by a view item can be test compiled.
@param View [in] View item to test.
@return True if view can be compiled, False otherwise.
}
function IsLastCompiledView(View: IView): Boolean;
{Checks if the object represented by a view item is the last one that was
test compiled.
@param View [in] View item to test.
@return True if view represents last object to be compiled, False
otherwise.
}
function ConfigCompilers: Boolean;
{Displays Configure Compilers dialog to permit user to update compiler
properties.
@return True if user accepts changes, False if not.
}
end;
implementation
uses
// Delphi
SysUtils,
// Project
Compilers.UCompilers, DB.UMain, FmCompErrorDlg, FmCompilersDlg,
UTestCompileUI;
{ TCompileMgr }
procedure TCompileMgr.Compile(const UIParent: TWinControl;
const Snippet: TSnippet; const DisplayProc: TCompileResultDisplay);
{Test compiles a snippet and then displays the compilation results. Shows a
wait dialog box if compilation takes a long time.
@param UIParent [in] Control that parents any wait window that is displayed.
Wait window aligned above this control.
@param Snippet [in] Snippet to be compiled. Stored in LastCompiledSnippet
property.
@param DisplayProc [in] Callback method called to display compilation
results.
}
begin
Assert(Assigned(Snippet), ClassName + '.Compile: Snippet is nil');
// Compile snippet and optionally display result
TTestCompileUI.Execute(UIParent, fCompilers, Snippet);
if Assigned(DisplayProc) then
DisplayProc(fCompilers);
// Copy snippet to LastCompiledSnippet property
fLastCompiledSnippet.Free;
fLastCompiledSnippet := (Database as IDatabaseEdit).CreateTempSnippet(
Snippet
);
end;
constructor TCompileMgr.Create(AOwner: TComponent);
{Class constructor. Sets up object.
@param AOwner [in] Component that owns this object.
}
begin
inherited Create(AOwner);
fCompilers := TCompilersFactory.CreateAndLoadCompilers;
Database.AddChangeEventHandler(DBChangeEventHandler);
end;
procedure TCompileMgr.DBChangeEventHandler(Sender: TObject;
const EvtInfo: IInterface);
var
EventInfo: IDatabaseChangeEventInfo; // information about the event
begin
if not Assigned(fLastCompiledSnippet) then
Exit;
EventInfo := EvtInfo as IDatabaseChangeEventInfo;
if not (EventInfo.Kind in [evBeforeSnippetChange, evBeforeSnippetDelete]) then
Exit;
Assert(EventInfo.Info is TSnippet,
ClassName + '.DBChangeEventHandler: EventInfo is not TSnippet');
if (EventInfo.Info as TSnippet).IsEqual(fLastCompiledSnippet) then
// Snippet being changed is last compiled snippet: free and nil it so to
// ensure incorrect results can't be viewed.
FreeAndNil(fLastCompiledSnippet);
end;
destructor TCompileMgr.Destroy;
{Class destructor. Tears down object.
}
begin
Database.RemoveChangeEventHandler(DBChangeEventHandler);
fLastCompiledSnippet.Free;
fCompilers := nil;
inherited;
end;
function TCompileMgr.HaveCompilers: Boolean;
{Checks if any compilers are set up to work with CodeSnip.
@return True if at least one compiler is available, False otherwise.
}
begin
Result := (fCompilers.AvailableCount > 0);
end;
function TCompileMgr.HaveErrors: Boolean;
{Checks if any compiler object has a compilation error or warning to report.
@return True if there are any errors, False otherwise.
}
var
Compiler: ICompiler; // references each compiler
begin
Result := False;
for Compiler in fCompilers do
begin
if Compiler.HasErrorsOrWarnings then
begin
Result := True;
Exit;
end;
end;
end;
procedure TCompileMgr.ShowErrors;
{Shows dialog box containing all errors and warnings for last compiled
snippet.
}
begin
Assert(HaveErrors,
ClassName + '.ShowErrors: No compilers have errors or warnings');
Assert(Assigned(fLastCompiledSnippet),
ClassName + '.ShowErrors: LastCompiledSnippet is nil');
TCompErrorDlg.Execute(Owner, fLastCompiledSnippet, fCompilers);
end;
{ TMainCompileMgr }
function TMainCompileMgr.CanCompile(View: IView): Boolean;
{Checks if the object represented by a view item can be test compiled.
@param View [in] View item to test.
@return True if view can be compiled, False otherwise.
}
var
SnippetView: ISnippetView; // view as snippet view if supported
begin
Result := Assigned(View)
and HaveCompilers
and Supports(View, ISnippetView, SnippetView)
and SnippetView.Snippet.CanCompile;
end;
function TMainCompileMgr.ConfigCompilers: Boolean;
{Displays Configure Compilers dialog to permit user to update compiler
properties.
@return True if user accepts changes, False if not.
}
begin
Result := TCompilersDlg.Execute(Owner, Compilers);
end;
function TMainCompileMgr.IsLastCompiledView(View: IView): Boolean;
{Checks if the object represented by a view item is the last one that was test
compiled.
@param View [in] View item to test.
@return True if view represents last object to be compiled, False otherwise.
}
var
SnippetView: ISnippetView; // view as snippet view if supported
begin
Result := Assigned(View)
and Assigned(LastCompiledSnippet)
and Supports(View, ISnippetView, SnippetView)
and SnippetView.Snippet.IsEqual(LastCompiledSnippet);
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.