blob: 83727f6195166a4996ebd9962d32face6f1bbfc6 [file] [log] [blame]
Jake Farrell29defeb2011-11-10 21:11:46 +00001(*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 *)
19
20
21program client;
22
23{$APPTYPE CONSOLE}
24
25uses
Jake Farrell27274222011-11-10 20:32:44 +000026 SysUtils,
Jens Geyerb342bd92019-06-03 20:27:00 +020027 DataFactory in 'Performance\DataFactory.pas',
28 PerfTests in 'Performance\PerfTests.pas',
Jake Farrell27274222011-11-10 20:32:44 +000029 TestClient in 'TestClient.pas',
Roger Meier3bef8c22012-10-06 06:58:00 +000030 Thrift.Test, // in 'gen-delphi\Thrift.Test.pas',
31 Thrift in '..\src\Thrift.pas',
32 Thrift.Transport in '..\src\Thrift.Transport.pas',
Jens Geyerbea9bbe2016-04-20 00:02:40 +020033 Thrift.Socket in '..\src\Thrift.Socket.pas',
Jens Geyer606f1ef2018-04-09 23:09:41 +020034 Thrift.Exception in '..\src\Thrift.Exception.pas',
Roger Meier3bef8c22012-10-06 06:58:00 +000035 Thrift.Transport.Pipes in '..\src\Thrift.Transport.Pipes.pas',
Jens Geyer02230912019-04-03 01:12:51 +020036 Thrift.Transport.WinHTTP in '..\src\Thrift.Transport.WinHTTP.pas',
37 Thrift.Transport.MsxmlHTTP in '..\src\Thrift.Transport.MsxmlHTTP.pas',
Roger Meier3bef8c22012-10-06 06:58:00 +000038 Thrift.Protocol in '..\src\Thrift.Protocol.pas',
39 Thrift.Protocol.JSON in '..\src\Thrift.Protocol.JSON.pas',
Jens Geyerf0e63312015-03-01 18:47:49 +010040 Thrift.Protocol.Compact in '..\src\Thrift.Protocol.Compact.pas',
Jens Geyere0e32402016-04-20 21:50:48 +020041 Thrift.Protocol.Multiplex in '..\src\Thrift.Protocol.Multiplex.pas',
Roger Meier3bef8c22012-10-06 06:58:00 +000042 Thrift.Collections in '..\src\Thrift.Collections.pas',
43 Thrift.Server in '..\src\Thrift.Server.pas',
44 Thrift.Stream in '..\src\Thrift.Stream.pas',
Jens Geyer6bbbf192014-09-07 01:45:56 +020045 Thrift.TypeRegistry in '..\src\Thrift.TypeRegistry.pas',
Jens Geyer02230912019-04-03 01:12:51 +020046 Thrift.WinHTTP in '..\src\Thrift.WinHTTP.pas',
Roger Meier3bef8c22012-10-06 06:58:00 +000047 Thrift.Utils in '..\src\Thrift.Utils.pas';
Jake Farrell27274222011-11-10 20:32:44 +000048
Jake Farrell29defeb2011-11-10 21:11:46 +000049var
50 nParamCount : Integer;
51 args : array of string;
52 i : Integer;
53 arg : string;
Jake Farrell29defeb2011-11-10 21:11:46 +000054
55begin
56 try
57 Writeln( 'Delphi TestClient '+Thrift.Version);
58 nParamCount := ParamCount;
59 SetLength( args, nParamCount);
Jens Geyer9f7f11e2016-04-14 21:37:11 +020060 for i := 1 to nParamCount do begin
Jake Farrell29defeb2011-11-10 21:11:46 +000061 arg := ParamStr( i );
62 args[i-1] := arg;
63 end;
Jens Geyer9f7f11e2016-04-14 21:37:11 +020064
Jens Geyerf8a1b7a2014-09-24 00:26:46 +020065 ExitCode := TTestClient.Execute( args);
Jens Geyer9f7f11e2016-04-14 21:37:11 +020066
Jake Farrell29defeb2011-11-10 21:11:46 +000067 except
Jens Geyerf8a1b7a2014-09-24 00:26:46 +020068 on E: EAbort do begin
69 ExitCode := $FF;
70 end;
Roger Meierbb6de7a2012-05-04 23:35:45 +000071 on E: Exception do begin
Jake Farrell29defeb2011-11-10 21:11:46 +000072 Writeln(E.ClassName, ': ', E.Message);
Jens Geyerf8a1b7a2014-09-24 00:26:46 +020073 ExitCode := $FF;
Roger Meierbb6de7a2012-05-04 23:35:45 +000074 end;
Jake Farrell29defeb2011-11-10 21:11:46 +000075 end;
76end.
77