matreshka_league_21.0.0_0c8f4d47/source/web/tools/wsdl2ada/wsdl-debug.adb

  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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
------------------------------------------------------------------------------
--                                                                          --
--                            Matreshka Project                             --
--                                                                          --
--                               Web Framework                              --
--                                                                          --
--                              Tools Component                             --
--                                                                          --
------------------------------------------------------------------------------
--                                                                          --
-- Copyright © 2012-2014, Vadim Godunko <vgodunko@gmail.com>                --
-- All rights reserved.                                                     --
--                                                                          --
-- Redistribution and use in source and binary forms, with or without       --
-- modification, are permitted provided that the following conditions       --
-- are met:                                                                 --
--                                                                          --
--  * Redistributions of source code must retain the above copyright        --
--    notice, this list of conditions and the following disclaimer.         --
--                                                                          --
--  * Redistributions in binary form must reproduce the above copyright     --
--    notice, this list of conditions and the following disclaimer in the   --
--    documentation and/or other materials provided with the distribution.  --
--                                                                          --
--  * Neither the name of the Vadim Godunko, IE nor the names of its        --
--    contributors may be used to endorse or promote products derived from  --
--    this software without specific prior written permission.              --
--                                                                          --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS      --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT        --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR    --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT     --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,   --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR   --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF   --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING     --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS       --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.             --
--                                                                          --
------------------------------------------------------------------------------
--  $Revision: 4790 $ $Date: 2014-03-31 10:05:57 +0400 (Пн, 31 мар 2014) $
------------------------------------------------------------------------------
with Ada.Wide_Wide_Text_IO;

with League.Strings;
with XML.SAX.Attributes;
with XML.SAX.String_Output_Destinations;
with XML.SAX.Pretty_Writers;

with WSDL.AST.Bindings;
pragma Unreferenced (WSDL.AST.Bindings);
--  GNAT Pro 7.2.0w (20130423): package is needed to access to type's
--  components.
with WSDL.AST.Descriptions;
pragma Unreferenced (WSDL.AST.Descriptions);
--  GNAT Pro 7.2.0w (20130423): package is needed to access to type's
--  components.
with WSDL.AST.Endpoints;
with WSDL.AST.Interfaces;
pragma Unreferenced (WSDL.AST.Interfaces);
--  GNAT Pro 7.2.0w (20130423): package is needed to access to type's
--  components.
with WSDL.AST.Messages;
pragma Unreferenced (WSDL.AST.Messages);
--  GNAT Pro 7.2.0w (20130423): package is needed to access to type's
--  components.
with WSDL.AST.Operations;
pragma Unreferenced (WSDL.AST.Operations);
--  GNAT Pro 7.2.0w (20130423): package is needed to access to type's
--  components.
with WSDL.AST.Services;
with WSDL.AST.Types;
with WSDL.Constants;
with WSDL.Iterators.Containment;
with WSDL.Visitors;

package body WSDL.Debug is

   use WSDL.Constants;

   type WSDL_Printer is
     limited new WSDL.Visitors.WSDL_Visitor with
   record
      Output : aliased
        XML.SAX.String_Output_Destinations.String_Output_Destination;
      Writer : XML.SAX.Pretty_Writers.XML_Pretty_Writer;
   end record;

   overriding procedure Enter_Binding
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Binding
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Binding_Fault
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Fault_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Binding_Fault
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Fault_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Binding_Operation
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Operation_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Binding_Operation
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Operation_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Description
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Description_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Description
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Description_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Endpoint
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Endpoints.Endpoint_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Endpoint
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Endpoints.Endpoint_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Interface
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Interface
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Interface_Message
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Message_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Interface_Message
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Message_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Interface_Operation
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Operation_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Interface_Operation
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Operation_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Service
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Services.Service_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Service
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Services.Service_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Enter_Types
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Types.Types_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   overriding procedure Leave_Types
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Types.Types_Access;
     Control : in out WSDL.Iterators.Traverse_Control);

   ----------
   -- Dump --
   ----------

   procedure Dump (Description : WSDL.AST.Description_Access) is
      Printer  : WSDL_Printer;
      Iterator : WSDL.Iterators.Containment.Containment_Iterator;
      Control  : WSDL.Iterators.Traverse_Control := WSDL.Iterators.Continue;

   begin
      Printer.Writer.Set_Output_Destination (Printer.Output'Unchecked_Access);
      Iterator.Visit (Printer, WSDL.AST.Node_Access (Description), Control);
   end Dump;

   -------------------
   -- Enter_Binding --
   -------------------

   overriding procedure Enter_Binding
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Access;
     Control : in out WSDL.Iterators.Traverse_Control)
   is
      Attributes : XML.SAX.Attributes.SAX_Attributes;

   begin
      Attributes.Set_Value (Name_Attribute, Node.Local_Name);
      Attributes.Set_Value (Type_Attribute, Node.Binding_Type);
      Self.Writer.Start_Element
       (WSDL_Namespace_URI, Binding_Element, Attributes);
   end Enter_Binding;

   -------------------------
   -- Enter_Binding_Fault --
   -------------------------

   overriding procedure Enter_Binding_Fault
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Fault_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.Start_Element (WSDL_Namespace_URI, Fault_Element);
   end Enter_Binding_Fault;

   -----------------------------
   -- Enter_Binding_Operation --
   -----------------------------

   overriding procedure Enter_Binding_Operation
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Operation_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.Start_Element (WSDL_Namespace_URI, Operation_Element);
   end Enter_Binding_Operation;

   -----------------------
   -- Enter_Description --
   -----------------------

   overriding procedure Enter_Description
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Description_Access;
     Control : in out WSDL.Iterators.Traverse_Control)
   is
      Attributes : XML.SAX.Attributes.SAX_Attributes;

   begin
      Self.Writer.Set_Offset (2);
      Self.Writer.Start_Document;
      Self.Writer.Start_Prefix_Mapping
       (League.Strings.To_Universal_String ("wsdl"), WSDL_Namespace_URI);
      Attributes.Set_Value
       (Target_Namespace_Attribute, Node.Target_Namespace);
      Self.Writer.Start_Element
       (WSDL_Namespace_URI, Description_Element, Attributes);
   end Enter_Description;

   --------------------
   -- Enter_Endpoint --
   --------------------

   overriding procedure Enter_Endpoint
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Endpoints.Endpoint_Access;
     Control : in out WSDL.Iterators.Traverse_Control)
   is
      Attributes : XML.SAX.Attributes.SAX_Attributes;

   begin
      Attributes.Set_Value (Name_Attribute, Node.Local_Name);

      if not Node.Address.Is_Empty then
         Attributes.Set_Value (Address_Attribute, Node.Address);
      end if;

      Self.Writer.Start_Element
       (WSDL_Namespace_URI, Endpoint_Element, Attributes);
   end Enter_Endpoint;

   ---------------------
   -- Enter_Interface --
   ---------------------

   overriding procedure Enter_Interface
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Access;
     Control : in out WSDL.Iterators.Traverse_Control)
   is
      Attributes : XML.SAX.Attributes.SAX_Attributes;

   begin
      Attributes.Set_Value (Name_Attribute, Node.Local_Name);
      Self.Writer.Start_Element
       (WSDL_Namespace_URI, Interface_Element, Attributes);
   end Enter_Interface;

   -----------------------------
   -- Enter_Interface_Message --
   -----------------------------

   overriding procedure Enter_Interface_Message
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Message_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      case Node.Direction is
         when WSDL.AST.In_Message =>
            Self.Writer.Start_Element (WSDL_Namespace_URI, Input_Element);

         when WSDL.AST.Out_Message =>
            Self.Writer.Start_Element (WSDL_Namespace_URI, Output_Element);
      end case;
   end Enter_Interface_Message;

   -------------------------------
   -- Enter_Interface_Operation --
   -------------------------------

   overriding procedure Enter_Interface_Operation
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Operation_Access;
     Control : in out WSDL.Iterators.Traverse_Control)
   is
      Attributes : XML.SAX.Attributes.SAX_Attributes;

   begin
      Attributes.Set_Value (Name_Attribute, Node.Local_Name);
      Self.Writer.Start_Element
       (WSDL_Namespace_URI, Operation_Element, Attributes);
   end Enter_Interface_Operation;

   -------------------
   -- Enter_Service --
   -------------------

   overriding procedure Enter_Service
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Services.Service_Access;
     Control : in out WSDL.Iterators.Traverse_Control)
   is
      Attributes : XML.SAX.Attributes.SAX_Attributes;

   begin
      Attributes.Set_Value (Name_Attribute, Node.Local_Name);
      Self.Writer.Start_Element
       (WSDL_Namespace_URI, Service_Element, Attributes);
   end Enter_Service;

   -----------------
   -- Enter_Types --
   -----------------

   overriding procedure Enter_Types
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Types.Types_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.Start_Element (WSDL_Namespace_URI, Types_Element);
   end Enter_Types;

   -------------------
   -- Leave_Binding --
   -------------------

   overriding procedure Leave_Binding
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Binding_Element);
   end Leave_Binding;

   -------------------------
   -- Leave_Binding_Fault --
   -------------------------

   overriding procedure Leave_Binding_Fault
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Fault_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Fault_Element);
   end Leave_Binding_Fault;

   -----------------------------
   -- Leave_Binding_Operation --
   -----------------------------

   overriding procedure Leave_Binding_Operation
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Binding_Operation_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Operation_Element);
   end Leave_Binding_Operation;

   -----------------------
   -- Leave_Description --
   -----------------------

   overriding procedure Leave_Description
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Description_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Description_Element);
      Self.Writer.End_Document;

      Ada.Wide_Wide_Text_IO.Put_Line
       (Self.Output.Get_Text.To_Wide_Wide_String);
   end Leave_Description;

   --------------------
   -- Leave_Endpoint --
   --------------------

   overriding procedure Leave_Endpoint
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Endpoints.Endpoint_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Endpoint_Element);
   end Leave_Endpoint;

   ---------------------
   -- Leave_Interface --
   ---------------------

   overriding procedure Leave_Interface
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Interface_Element);
   end Leave_Interface;

   -----------------------------
   -- Leave_Interface_Message --
   -----------------------------

   overriding procedure Leave_Interface_Message
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Message_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      case Node.Direction is
         when WSDL.AST.In_Message =>
            Self.Writer.End_Element (WSDL_Namespace_URI, Input_Element);

         when WSDL.AST.Out_Message =>
            Self.Writer.End_Element (WSDL_Namespace_URI, Output_Element);
      end case;
   end Leave_Interface_Message;

   -------------------------------
   -- Leave_Interface_Operation --
   -------------------------------

   overriding procedure Leave_Interface_Operation
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Interface_Operation_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Operation_Element);
   end Leave_Interface_Operation;

   -------------------
   -- Leave_Service --
   -------------------

   overriding procedure Leave_Service
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Services.Service_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Service_Element);
   end Leave_Service;

   -----------------
   -- Leave_Types --
   -----------------

   overriding procedure Leave_Types
    (Self    : in out WSDL_Printer;
     Node    : not null WSDL.AST.Types.Types_Access;
     Control : in out WSDL.Iterators.Traverse_Control) is
   begin
      Self.Writer.End_Element (WSDL_Namespace_URI, Types_Element);
   end Leave_Types;

end WSDL.Debug;