(* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. *) program skiptest_version1; {$APPTYPE CONSOLE} uses Classes, Windows, SysUtils, Skiptest.One, Thrift in '..\..\src\Thrift.pas', Thrift.Exception in '..\..\src\Thrift.Exception.pas', Thrift.Socket in '..\..\src\Thrift.Socket.pas', Thrift.Transport in '..\..\src\Thrift.Transport.pas', Thrift.Protocol in '..\..\src\Thrift.Protocol.pas', Thrift.Protocol.JSON in '..\..\src\Thrift.Protocol.JSON.pas', Thrift.Collections in '..\..\src\Thrift.Collections.pas', Thrift.Server in '..\..\src\Thrift.Server.pas', Thrift.Utils in '..\..\src\Thrift.Utils.pas', Thrift.WinHTTP in '..\..\src\Thrift.WinHTTP.pas', Thrift.TypeRegistry in '..\..\src\Thrift.TypeRegistry.pas', Thrift.Stream in '..\..\src\Thrift.Stream.pas'; const REQUEST_EXT = '.request'; RESPONSE_EXT = '.response'; function CreatePing : IPing; begin result := TPingImpl.Create; result.Version1 := Tskiptest_version_1Constants.SKIPTESTSERVICE_VERSION; end; type TDummyServer = class( TInterfacedObject, TSkipTestService.Iface) protected // TSkipTestService.Iface procedure PingPong(const ping: IPing); end; procedure TDummyServer.PingPong(const ping: IPing); // TSkipTestService.Iface begin Writeln('- performing request from version '+IntToStr(ping.Version1)+' client'); end; function CreateProtocol( protfact : IProtocolFactory; stm : TStream; aForInput : Boolean) : IProtocol; var adapt : IThriftStream; trans : ITransport; begin adapt := TThriftStreamAdapterDelphi.Create( stm, FALSE); if aForInput then trans := TStreamTransportImpl.Create( adapt, nil) else trans := TStreamTransportImpl.Create( nil, adapt); result := protfact.GetProtocol( trans); end; procedure CreateRequest( protfact : IProtocolFactory; fname : string); var stm : TFileStream; ping : IPing; proto : IProtocol; client : TSkipTestService.TClient; // we need access to send/recv_pingpong() cliRef : IUnknown; // holds the refcount begin Writeln('- creating new request'); stm := TFileStream.Create( fname+REQUEST_EXT+'.tmp', fmCreate); try ping := CreatePing; // save request data proto := CreateProtocol( protfact, stm, FALSE); client := TSkipTestService.TClient.Create( nil, proto); cliRef := client as IUnknown; client.send_PingPong( ping); finally client := nil; // not Free! cliRef := nil; stm.Free; if client = nil then {warning suppressed}; end; DeleteFile( fname+REQUEST_EXT); RenameFile( fname+REQUEST_EXT+'.tmp', fname+REQUEST_EXT); end; procedure ReadResponse( protfact : IProtocolFactory; fname : string); var stm : TFileStream; proto : IProtocol; client : TSkipTestService.TClient; // we need access to send/recv_pingpong() cliRef : IUnknown; // holds the refcount begin Writeln('- reading response'); stm := TFileStream.Create( fname+RESPONSE_EXT, fmOpenRead); try // save request data proto := CreateProtocol( protfact, stm, TRUE); client := TSkipTestService.TClient.Create( proto, nil); cliRef := client as IUnknown; client.recv_PingPong; finally client := nil; // not Free! cliRef := nil; stm.Free; if client = nil then {warning suppressed}; end; end; procedure ProcessFile( protfact : IProtocolFactory; fname : string); var stmIn, stmOut : TFileStream; protIn, protOut : IProtocol; server : IProcessor; begin Writeln('- processing request'); stmOut := nil; stmIn := TFileStream.Create( fname+REQUEST_EXT, fmOpenRead); try stmOut := TFileStream.Create( fname+RESPONSE_EXT+'.tmp', fmCreate); // process request and write response data protIn := CreateProtocol( protfact, stmIn, TRUE); protOut := CreateProtocol( protfact, stmOut, FALSE); server := TSkipTestService.TProcessorImpl.Create( TDummyServer.Create); server.Process( protIn, protOut); finally server := nil; // not Free! stmIn.Free; stmOut.Free; if server = nil then {warning suppressed}; end; DeleteFile( fname+RESPONSE_EXT); RenameFile( fname+RESPONSE_EXT+'.tmp', fname+RESPONSE_EXT); end; procedure Test( protfact : IProtocolFactory; fname : string); begin // try to read an existing request if FileExists( fname + REQUEST_EXT) then begin ProcessFile( protfact, fname); ReadResponse( protfact, fname); end; // create a new request and try to process CreateRequest( protfact, fname); ProcessFile( protfact, fname); ReadResponse( protfact, fname); end; const FILE_BINARY = 'pingpong.bin'; FILE_JSON = 'pingpong.json'; begin try Writeln( 'Delphi SkipTest '+IntToStr(Tskiptest_version_1Constants.SKIPTESTSERVICE_VERSION)+' using '+Thrift.Version); Writeln; Writeln('Binary protocol'); Test( TBinaryProtocolImpl.TFactory.Create, FILE_BINARY); Writeln; Writeln('JSON protocol'); Test( TJSONProtocolImpl.TFactory.Create, FILE_JSON); Writeln; Writeln('Test completed without errors.'); Writeln; Write('Press ENTER to close ...'); Readln; except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; end.