2022-06-29 08:52:27 +02:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
-- Ada Web Server --
|
|
|
|
|
-- --
|
2025-10-08 17:46:35 +02:00
|
|
|
-- Copyright (C) 2022-2025, AdaCore --
|
2022-06-29 08:52:27 +02:00
|
|
|
-- --
|
|
|
|
|
-- This is free software; you can redistribute it and/or modify it --
|
|
|
|
|
-- under terms of the GNU General Public License as published by the --
|
|
|
|
|
-- Free Software Foundation; either version 3, or (at your option) any --
|
|
|
|
|
-- later version. This software 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. See the GNU --
|
|
|
|
|
-- General Public License for more details. --
|
|
|
|
|
-- --
|
|
|
|
|
-- You should have received a copy of the GNU General Public License --
|
|
|
|
|
-- distributed with this software; see file COPYING3. If not, go --
|
|
|
|
|
-- to http://www.gnu.org/licenses for a complete copy of the license. --
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
-- SOAP/WSDL test
|
|
|
|
|
|
|
|
|
|
with Ada.Calendar;
|
|
|
|
|
with Ada.Text_IO;
|
|
|
|
|
|
|
|
|
|
with AWS.Config.Set;
|
|
|
|
|
with AWS.MIME;
|
|
|
|
|
with AWS.Net;
|
|
|
|
|
with AWS.Response;
|
|
|
|
|
with AWS.Server.Status;
|
|
|
|
|
with AWS.Status;
|
|
|
|
|
with SOAP.Utils;
|
|
|
|
|
|
|
|
|
|
with StockQuoteService.Client;
|
|
|
|
|
with StockQuoteService.Server;
|
|
|
|
|
with StockQuoteService.Types;
|
|
|
|
|
|
|
|
|
|
procedure Array_Vector is
|
|
|
|
|
|
|
|
|
|
use Ada;
|
|
|
|
|
use AWS;
|
|
|
|
|
use StockQuoteService;
|
|
|
|
|
use type StockQuoteService.Types.ArrayOfFloat_Type;
|
|
|
|
|
|
|
|
|
|
H_Server : AWS.Server.HTTP;
|
|
|
|
|
|
|
|
|
|
package FIO is new Text_IO.Float_IO (Float);
|
|
|
|
|
|
|
|
|
|
function GetLastTradePrice
|
|
|
|
|
(tickerSymbol : String;
|
|
|
|
|
timePeriod : Types.TimePeriod_Type)
|
|
|
|
|
return Types.GetLastTradePrice_Result;
|
|
|
|
|
|
|
|
|
|
-------------
|
|
|
|
|
-- SOAP_CB --
|
|
|
|
|
-------------
|
|
|
|
|
|
|
|
|
|
function SOAP_CB is
|
|
|
|
|
new StockQuoteService.Server.GetLastTradePrice_CB (GetLastTradePrice);
|
|
|
|
|
|
|
|
|
|
function SOAP_Wrapper is new SOAP.Utils.SOAP_Wrapper (SOAP_CB);
|
|
|
|
|
|
|
|
|
|
--------
|
|
|
|
|
-- CB --
|
|
|
|
|
--------
|
|
|
|
|
|
|
|
|
|
function CB (Request : Status.Data) return Response.Data is
|
|
|
|
|
SOAPAction : constant String := Status.SOAPAction (Request);
|
|
|
|
|
begin
|
|
|
|
|
if SOAPAction = "http://localhost/GetTradePrices" then
|
2025-10-08 17:46:35 +02:00
|
|
|
return SOAP_Wrapper (Request, StockQuoteService.Schema);
|
2022-06-29 08:52:27 +02:00
|
|
|
else
|
|
|
|
|
return Response.Build (MIME.Text_HTML, "<p>Not a SOAP request");
|
|
|
|
|
end if;
|
|
|
|
|
end CB;
|
|
|
|
|
|
|
|
|
|
-----------------------
|
|
|
|
|
-- GetLastTradePrice --
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
function GetLastTradePrice
|
|
|
|
|
(tickerSymbol : String;
|
|
|
|
|
timePeriod : Types.TimePeriod_Type)
|
|
|
|
|
return Types.GetLastTradePrice_Result
|
|
|
|
|
is
|
|
|
|
|
use type Calendar.Time;
|
|
|
|
|
|
|
|
|
|
D : constant Duration := timePeriod.endTime - timePeriod.startTime;
|
|
|
|
|
A : Types.ArrayOfFloat_Type;
|
|
|
|
|
begin
|
|
|
|
|
Text_IO.Put_Line ("Symbol " & tickerSymbol);
|
|
|
|
|
A.Append (1.2);
|
|
|
|
|
A.Append (2.3);
|
|
|
|
|
A.Append (3.4);
|
|
|
|
|
return (A, Float (D));
|
|
|
|
|
end GetLastTradePrice;
|
|
|
|
|
|
|
|
|
|
----------------------
|
|
|
|
|
-- WSDL_Demo_Client --
|
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
|
|
procedure WSDL_Demo_Client is
|
|
|
|
|
use Ada;
|
|
|
|
|
Result : Types.GetLastTradePrice_Result;
|
|
|
|
|
TP : Types.TimePeriod_Type;
|
|
|
|
|
begin
|
|
|
|
|
TP := (Calendar.Time_Of (2003, 2, 18),
|
|
|
|
|
Calendar.Time_Of (2003, 3, 6));
|
|
|
|
|
|
|
|
|
|
Result := StockQuoteService.Client.GetLastTradePrice ("ADA95", TP);
|
|
|
|
|
|
|
|
|
|
Text_IO.Put ("Frequency : ");
|
|
|
|
|
FIO.Put (Result.Frequency, Aft => 2, Exp => 0);
|
|
|
|
|
Text_IO.New_Line;
|
|
|
|
|
|
|
|
|
|
for K in 1 .. Positive (Result.Result.Length) loop
|
|
|
|
|
Text_IO.Put (Positive'Image (K) & " = ");
|
|
|
|
|
FIO.Put (Result.Result (K), Aft => 2, Exp => 0);
|
|
|
|
|
Text_IO.New_Line;
|
|
|
|
|
end loop;
|
|
|
|
|
end WSDL_Demo_Client;
|
|
|
|
|
|
|
|
|
|
CNF : Config.Object;
|
|
|
|
|
|
|
|
|
|
begin
|
|
|
|
|
Config.Set.Server_Name (CNF, "WSDL Stock Quote Server");
|
|
|
|
|
Config.Set.Server_Host (CNF, "localhost");
|
|
|
|
|
Config.Set.Server_Port (CNF, StockQuoteService.Server.Port);
|
|
|
|
|
|
|
|
|
|
AWS.Server.Start (H_Server, CB'Unrestricted_Access, CNF);
|
|
|
|
|
|
2024-11-11 20:12:09 +01:00
|
|
|
if Net.IPv6_Available and then AWS.Server.Status.Is_IPv6 (H_Server) then
|
2022-06-29 08:52:27 +02:00
|
|
|
-- Need to start second server on same port but on the different
|
|
|
|
|
-- Protocol_Family because we do not know which family would client try
|
|
|
|
|
-- to connect.
|
|
|
|
|
|
2024-11-11 20:12:09 +01:00
|
|
|
AWS.Server.Add_Listening
|
|
|
|
|
(H_Server, "localhost", StockQuoteService.Server.Port,
|
|
|
|
|
Net.FAMILY_INET);
|
2022-06-29 08:52:27 +02:00
|
|
|
end if;
|
|
|
|
|
|
|
|
|
|
WSDL_Demo_Client;
|
|
|
|
|
|
|
|
|
|
AWS.Server.Shutdown (H_Server);
|
|
|
|
|
end Array_Vector;
|