File: deriveconst_main.adb

package info (click to toggle)
libaws 20.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,656 kB
  • sloc: ada: 95,505; python: 2,270; ansic: 1,017; makefile: 829; xml: 235; javascript: 202; java: 112; sh: 106
file content (167 lines) | stat: -rw-r--r-- 5,836 bytes parent folder | download | duplicates (3)
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
------------------------------------------------------------------------------
--                              Ada Web Server                              --
--                                                                          --
--                       Copyright (C) 2015, AdaCore                        --
--                                                                          --
--  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.      --
------------------------------------------------------------------------------

with Ada.Strings.Unbounded;
with Ada.Text_IO;

with AWS.Server.Status;
with AWS.URL;

with SOAP.Client;
with SOAP.Message.Payload;
with SOAP.Message.Response.Error;
with SOAP.Name_Space;
with SOAP.Parameters;
with SOAP.Types;

with CB;
with Deriveconst_Demo.Client;
with Deriveconst_Demo.Types;

procedure Deriveconst_Main is

   use Ada;
   use Ada.Strings.Unbounded;

   use AWS;
   use SOAP;
   use SOAP.Parameters;
   use SOAP.Types;

   use Deriveconst_Demo.Types;

   function "+"
     (Str : String)
      return Unbounded_String
      renames To_Unbounded_String;

   procedure Error (E : Message.Response.Error.Object);

   procedure Call
     (Id    : Integer;
      One   : Integer;
      Two   : Integer;
      Three : Long_Float;
      Four  : String;
      Six   : String;
      Seven : String;
      Eight : String);
   --  Send a Call display return error is any

   HTTP : Server.HTTP;
   URL  : AWS.URL.Object;

   ----------
   -- Call --
   ----------

   procedure Call
     (Id    : Integer;
      One   : Integer;
      Two   : Integer;
      Three : Long_Float;
      Four  : String;
      Six   : String;
      Seven : String;
      Eight : String)
   is
      TNS   : SOAP.Name_Space.Object := SOAP.Name_Space.Create
                ("tns", "http://www.ecerami.com/wsdl/DeriveconstService.wsdl");
      O_Set : Object_Set := (+S ("00000000", "item", "tns:Name"),
                             +S ((if Id = 3 then "x" else "abcdefgh"),
                                 "item", "tns:Name"));
      P_Set : Parameters.List :=
                +R ((+I (Id, "id", "xs:int"),
                     +I (One, "one", "tns:PercentCompleteInteger"),
                     +I (Two, "two", "tns:NonNegativeInt"),
                     +D (Three, "three", "tns:NonNegativeFloat"),
                     +S (Four, "four", "tns:Name"),
                     +A (O_Set, "five", "tns:ArrayOfName"),
                     +S (Six, "six", "tns:Address"),
                     +S (Seven, "seven", "tns:Code1"),
                     +S (Eight, "eight", "tns:Code2")),
                     "params", "tns:big", TNS);
      P     : Message.Payload.Object :=
                Message.Payload.Build
                  ("call", P_Set,
                    SOAP.Name_Space.Create
                      ("ns1", "urn:examples:deriveconstservice"));
      R     : constant Message.Response.Object'Class :=
                SOAP.Client.Call (AWS.URL.URL (URL), P, "call",
                                  Schema => Deriveconst_Demo.Schema);
   begin
      if R.Is_Error then
         Text_IO.Put_Line ("Id" & Integer'Image (Id));
         Error (Message.Response.Error.Object (R));
      else
         if Id = 2 then
            Text_IO.Put_Line ("OK");
         else
            Text_IO.Put_Line ("NOK");
         end if;
      end if;
   end Call;

   -----------
   -- Error --
   -----------

   procedure Error (E : Message.Response.Error.Object) is
      P : constant Parameters.List := SOAP.Message.Parameters (E);
   begin
      Text_IO.Put_Line
        ("Faultcode   : " & SOAP.Parameters.Get (P, "faultcode"));

      Text_IO.Put_Line
        ("Faultstring : " & SOAP.Parameters.Get (P, "faultstring"));
   end Error;

   A  : constant ArrayOfName_Type := (1 => "00000000", 2 => "abcdefgh");
   B1 : constant Big_Type := (1, 1, 1, 1.0, "abcdefgh", +A,
                              To_Address_Type (+"0987654"),
                              To_Code1_Type (+"A2"),
                              "A3b");

begin
   Text_IO.Put_Line ("Run OK");

   Server.Start (HTTP, "name", CB.CB'Access, Port => 0);
   URL := AWS.URL.Parse (Server.Status.Local_URL (HTTP));

   Deriveconst_Demo.Client.Call (B1, Endpoint => AWS.URL.URL (URL));

   --  One call with respected constraints

   Call (2, 99, 7, 9.0, "12345678", "12345", "A2", "A9z");

   --  Some calls with constraints error

   Call (3, 88, 7, 9.0, "12345678", "12345", "A2", "A9z");
   --  fails because of array

   Call (4, 101, 7, 9.0, "12345678", "12345", "A2", "A9z");
   Call (5, 99, 7, 9.0, "12345", "12345", "A2", "A9z");
   Call (6, 99, 7, -0.1, "12345678", "12345", "A2", "A9z");
   Call (7, 99, -7, 9.0, "12345678", "12345", "A2", "A9z");
   Call (8, 99, -7, 9.0, "12345678", "145", "A2", "A9z");
   Call (9, 99, -7, 9.0, "12345678", "145000000099887", "A2", "A9z");
   Call (10, 99, 7, 9.0, "12345678", "12345", "Ab", "A9z");
   Call (11, 99, 7, 9.0, "12345678", "12345", "Ab", "A#@");

   Server.Shutdown (HTTP);
end Deriveconst_Main;