Menu

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

Download this file

282 lines (251 with data), 9.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
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
{
* UCompileMgr.pas
*
* Provides object that manage test compilation and assoicated UI, display of
* compilation results via a callback and and compiler configuration.
*
* $Rev$
* $Date$
*
* ***** BEGIN LICENSE BLOCK *****
*
* Version: MPL 1.1
*
* 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/
*
* 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.
*
* The Original Code is UCompileMgr.pas
*
* The Initial Developer of the Original Code is Peter Johnson
* (http://www.delphidabbler.com/).
*
* Portions created by the Initial Developer are Copyright (C) 2009 Peter
* Johnson. All Rights Reserved.
*
* Contributor(s)
* NONE
*
* ***** END LICENSE BLOCK *****
}
unit UCompileMgr;
interface
uses
// Delphi
Classes, Controls,
// Project
IntfCompilers, USnippets, 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;
{
TCompileMgr:
Object that performs test compilations and display of compile errors and
warnings.
}
TCompileMgr = class(TComponent)
strict private
fLastCompiledRoutine: TRoutine; // Value of LastCompiledRoutine property
fCompilers: ICompilers; // Value of Compilers property
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 Routine: TRoutine;
const DisplayProc: TCompileResultDisplay = nil);
{Test compiles a routine 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 Routine [in] Routine to be compiled. Stored in
LastCompiledRoutine 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
routine.
}
procedure ShowError(const CompilerID: TCompilerID);
{Shows compile error or warning for last compiled routine on a specified
compiler.
@param CompilerID [in] Id of compiler whose errors are to be displayed.
}
property LastCompiledRoutine: TRoutine read fLastCompiledRoutine;
{Last compiled routine. May not be added to Snippets object}
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(const View: TViewItem): 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(const View: TViewItem): 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
FmCompErrorDlg, FmCompilersDlg, UCompilers, UTestCompileUI;
{ TCompileMgr }
procedure TCompileMgr.Compile(const UIParent: TWinControl;
const Routine: TRoutine; const DisplayProc: TCompileResultDisplay);
{Test compiles a routine 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 Routine [in] Routine to be compiled. Stored in LastCompiledRoutine
property.
@param DisplayProc [in] Callback method called to display compilation
results.
}
begin
Assert(Assigned(Routine), ClassName + '.Compile: Routine is nil');
// Compile routine and optionally display result
TTestCompileUI.Execute(UIParent, fCompilers, Routine);
if Assigned(DisplayProc) then
DisplayProc(fCompilers);
// Copy routine to LastCompiledRoutine property
FreeAndNil(fLastCompiledRoutine);
fLastCompiledRoutine := (Snippets as ISnippetsEdit).CreateTempRoutine(
Routine
);
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;
end;
destructor TCompileMgr.Destroy;
{Class destructor. Tears down object.
}
begin
FreeAndNil(fLastCompiledRoutine);
fCompilers := nil; // release compilers object
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.ShowError(const CompilerID: TCompilerID);
{Shows compile error or warning for last compiled routine on a specified
compiler.
@param CompilerID [in] Id of compiler whose errors are to be displayed.
}
var
Compiler: ICompiler; // reference to required compiler
begin
Compiler := fCompilers[CompilerID];
Assert(Compiler.HasErrorsOrWarnings,
ClassName + '.ShowError: Compiler has no errors or warnings');
Assert(Assigned(fLastCompiledRoutine),
ClassName + '.ShowError: LastCompiledRoutine is nil');
TCompErrorDlg.Execute(Owner, fLastCompiledRoutine, Compiler);
end;
procedure TCompileMgr.ShowErrors;
{Shows dialog box containing all errors and warnings for last compiled
routine.
}
begin
Assert(HaveErrors,
ClassName + '.ShowErrors: No compilers have errors or warnings');
Assert(Assigned(fLastCompiledRoutine),
ClassName + '.ShowErrors: LastCompiledRoutine is nil');
TCompErrorDlg.Execute(Owner, fLastCompiledRoutine, fCompilers);
end;
{ TMainCompileMgr }
function TMainCompileMgr.CanCompile(const View: TViewItem): 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.
}
begin
Result := Assigned(View)
and HaveCompilers
and (View.Kind = vkRoutine)
and View.Routine.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(const View: TViewItem): 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.
}
begin
Result := Assigned(View) and (View.Kind = vkRoutine) and
Assigned(LastCompiledRoutine) and View.Routine.IsEqual(LastCompiledRoutine);
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.