This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprocess.pas
353 lines (298 loc) · 9.5 KB
/
process.pas
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
{
This file is part of the Free Component Library (FCL)
Copyright (c) 1999-2000 by the Free Pascal development team
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{$mode objfpc}
{$h+}
unit process;
interface
Uses Classes,
pipes,
SysUtils;
Type
TProcessOption = (poRunSuspended,poWaitOnExit,
poUsePipes,poStderrToOutPut,
poNoConsole,poNewConsole,
poDefaultErrorMode,poNewProcessGroup,
poDebugProcess,poDebugOnlyThisProcess);
TShowWindowOptions = (swoNone,swoHIDE,swoMaximize,swoMinimize,swoRestore,swoShow,
swoShowDefault,swoShowMaximized,swoShowMinimized,
swoshowMinNOActive,swoShowNA,swoShowNoActivate,swoShowNormal);
TStartupOption = (suoUseShowWindow,suoUseSize,suoUsePosition,
suoUseCountChars,suoUseFillAttribute);
TProcessPriority = (ppHigh,ppIdle,ppNormal,ppRealTime);
TProcessOptions = set of TProcessOption;
TStartupOptions = set of TStartupOption;
Type
{$ifdef UNIX}
TProcessForkEvent = procedure;
{$endif UNIX}
TProcess = Class (TComponent)
Private
FProcessOptions : TProcessOptions;
FStartupOptions : TStartupOptions;
FProcessID : Integer;
FThreadID : Integer;
FProcessHandle : Thandle;
FThreadHandle : Thandle;
FFillAttribute : Cardinal;
FApplicationName : string;
FConsoleTitle : String;
FCommandLine : String;
FCurrentDirectory : String;
FDesktop : String;
FEnvironment : Tstrings;
FShowWindow : TShowWindowOptions;
FInherithandles : Boolean;
{$ifdef UNIX}
FForkEvent : TProcessForkEvent;
{$endif UNIX}
FProcessPriority : TProcessPriority;
dwXCountchars,
dwXSize,
dwYsize,
dwx,
dwYcountChars,
dwy : Cardinal;
Procedure FreeStreams;
Function GetExitStatus : Integer;
Function GetRunning : Boolean;
Function GetWindowRect : TRect;
Procedure SetWindowRect (Value : TRect);
Procedure SetShowWindow (Value : TShowWindowOptions);
Procedure SetWindowColumns (Value : Cardinal);
Procedure SetWindowHeight (Value : Cardinal);
Procedure SetWindowLeft (Value : Cardinal);
Procedure SetWindowRows (Value : Cardinal);
Procedure SetWindowTop (Value : Cardinal);
Procedure SetWindowWidth (Value : Cardinal);
procedure SetApplicationName(const Value: String);
procedure SetProcessOptions(const Value: TProcessOptions);
procedure SetActive(const Value: Boolean);
procedure SetEnvironment(const Value: TStrings);
function PeekExitStatus: Boolean;
Protected
FRunning : Boolean;
FExitCode : Cardinal;
FInputStream : TOutputPipeStream;
FOutputStream : TInputPipeStream;
FStderrStream : TInputPipeStream;
procedure CloseProcessHandles; virtual;
Procedure CreateStreams(InHandle,OutHandle,ErrHandle : Longint);virtual;
procedure FreeStream(var AStream: THandleStream);
Public
Constructor Create (AOwner : TComponent);override;
Destructor Destroy; override;
Procedure Execute; virtual;
procedure CloseInput; virtual;
procedure CloseOutput; virtual;
procedure CloseStderr; virtual;
Function Resume : Integer; virtual;
Function Suspend : Integer; virtual;
Function Terminate (AExitCode : Integer): Boolean; virtual;
Function WaitOnExit : Boolean;
Property WindowRect : Trect Read GetWindowRect Write SetWindowRect;
Property Handle : THandle Read FProcessHandle;
Property ProcessHandle : THandle Read FProcessHandle;
Property ThreadHandle : THandle Read FThreadHandle;
Property ProcessID : Integer Read FProcessID;
Property ThreadID : Integer Read FThreadID;
Property Input : TOutputPipeStream Read FInputStream;
Property Output : TInputPipeStream Read FOutputStream;
Property Stderr : TinputPipeStream Read FStderrStream;
Property ExitStatus : Integer Read GetExitStatus;
Property InheritHandles : Boolean Read FInheritHandles Write FInheritHandles;
{$ifdef UNIX}
property OnForkEvent : TProcessForkEvent Read FForkEvent Write FForkEvent;
{$endif UNIX}
Published
Property Active : Boolean Read GetRunning Write SetActive;
Property ApplicationName : String Read FApplicationName Write SetApplicationName;
Property CommandLine : String Read FCommandLine Write FCommandLine;
Property ConsoleTitle : String Read FConsoleTitle Write FConsoleTitle;
Property CurrentDirectory : String Read FCurrentDirectory Write FCurrentDirectory;
Property Desktop : String Read FDesktop Write FDesktop;
Property Environment : TStrings Read FEnvironment Write SetEnvironment;
Property Options : TProcessOptions Read FProcessOptions Write SetProcessOptions;
Property Priority : TProcessPriority Read FProcessPriority Write FProcessPriority;
Property StartupOptions : TStartupOptions Read FStartupOptions Write FStartupOptions;
Property Running : Boolean Read GetRunning;
Property ShowWindow : TShowWindowOptions Read FShowWindow Write SetShowWindow;
Property WindowColumns : Cardinal Read dwXCountChars Write SetWindowColumns;
Property WindowHeight : Cardinal Read dwYSize Write SetWindowHeight;
Property WindowLeft : Cardinal Read dwX Write SetWindowLeft;
Property WindowRows : Cardinal Read dwYCountChars Write SetWindowRows;
Property WindowTop : Cardinal Read dwY Write SetWindowTop ;
Property WindowWidth : Cardinal Read dwXSize Write SetWindowWidth;
Property FillAttribute : Cardinal read FFillAttribute Write FFillAttribute;
end;
EProcess = Class(Exception);
implementation
{$ifdef WINDOWS}
Uses
Windows;
{$endif WINDOWS}
{$ifdef UNIX}
uses
ctypes,
UnixType,
Unix,
Baseunix;
{$endif UNIX}
Resourcestring
SNoCommandLine = 'Cannot execute empty command-line';
SErrNoSuchProgram = 'Executable not found: "%s"';
{$i process.inc}
Constructor TProcess.Create (AOwner : TComponent);
begin
Inherited;
FProcessPriority:=ppNormal;
FShowWindow:=swoNone;
FInheritHandles:=True;
{$ifdef UNIX}
FForkEvent:=nil;
{$endif UNIX}
FEnvironment:=TStringList.Create;
end;
Destructor TProcess.Destroy;
begin
FEnvironment.Free;
FreeStreams;
CloseProcessHandles;
Inherited Destroy;
end;
Procedure TProcess.FreeStreams;
begin
If FStderrStream<>FOutputStream then
FreeStream(FStderrStream);
FreeStream(FOutputStream);
FreeStream(FInputStream);
end;
Function TProcess.GetExitStatus : Integer;
begin
GetRunning;
Result:=FExitCode;
end;
Function TProcess.GetRunning : Boolean;
begin
IF FRunning then
FRunning:=Not PeekExitStatus;
Result:=FRunning;
end;
Procedure TProcess.CreateStreams(InHandle,OutHandle,ErrHandle : Longint);
begin
FreeStreams;
FInputStream:=TOutputPipeStream.Create (InHandle);
FOutputStream:=TInputPipeStream.Create (OutHandle);
if Not (poStderrToOutput in FProcessOptions) then
FStderrStream:=TInputPipeStream.Create(ErrHandle);
end;
procedure TProcess.FreeStream(var AStream: THandleStream);
begin
if AStream = nil then exit;
FileClose(AStream.Handle);
FreeAndNil(AStream);
end;
procedure TProcess.CloseInput;
begin
FreeStream(FInputStream);
end;
procedure TProcess.CloseOutput;
begin
FreeStream(FOutputStream);
end;
procedure TProcess.CloseStderr;
begin
FreeStream(FStderrStream);
end;
Procedure TProcess.SetWindowColumns (Value : Cardinal);
begin
if Value<>0 then
Include(FStartupOptions,suoUseCountChars);
dwXCountChars:=Value;
end;
Procedure TProcess.SetWindowHeight (Value : Cardinal);
begin
if Value<>0 then
include(FStartupOptions,suoUsePosition);
dwYSize:=Value;
end;
Procedure TProcess.SetWindowLeft (Value : Cardinal);
begin
if Value<>0 then
Include(FStartupOptions,suoUseSize);
dwx:=Value;
end;
Procedure TProcess.SetWindowTop (Value : Cardinal);
begin
if Value<>0 then
Include(FStartupOptions,suoUsePosition);
dwy:=Value;
end;
Procedure TProcess.SetWindowWidth (Value : Cardinal);
begin
If (Value<>0) then
Include(FStartupOptions,suoUseSize);
dwXSize:=Value;
end;
Function TProcess.GetWindowRect : TRect;
begin
With Result do
begin
Left:=dwx;
Right:=dwx+dwxSize;
Top:=dwy;
Bottom:=dwy+dwysize;
end;
end;
Procedure TProcess.SetWindowRect (Value : Trect);
begin
Include(FStartupOptions,suoUseSize);
Include(FStartupOptions,suoUsePosition);
With Value do
begin
dwx:=Left;
dwxSize:=Right-Left;
dwy:=Top;
dwySize:=Bottom-top;
end;
end;
Procedure TProcess.SetWindowRows (Value : Cardinal);
begin
if Value<>0 then
Include(FStartupOptions,suoUseCountChars);
dwYCountChars:=Value;
end;
procedure TProcess.SetApplicationName(const Value: String);
begin
FApplicationName := Value;
If (csDesigning in ComponentState) and
(FCommandLine='') then
FCommandLine:=Value;
end;
procedure TProcess.SetProcessOptions(const Value: TProcessOptions);
begin
FProcessOptions := Value;
If poNewConsole in FProcessOptions then
Exclude(FProcessOptions,poNoConsole);
if poRunSuspended in FProcessOptions then
Exclude(FProcessOptions,poWaitOnExit);
end;
procedure TProcess.SetActive(const Value: Boolean);
begin
if (Value<>GetRunning) then
If Value then
Execute
else
Terminate(0);
end;
procedure TProcess.SetEnvironment(const Value: TStrings);
begin
FEnvironment.Assign(Value);
end;
end.