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
|
{$MODE objfpc}{$H+}
uses
SysUtils, StrUtils, Process;
const
use_temp_dir : boolean = true;
hide_execution : boolean = true;
do_exit : boolean =true;
dosbox_timeout : integer = 90; { 90 seconds by default }
var
OutputFileName : String;
function GenerateTempDir: string;
var
FileName: string;
TempDir: string;
Done: Boolean = False;
begin
TempDir := GetTempDir(False);
repeat
try
FileName := TempDir + 'dosboxwrappertmp_' + IntToStr(Random(100000));
MkDir(FileName);
Done := True;
except
on E: EInOutError do
begin
{ 5 = Access Denied, returned when a file is duplicated }
if E.ErrorCode <> 5 then
raise;
end;
end;
until Done;
Result := FileName + DirectorySeparator;
end;
procedure GenerateDosBoxConf(const ADosBoxDir: string);
var
SourceConfFileName, TargetConfFileName: string;
SourceFile, TargetFile: TextFile;
S: string;
begin
SourceConfFileName := ExtractFilePath(ParamStr(0)) + 'dosbox.conf';
TargetConfFileName := ADosBoxDir + 'dosbox.conf';
OutputFileName := ADosBoxDir + 'dosbox.out';
Writeln('Using target dosbox.conf ',TargetConfFileName);
AssignFile(SourceFile, SourceConfFileName);
AssignFile(TargetFile, TargetConfFileName);
Reset(SourceFile);
try
Rewrite(TargetFile);
try
while not EoF(SourceFile) do
begin
Readln(SourceFile, S);
S := AnsiReplaceStr(S, '$DosBoxDir', ADosBoxDir);
S := AnsiReplaceStr(S, '$wrapper_output', OutputFileName);
if do_exit then
S := AnsiReplaceStr(S, '$exit', 'exit')
else
S := AnsiReplaceStr(S, '$exit', '');
Writeln(TargetFile, S);
end;
finally
CloseFile(TargetFile);
end;
finally
CloseFile(SourceFile);
end;
end;
procedure CopyFile(ASrcFileName, ADestFileName: string);
var
SrcF, DestF: File;
OldFileMode: Integer;
Buf: array [0..4095] of Byte;
BytesRead: Integer;
begin
Writeln('CopyFile ', ASrcFileName, '->', ADestFileName);
if not AnsiEndsText('.exe', ASrcFileName) then
ASrcFileName := ASrcFileName + '.exe';
OldFileMode := FileMode;
try
AssignFile(SrcF, ASrcFileName);
AssignFile(DestF, ADestFileName);
FileMode := fmOpenRead;
Reset(SrcF, 1);
try
FileMode := fmOpenWrite;
try
Rewrite(DestF, 1);
repeat
BlockRead(SrcF, Buf, SizeOf(Buf), BytesRead);
BlockWrite(DestF, Buf, BytesRead);
until BytesRead < SizeOf(Buf);
finally
CloseFile(DestF);
end;
finally
CloseFile(SrcF);
end;
finally
FileMode := OldFileMode;
end;
end;
{ On modified dosbox executable it is possible to get
a copy of all output to CON into a file, simply write it
back to output, so it ends up into testname.elg file }
procedure EchoOutput;
var
StdText : TextFile;
st : string;
line : longint;
begin
if FileExists(OutputFileName) then
begin
Writeln('Trying to open ',OutputFileName);
try
AssignFile(StdText, OutputFileName);
Reset(StdText);
Writeln('Successfully opened ',OutputFileName,', copying content to output');
try
line:=0;
while not eof(StdText) do
begin
Readln(StdText,st);
inc(line);
Writeln(line,': ',st);
end;
finally
CloseFile(StdText);
end;
finally
if use_temp_dir then
DeleteFile(OutputFileName);
end;
end;
end;
function ReadExitCode(const ADosBoxDir: string): Integer;
var
F: TextFile;
begin
AssignFile(F, ADosBoxDir + 'EXITCODE.TXT');
try
Reset(F);
Readln(F, Result);
if Result <> 0 then
Writeln('ExitCode=',Result);
except
Writeln('Unable to read exitcode value');
ReadExitCode:=127*256;
end;
CloseFile(F);
end;
procedure ExecuteDosBox(const ADosBoxBinaryPath, ADosBoxDir: string);
var
Process: TProcess;
Time: Integer = 0;
begin
Process := TProcess.Create(nil);
try
Process.Executable := ADosBoxBinaryPath;
Process.Parameters.Add('-conf');
Process.Parameters.Add(ADosBoxDir + 'dosbox.conf');
if hide_execution then
Process.ShowWindow := swoHIDE;
Process.Execute;
repeat
Inc(Time);
if (Time > 10*dosbox_timeout) and do_exit then
break;
Sleep(100);
until not Process.Running;
if Process.Running then
begin
Writeln('Timeout exceeded. Killing dosbox...');
Process.Terminate(254);
end;
finally
Process.Free;
EchoOutput;
end;
end;
procedure Cleanup(const ADosBoxDir: string);
procedure DeleteIfExists(const AFileName: string);
begin
if FileExists(AFileName) then
DeleteFile(AFileName);
end;
begin
DeleteIfExists(ADosBoxDir + 'dosbox.conf');
DeleteIfExists(ADosBoxDir + 'EXITCODE.TXT');
DeleteIfExists(ADosBoxDir + 'EXITCODE.EXE');
DeleteIfExists(ADosBoxDir + 'TEST.EXE');
RmDir(ADosBoxDir);
end;
var
DosBoxDir: string;
ExitCode: Integer = 255;
DosBoxBinaryPath: string;
begin
Randomize;
if GetEnvironmentVariable('DOSBOX_NO_TEMPDIR')<>'' then
begin
use_temp_dir:=false;
Writeln('use_temp_dir set to false');
end;
if GetEnvironmentVariable('DOSBOX_NO_HIDE')<>'' then
begin
hide_execution:=false;
Writeln('hide_execution set to false');
end;
if GetEnvironmentVariable('DOSBOX_NO_EXIT')<>'' then
begin
do_exit:=false;
Writeln('do_exit set to false');
end;
if GetEnvironmentVariable('DOSBOX_TIMEOUT')<>'' then
begin
dosbox_timeout:=StrToInt(GetEnvironmentVariable('DOSBOX_TIMEOUT'));
Writeln('dosbox_timeout set to ', dosbox_timeout, ' seconds');
end;
if ParamCount = 0 then
begin
Writeln('Usage: ' + ParamStr(0) + ' <executable>');
Writeln('Set DOSBOX_NO_TEMPDIR env variable to 1 to avoid using a temporary directory');
Writeln('Set DOSBOX_NO_HIDE to avoid running dosbox in an hidden window');
Writeln('Set DOSBOX_NO_EXIT to avoid exiting dosbox after test has been run');
Writeln('Set DOSBOX_TIMEOUT to set the timeout in seconds before killing the dosbox process, assuming the test has hanged');
halt(1);
end;
DosBoxBinaryPath := GetEnvironmentVariable('DOSBOX');
if DosBoxBinaryPath = '' then
begin
Writeln('Please set the DOSBOX environment variable to the dosbox executable');
halt(1);
end
else
begin
Writeln('Using DOSBOX executable: ',DosBoxBinaryPath);
end;
{ DosBoxDir is used inside dosbox.conf as a MOUNT parameter }
if use_temp_dir then
DosBoxDir := GenerateTempDir
else
begin
Writeln('Using ',ParamStr(1));
DosBoxDir:=ExtractFilePath(ParamStr(1));
if DosBoxDir='' then
DosBoxDir:=GetCurrentDir+DirectorySeparator;
Writeln('Using DosBoxDir=',DosBoxDir);
end;
try
GenerateDosBoxConf(DosBoxDir);
CopyFile(ExtractFilePath(ParamStr(0)) + 'exitcode.exe', DosBoxDir + 'EXITCODE.EXE');
CopyFile(ParamStr(1), DosBoxDir + 'TEST.EXE');
ExecuteDosBox(DosBoxBinaryPath, DosBoxDir);
ExitCode := ReadExitCode(DosBoxDir);
finally
if use_temp_dir then
Cleanup(DosBoxDir);
end;
halt(ExitCode);
end.
|