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 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514
|
------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2003-2006 --
-- AdaCore --
-- --
-- Authors: Dmitriy Anisimkov - Pascal Obry --
-- --
-- This library is free software; you can redistribute it and/or modify --
-- it under the terms of the GNU General Public License as published by --
-- the Free Software Foundation; either version 2 of the License, or (at --
-- your option) any later version. --
-- --
-- This library 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 --
-- along with this library; if not, write to the Free Software Foundation, --
-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
-- --
------------------------------------------------------------------------------
with Ada.Text_IO;
with Ada.Exceptions;
with Ada.Characters.Handling;
with Ada.Strings;
with Ada.Strings.Fixed;
with Ada.Strings.Maps;
with Ada.Strings.Unbounded;
with Ada.Unchecked_Deallocation;
with GNAT.OS_Lib;
with Asis;
with Asis.Ada_Environments;
with Asis.Compilation_Units;
with Asis.Declarations;
with Asis.Definitions;
with Asis.Elements;
with Asis.Errors;
with Asis.Exceptions;
with Asis.Expressions;
with Asis.Extensions.Flat_Kinds;
with Asis.Implementation;
with Asis.Iterator;
with Asis.Text;
with A4G.GNAT_Int;
with SOAP.Name_Space;
with Ada2WSDL.Options;
with Ada2WSDL.Generator;
package body Ada2WSDL.Parser is
use Ada;
use Ada.Exceptions;
use Ada.Strings.Unbounded;
use Asis;
use GNAT;
-- The Compile routine is defined in Asis.Extensions in recent ASIS
-- version, it was defined in A4G.GNAT_Int in older ones.
use A4G.GNAT_Int;
use Asis.Extensions;
pragma Warnings (Off, A4G.GNAT_Int);
use type Asis.Errors.Error_Kinds;
subtype String_Access is OS_Lib.String_Access;
------------------------------
-- File and Directory names --
------------------------------
Tree_Name : String_Access;
-- We need it in more, then one routine, so we define it here
Max_Argument : constant := 1_024;
Arg_List : OS_Lib.Argument_List (1 .. Max_Argument);
-- -I options from the Ada2WSDL command line transformed into the
-- form appropriate for calling gcc to create the tree file.
Arg_Index : Natural := 0;
GNATMAKE : constant String_Access :=
OS_Lib.Locate_Exec_On_Path ("gnatmake");
----------------------
-- Status variables --
----------------------
My_Context : Asis.Context;
Tree_File : Text_IO.File_Type;
Spec_File : Text_IO.File_Type;
-----------------------
-- Local subprograms --
-----------------------
procedure Create_Tree;
-- Creates a tree file or checks if the tree file already exists,
-- depending on options
type Element_Node;
type Link is access all Element_Node;
type Element_Node is record
Spec : Asis.Element := Nil_Element;
Spec_Name : String_Access;
-- Not used for incomplete type declarations
Up : Link;
Down : Link;
Prev : Link;
Next : Link;
Last : Link;
end record;
-- An element of a dynamic structure representing a "skeleton" of the body
-- to be generated
--
-- Logically this structure is a list of elements representing local
-- bodies and sublists representing the bodies which are a components of
-- some local body. Each list and sublist is represented by its first
-- element. For this first list element, the field Last is used to point
-- to the last element in this list to speed up adding the new element if
-- we do not have to order alphabetically the local bodies.
Body_Structure : aliased Element_Node;
-- This is a "design" for a body to generate. It contains references
-- to the elements from the argument spec for which body samples should
-- be generated, ordered alphabetically. The top of this link structure
-- is the Element representing a unit declaration from the argument
-- compilation unit.
------------------------------------------------
-- Actuals for Traverse_Element instantiation --
------------------------------------------------
type Body_State is record
Argument_Spec : Boolean := True;
-- Flag indicating if we are in the very beginning (very top)
-- of scanning the argument library unit declaration
Current_List : Link;
-- Declaration list in which a currently processed spec
-- should be inserted;
Last_Top : Link;
-- An element which represents a declaration from which the currently
-- processed sublist was originated
New_List_Needed : Boolean := False;
-- Flag indication if a new sublist should be created
end record;
procedure Create_Element_Node
(Element : in Asis.Element;
Control : in out Traverse_Control;
State : in out Body_State);
-- When visiting an Element representing something for which a body
-- sample may be required, we check if the body is really required
-- and insert the corresponding Element on the right place in Body_State
-- if it is.
procedure Go_Up
(Element : in Asis.Element;
Control : in out Traverse_Control;
State : in out Body_State);
-- When leaving a [generic] package declaration or a protected [type]
-- declaration, we have to go one step up in Body_State structure.
procedure Create_Structure is new Iterator.Traverse_Element
(State_Information => Body_State,
Pre_Operation => Create_Element_Node,
Post_Operation => Go_Up);
-- Creates Body_Structure by traversing an argument spec and choosing
-- specs to create body samples for
--------------------
-- Local Routines --
--------------------
function Name (Elem : in Asis.Element) return String;
-- Returns a defining name string image for a declaration which
-- defines exactly one name. This should definitely be made an extension
-- query
function Image (Str : in Wide_String) return String;
-- Returns the trimed string representation of Str
procedure Analyse_Structure;
-- Go through all entities and generate WSDL
procedure Emergency_Clean_Up;
-- Does clean up actions in case if an exception was raised during
-- creating a body sample (closes a Context, dissociates it, finalizes
-- ASIS, closes and deletes needed files.
------------------------------------
-- Deferred Asis types to analyse --
------------------------------------
type Element_Set is array (Positive range <>) of Asis.Element;
Max_Deferred_Types : constant := 1_024;
Deferred_Types : Element_Set (1 .. Max_Deferred_Types);
-- Records all types tha can't be analysed at some point. For example we
-- can't parse a type while parsing the spec.
Index : Natural := 0;
-- Current Index in the Deferred_Types array
function Register_Deferred (E : in Asis.Declaration) return String;
-- Register a deferred type to be generated after first
-- pass. Returns the name of the type.
----------------
-- Add_Option --
----------------
procedure Add_Option (Option : in String) is
begin
Arg_Index := Arg_Index + 1;
Arg_List (Arg_Index) := new String'(Option);
end Add_Option;
-----------------------
-- Analyse_Structure --
-----------------------
procedure Analyse_Structure is
procedure Analyse_Package (Node : in Link);
-- Analyse a package declaration, the package name is used as
-- the Web Service name.
procedure Analyse_Package_Instantiation (Node : in Link);
-- Checks if this instantiation is to create a safe pointer, in this
-- case records the type and access type for later used.
procedure Analyse_Routine (Node : in Link);
-- Node is a procedure or function, analyse its spec profile
procedure Analyse_Type (Elem : in Asis.Element);
-- Node is a subtype or type, analyse its definition
procedure Analyse_Profile (Node : in Link);
-- Generates an entry_body_formal_part, parameter or parameter
-- and result profile for the body of a program unit
-- represented by Node. Upon exit, sets Change_Line is set True
-- if the following "is" for the body should be generated on a new line
procedure Array_Type_Suffix
(E : in Asis.Element;
Type_Suffix : out Unbounded_String;
Length : out Positive);
function Type_Name (Elem : in Asis.Element) return String;
-- Returns the type name for Elem
procedure Analyse_Node (Node : in Link);
-- Analyse a Node, handles procedure or function only
procedure Analyse_Node_List (List : in Link);
-- Call Analyse_Node for each element in List
function Name_Space (E : in Asis.Element) return String;
-- Returns the name space for element E. Name space is defined as
-- follow: http://soapaws/<unit_name>_pkg/
------------------
-- Analyse_Node --
------------------
procedure Analyse_Node (Node : in Link) is
use Extensions.Flat_Kinds;
Arg_Kind : constant Flat_Element_Kinds
:= Flat_Element_Kind (Node.Spec);
begin
case Arg_Kind is
when A_Function_Declaration
| A_Procedure_Declaration
=>
Analyse_Routine (Node);
when An_Entry_Declaration
| A_Single_Protected_Declaration
| A_Protected_Type_Declaration
| A_Single_Task_Declaration
| A_Task_Type_Declaration
| A_Generic_Package_Declaration
| An_Incomplete_Type_Declaration
| A_Generic_Function_Declaration
| A_Generic_Procedure_Declaration
=>
null;
when A_Package_Declaration =>
Analyse_Package (Node);
when A_Package_Instantiation =>
Analyse_Package_Instantiation (Node);
when A_Subtype_Declaration =>
Analyse_Type (Node.Spec);
when An_Ordinary_Type_Declaration =>
Analyse_Type (Node.Spec);
when others =>
Text_IO.Put_Line
(Text_IO.Standard_Error,
"ada2wsdl: unexpected element in the body structure");
Text_IO.Put
(Text_IO.Standard_Error,
"ada2wsdl: " & Arg_Kind'Img);
raise Fatal_Error;
end case;
if Node.Down /= null then
Analyse_Node_List (Node.Down);
end if;
end Analyse_Node;
-----------------------
-- Analyse_Node_List --
-----------------------
procedure Analyse_Node_List (List : in Link) is
Next_Node : Link;
List_Start : Link := List;
begin
-- Here we have to go to the beginning of the list
while List_Start.Prev /= null loop
List_Start := List_Start.Prev;
end loop;
Next_Node := List_Start;
loop
Analyse_Node (Next_Node);
if Next_Node.Next /= null then
Next_Node := Next_Node.Next;
else
exit;
end if;
end loop;
-- Finalizing the enclosing construct:
Next_Node := Next_Node.Up;
end Analyse_Node_List;
---------------------
-- Analyse_Package --
---------------------
procedure Analyse_Package (Node : in Link) is
begin
if Options.WS_Name = Null_Unbounded_String then
Options.WS_Name
:= To_Unbounded_String
(Strings.Fixed.Translate
(Node.Spec_Name.all,
Strings.Maps.To_Mapping (".", "-")));
end if;
end Analyse_Package;
-----------------------------------
-- Analyse_Package_Instantiation --
-----------------------------------
procedure Analyse_Package_Instantiation (Node : in Link) is
use Extensions.Flat_Kinds;
G_Unit : constant Asis.Expression
:= Declarations.Generic_Unit_Name (Node.Spec);
-- The generic unit name (name after the reserved word is)
G_Name : constant String := Image (Text.Element_Image (G_Unit));
begin
if G_Name = "SOAP.Utils.Safe_Pointers" then
-- This is the safe pointer AWS/SOAP runtime type support
declare
Actual : constant Asis.Association_List
:= Declarations.Generic_Actual_Part (Node.Spec);
begin
if Actual'Length = 2 then
-- There is only two formal parameters, the first one is
-- the type, the second the access type to the first one.
Generator.Register_Safe_Pointer
(Name => Node.Spec_Name.all,
Type_Name => Image (Text.Element_Image (Actual (1))),
Access_Name => Image (Text.Element_Image (Actual (2))));
end if;
end;
end if;
end Analyse_Package_Instantiation;
----------------------
-- Analyse_Profile --
----------------------
procedure Analyse_Profile (Node : in Link) is
use Extensions.Flat_Kinds;
Arg_Kind : constant Flat_Element_Kinds
:= Flat_Element_Kind (Node.Spec);
Parameters : constant Asis.Element_List
:= Declarations.Parameter_Profile (Node.Spec);
begin
if not Elements.Is_Nil (Parameters) then
for I in Parameters'Range loop
declare
Elem : constant Asis.Element
:= Declarations.Declaration_Subtype_Mark (Parameters (I));
Mode : constant Asis.Mode_Kinds
:= Elements.Mode_Kind (Parameters (I));
Names : constant Defining_Name_List
:= Declarations.Names (Parameters (I));
E : Asis.Element := Elem;
begin
-- For each name create a new formal parameter
if not (Mode = An_In_Mode
or else Mode = A_Default_In_Mode)
then
Raise_Spec_Error
(Parameters (I),
Message => "only in mode supported.");
end if;
if Elements.Expression_Kind (E) = A_Selected_Component then
E := Expressions.Selector (E);
end if;
E := Expressions.Corresponding_Name_Declaration (E);
E := Declarations.Type_Declaration_View (E);
for K in Names'Range loop
Generator.New_Formal
(NS => Name_Space (E),
Var_Name => Image (Text.Element_Image (Names (K))),
Var_Type => Type_Name (Elem));
end loop;
end;
end loop;
end if;
if Arg_Kind = A_Function_Declaration
or else Arg_Kind = A_Generic_Function_Declaration
then
declare
Elem : constant Asis.Element
:= Declarations.Result_Profile (Node.Spec);
begin
Generator.Return_Type (Name_Space (Elem), Type_Name (Elem));
end;
end if;
end Analyse_Profile;
---------------------
-- Analyse_Routine --
---------------------
procedure Analyse_Routine (Node : in Link) is
use Extensions.Flat_Kinds;
Arg_Kind : constant Flat_Element_Kinds
:= Flat_Element_Kind (Node.Spec);
begin
begin
if Arg_Kind = A_Function_Declaration then
Generator.Start_Routine (Node.Spec_Name.all, "function ");
else
Generator.Start_Routine (Node.Spec_Name.all, "procedure");
end if;
exception
when E : Spec_Error =>
Raise_Spec_Error (Node.Spec, Exception_Message (E));
end;
Analyse_Profile (Node);
end Analyse_Routine;
------------------
-- Analyse_Type --
------------------
procedure Analyse_Type (Elem : in Asis.Definition) is
use Extensions.Flat_Kinds;
type U_Array_Def is record
Name, NS, Comp_Type : Unbounded_String;
Length : Positive;
end record;
Deferred_U_Arrays : array (1 .. 100) of U_Array_Def;
U_Array_Index : Natural := 0;
procedure Analyse_Field (Component : in Asis.Element);
-- Analyse a field from the record
procedure Analyse_Array_Component (Component : in Asis.Element);
-- Analyse an array component
-----------------------------
-- Analyse_Array_Component --
-----------------------------
procedure Analyse_Array_Component (Component : in Asis.Element) is
E : Asis.Element
:= (Definitions.Subtype_Mark
(Definitions.Component_Subtype_Indication (Component)));
begin
if Elements.Expression_Kind (E) = A_Selected_Component then
E := Expressions.Selector (E);
end if;
E := Declarations.Corresponding_First_Subtype
(Expressions.Corresponding_Name_Declaration (E));
Analyse_Type (E);
end Analyse_Array_Component;
-------------------
-- Analyse_Field --
-------------------
procedure Analyse_Field (Component : in Asis.Element) is
ODV : constant Asis.Element
:= Declarations.Object_Declaration_View (Component);
Elem : constant Asis.Element
:= Definitions.Subtype_Mark
(Definitions.Component_Subtype_Indication (ODV));
Names : constant Defining_Name_List
:= Declarations.Names (Component);
E : Asis.Element := Elem;
CND : Asis.Element;
Type_Name : Unbounded_String;
begin
if Elements.Expression_Kind (E) = A_Selected_Component then
E := Expressions.Selector (E);
end if;
CND := Expressions.Corresponding_Name_Declaration (E);
E := Declarations.Type_Declaration_View (CND);
if Flat_Element_Kind (E) = An_Unconstrained_Array_Definition then
declare
Type_Suffix : Unbounded_String;
begin
U_Array_Index := U_Array_Index + 1;
-- Set array's component type information
E := Definitions.Array_Component_Definition (E);
Deferred_U_Arrays (U_Array_Index).Comp_Type
:= To_Unbounded_String (Image (Text.Element_Image (E)));
Deferred_U_Arrays (U_Array_Index).NS
:= To_Unbounded_String (Name_Space (E));
-- Set array's type name
E := CND;
Deferred_U_Arrays (U_Array_Index).Name
:= To_Unbounded_String
(Image
(Text.Element_Image
(Declarations.Names (CND) (1))));
-- Get array's constraint, an array inside a record must be
-- constrained.
E := Definitions.Subtype_Constraint
(Definitions.Component_Subtype_Indication (ODV));
declare
R : constant Asis.Discrete_Range_List
:= Definitions.Discrete_Ranges (E);
begin
if R'Length /= 1 then
Raise_Spec_Error
(E,
Message => "Arrays with multiple dimensions not "
& "supported.");
end if;
-- Add array's name suffix
Array_Type_Suffix
(R (1), Type_Suffix,
Deferred_U_Arrays (U_Array_Index).Length);
Append (Deferred_U_Arrays (U_Array_Index).Name,
Type_Suffix);
end;
Type_Name := Deferred_U_Arrays (U_Array_Index).Name;
end;
end if;
declare
T : constant Flat_Element_Kinds
:= Flat_Element_Kind
(Declarations.Type_Declaration_View
(Declarations.Corresponding_First_Subtype (CND)));
begin
if Flat_Element_Kind (CND) = A_Subtype_Declaration
and then T /= A_Signed_Integer_Type_Definition
and then T /= A_Floating_Point_Definition
then
-- This is a subtype field
Type_Name := To_Unbounded_String
(Image (Text.Element_Image (ODV)));
end if;
end;
if Type_Name = Null_Unbounded_String then
-- If type name not set, then compute it now
Type_Name := To_Unbounded_String
(Analyse_Structure.Type_Name (Elem));
end if;
for K in Names'Range loop
Generator.New_Component
(NS => Name_Space
(Declarations.Type_Declaration_View (CND)),
Comp_Name => Image (Text.Element_Image (Names (K))),
Comp_Type => To_String (Type_Name));
end loop;
end Analyse_Field;
Name : constant String
:= Image (Text.Element_Image (Declarations.Names (Elem)(1)));
E : Asis.Definition := Declarations.Type_Declaration_View (Elem);
Type_Kind : constant Flat_Element_Kinds := Flat_Element_Kind (E);
begin
case Type_Kind is
-- ???
-- We should check for a subtype here
when A_Record_Type_Definition =>
if not Generator.Type_Exists (Name_Space (E), Name) then
Generator.Start_Record (Name_Space (E), Name);
E := Definitions.Record_Definition (E);
declare
R : constant Asis.Record_Component_List
:= Definitions.Record_Components (E);
begin
for K in R'Range loop
Analyse_Field (R (K));
end loop;
end;
-- Create now all deferred arrays
for K in 1 .. U_Array_Index loop
Generator.Start_Array
(To_String (Deferred_U_Arrays (K).NS),
To_String (Deferred_U_Arrays (K).Name),
To_String (Deferred_U_Arrays (K).Comp_Type),
Deferred_U_Arrays (K).Length);
end loop;
end if;
when A_Constrained_Array_Definition =>
declare
S : constant Asis.Definition_List
:= Definitions.Discrete_Subtype_Definitions (E);
Array_Len : Natural;
Type_Suffix : Unbounded_String;
C : Asis.Element;
begin
if S'Length /= 1 then
Raise_Spec_Error
(E,
Message => "Arrays with multiple dimensions not "
& "supported.");
end if;
if Flat_Element_Kind (S (1))
= A_Discrete_Simple_Expression_Range_As_Subtype_Definition
then
-- This is the constraint (a .. b)
C := S (1);
else
-- This is a subtype definition as constraint
-- (Positive range a .. b)
C := Definitions.Subtype_Constraint (S (1));
end if;
Array_Type_Suffix (C, Type_Suffix, Array_Len);
E := Definitions.Array_Component_Definition (E);
if not Generator.Type_Exists (Name_Space (E), Name) then
Generator.Start_Array
(Name_Space (E), Name,
Image (Text.Element_Image (E)),
Array_Len);
Analyse_Array_Component (E);
end if;
end;
when An_Unconstrained_Array_Definition =>
E := Definitions.Array_Component_Definition (E);
if not Generator.Type_Exists (Name_Space (E), Name) then
Generator.Start_Array
(Name_Space (E), Name,
Image (Text.Element_Image (E)));
Analyse_Array_Component (E);
end if;
when A_Derived_Type_Definition =>
declare
TDV : constant Asis.Element
:= Declarations.Type_Declaration_View
(Definitions.Corresponding_Root_Type (E));
PST : Asis.Element;
C : Asis.Constraint;
Comp : Asis.Element;
begin
if Flat_Element_Kind (TDV)
= An_Unconstrained_Array_Definition
then
-- This is derived type from an array, we have to create
-- a new array definition if this derived type as a set
-- of constraint.
PST := Definitions.Parent_Subtype_Indication (E);
C := Definitions.Subtype_Constraint (PST);
Comp := Definitions.Array_Component_Definition (TDV);
if Flat_Element_Kind (C) = An_Index_Constraint then
-- This derived type has constraints
declare
R : constant Asis.Discrete_Range_List
:= Definitions.Discrete_Ranges (C);
Type_Suffix : Unbounded_String;
Array_Len : Natural;
begin
if R'Length /= 1 then
Raise_Spec_Error
(C,
Message => "Arrays with multiple dimensions"
& " not supported.");
end if;
Array_Type_Suffix (R (1), Type_Suffix, Array_Len);
if not Generator.Type_Exists
(Name_Space (Comp), Name)
then
Generator.Start_Array
(Name_Space (Comp), Name,
Image (Text.Element_Image (Comp)),
Array_Len);
Analyse_Array_Component (Comp);
end if;
return;
end;
end if;
end if;
end;
E := Definitions.Subtype_Mark
(Definitions.Parent_Subtype_Indication (E));
if not Generator.Type_Exists (Name_Space (E), Name) then
Generator.Register_Derived
(Name_Space (E), Name, Type_Name (E));
end if;
when A_Subtype_Indication =>
declare
CFS : constant Asis.Declaration
:= Declarations.Corresponding_First_Subtype (Elem);
TDV : constant Asis.Definition
:= Declarations.Type_Declaration_View (CFS);
C : Asis.Constraint;
Comp : Asis.Element;
begin
if Flat_Element_Kind (TDV)
= An_Unconstrained_Array_Definition
then
-- This is a subtype of an unconstraint array, create
-- the corresponding array definition.
C := Definitions.Subtype_Constraint (E);
Comp := Definitions.Array_Component_Definition (TDV);
declare
R : constant Asis.Discrete_Range_List
:= Definitions.Discrete_Ranges (C);
Type_Suffix : Unbounded_String;
Array_Len : Natural;
begin
if R'Length /= 1 then
Raise_Spec_Error
(C,
Message => "Arrays with multiple dimensions"
& " not supported.");
end if;
Array_Type_Suffix (R (1), Type_Suffix, Array_Len);
if not Generator.Type_Exists
(Name_Space (Comp), Name)
then
Generator.Start_Array
(Name_Space (Comp), Name,
Image (Text.Element_Image (Comp)),
Array_Len);
Analyse_Array_Component (Comp);
end if;
end;
end if;
end;
when An_Enumeration_Type_Definition =>
if not Options.Enum_To_String then
if not Generator.Type_Exists (Name_Space (E), Name) then
Generator.Start_Enumeration (Name_Space (E), Name);
declare
D : constant Asis.Declaration_List
:= Definitions.Enumeration_Literal_Declarations (E);
begin
for K in D'Range loop
Generator.New_Literal
(Image
(Text.Element_Image
(Declarations.Names (D (K)) (1))));
end loop;
end;
end if;
end if;
when others =>
-- A type definition not handled by this version
null;
end case;
end Analyse_Type;
-----------------------
-- Array_Type_Suffix --
-----------------------
procedure Array_Type_Suffix
(E : in Asis.Element;
Type_Suffix : out Unbounded_String;
Length : out Positive)
is
use Extensions.Flat_Kinds;
Low : constant Asis.Expression := Definitions.Lower_Bound (E);
Up : constant Asis.Expression := Definitions.Upper_Bound (E);
begin
declare
Low_Str : constant String := Image (Text.Element_Image (Low));
Up_Str : constant String := Image (Text.Element_Image (Up));
begin
Length := Integer'Value (Up_Str) - Integer'Value (Low_Str) + 1;
Type_Suffix := To_Unbounded_String ("_" & Low_Str & "_" & Up_Str);
exception
when others =>
Raise_Spec_Error
(E,
Message => "Only arrays with one numeric index supported.");
end;
end Array_Type_Suffix;
----------------
-- Name_Space --
----------------
function Name_Space (E : in Asis.Element) return String is
NS : String
:= Image (Compilation_Units.Unit_Full_Name
(Elements.Enclosing_Compilation_Unit (E)));
begin
Strings.Fixed.Translate (NS, Strings.Maps.To_Mapping (".", "/"));
return SOAP.Name_Space.Value (SOAP.Name_Space.AWS) & NS & "_pkg/";
end Name_Space;
---------------
-- Type_Name --
---------------
function Type_Name (Elem : in Asis.Element) return String is
use Extensions.Flat_Kinds;
procedure Check_Float (E : in Asis.Element);
-- Issue a warning if E has not the right digits
-----------------
-- Check_Float --
-----------------
procedure Check_Float (E : in Asis.Element) is
D : constant Asis.Expression := Definitions.Digits_Expression (E);
begin
if Positive'Wide_Value (Expressions.Value_Image (D)) <= 6 then
Text_IO.Put_Line
(Text_IO.Standard_Error,
Location (Elem)
& ": use Long_Float instead of Float for SOAP/WSDL"
& " items.");
end if;
end Check_Float;
E : Asis.Element := Elem;
CFS : Asis.Declaration;
CND : Asis.Declaration;
begin
if Elements.Expression_Kind (E) = A_Selected_Component then
E := Expressions.Selector (E);
end if;
CND := Expressions.Corresponding_Name_Declaration (E);
CFS := Declarations.Corresponding_First_Subtype (CND);
-- Get type view
E := Declarations.Type_Declaration_View (CFS);
case Flat_Element_Kind (E) is
when A_Record_Type_Definition =>
-- This is a record, checks if the record definition has
-- been parsed.
return Register_Deferred (CFS);
when An_Enumeration_Type_Definition =>
-- Enumerations are mapped to Ada strings except for the
-- special type Character
if Characters.Handling.To_Lower
(Image (Text.Element_Image (Elem))) = "character"
then
return "character";
elsif Characters.Handling.To_Lower
(Image (Text.Element_Image (Elem))) = "boolean"
then
return "boolean";
else
if Options.Enum_To_String then
return "string";
else
return Register_Deferred (CFS);
end if;
end if;
when A_Floating_Point_Definition =>
Check_Float (E);
if Flat_Element_Kind (CND) = A_Subtype_Declaration then
-- ??? What about a subtype of Long_Long_Float
return "float";
else
return Image (Text.Element_Image (Elem));
end if;
when A_Signed_Integer_Type_Definition
| A_Modular_Type_Definition
=>
if Flat_Element_Kind (CND) = A_Subtype_Declaration then
-- ??? What about a subtype of Long_Long_Integer
return "integer";
else
return Image (Text.Element_Image (Elem));
end if;
when A_Derived_Type_Definition =>
-- This is a derived type definition, analyse the name after
-- the "is new".
-- Record the type to generate the corresponding schema.
return Register_Deferred (CFS);
when A_Constrained_Array_Definition
| An_Unconstrained_Array_Definition
=>
-- If this array definition is the standard Ada String,
-- returns it, no need to analyse this further.
declare
T_Name : constant String
:= Characters.Handling.To_Lower
(Image (Text.Element_Image (Elem)));
begin
-- Check for specific array name like String and Base64
if T_Name = "string" then
return "string";
elsif T_Name = "soap_base64"
or else T_Name = "utils.soap_base64"
or else T_Name = "soap.utils.soap_base64"
then
-- This is the SOAP Base64 runtime type support
return "SOAP_Base64";
else
return Register_Deferred (CFS);
end if;
end;
when others =>
E := Declarations.Names (CFS) (1);
declare
E_Str : constant String := Image (Text.Element_Image (E));
begin
-- ??? There is probably a better way to achieve this
if E_Str = "" then
return Image (Text.Element_Image (Elem));
else
return E_Str;
end if;
end;
end case;
end Type_Name;
begin
Analyse_Node (Body_Structure'Access);
-- Analyse deferred types
for K in 1 .. Index loop
Analyse_Type (Deferred_Types (K));
end loop;
end Analyse_Structure;
--------------
-- Clean_Up --
--------------
procedure Clean_Up is
begin
-- Deleting the tree file itself
Text_IO.Open (Tree_File, Text_IO.In_File, Tree_Name.all);
Text_IO.Delete (Tree_File);
-- Deleting the ALI file which was created along with the tree file
-- We use the modified Tree_Name for this, because we do not need
-- Tree_Name any more
Tree_Name (Tree_Name'Last - 2 .. Tree_Name'Last) := "ali";
Text_IO.Open (Tree_File, Text_IO.In_File, Tree_Name.all);
Text_IO.Delete (Tree_File);
exception
when others =>
null;
end Clean_Up;
-------------------------
-- Create_Element_Node --
-------------------------
procedure Create_Element_Node
(Element : in Asis.Element;
Control : in out Traverse_Control;
State : in out Body_State)
is
use Extensions.Flat_Kinds;
Arg_Kind : constant Flat_Element_Kinds := Flat_Element_Kind (Element);
Current_Node : Link;
procedure Insert_In_List
(State : in out Body_State;
El : in Asis.Element;
New_Node : out Link);
-- Inserts an argument Element in the current list, keeping the
-- alphabetic ordering. Creates a new sublist if needed.
-- New_Node returns the reference to the newly inserted node
--------------------
-- Insert_In_List --
--------------------
procedure Insert_In_List
(State : in out Body_State;
El : in Asis.Element;
New_Node : out Link) is
begin
New_Node := new Element_Node;
New_Node.Spec := El;
New_Node.Spec_Name := new String'(Name (El));
if State.New_List_Needed then
-- Here we have to set up a new sub-list:
State.Current_List := New_Node;
New_Node.Up := State.Last_Top;
State.Last_Top.Down := New_Node;
State.New_List_Needed := False;
New_Node.Last := New_Node;
-- We've just created a new list. It contains a single element
-- which is its last Element, so we are setting the link to the
-- last element to the Prev field of the list head element
else
-- Here we have to insert New_Node in an existing list,
-- keeping the alphabetical order of program unit names
New_Node.Up := State.Current_List.Up;
if Arg_Kind = An_Incomplete_Type_Declaration then
-- No need for alphabetical ordering, inserting in the
-- very beginning:
New_Node.Last := State.Current_List.Last;
-- New_Node will be the head element of the list, so we have
-- to copy into this new head element the reference to the
-- last element of the list.
New_Node.Next := State.Current_List;
State.Current_List.Prev := New_Node;
State.Current_List := New_Node;
else
New_Node.Prev := State.Current_List.Last;
State.Current_List.Last.Next := New_Node;
State.Current_List.Last := New_Node;
end if;
end if;
end Insert_In_List;
-- Start of the processing of Create_Element_Node
begin
if State.Argument_Spec then
Body_Structure.Spec := Element;
State.Argument_Spec := False;
Body_Structure.Spec_Name := new String'(Name (Element));
Current_Node := Body_Structure'Access;
elsif Arg_Kind = A_Defining_Identifier then
-- Skipping a defining name of a spec which may contain local
-- specs requiring bodies
null;
elsif Arg_Kind = A_Protected_Definition then
-- We just have to go one level down to process protected items
null;
elsif not (Arg_Kind = A_Procedure_Declaration
or else Arg_Kind = A_Function_Declaration
or else Arg_Kind = A_Subtype_Declaration
or else Arg_Kind = An_Ordinary_Type_Declaration
or else Arg_Kind = A_Package_Declaration)
then
-- Do nothing if this is not a procedure or function
null;
else
Insert_In_List (State, Element, Current_Node);
end if;
if Arg_Kind = A_Package_Declaration
or else Arg_Kind = A_Generic_Package_Declaration
or else Arg_Kind = A_Single_Protected_Declaration
or else Arg_Kind = A_Protected_Type_Declaration
then
-- Here we may have specs requiring bodies inside a construct
State.New_List_Needed := True;
State.Last_Top := Current_Node;
elsif Arg_Kind = A_Protected_Definition then
-- We have to skip this syntax level
null;
elsif Arg_Kind = A_Package_Instantiation then
-- We want to keep track of all package instantiations to analyse
-- those that are used to create a safe pointer for array in
-- records.
Insert_In_List (State, Element, Current_Node);
else
-- No need to go deeper
Control := Abandon_Children;
end if;
end Create_Element_Node;
-----------------
-- Create_Tree --
-----------------
procedure Create_Tree is
File_Name : String_Access;
Success : Boolean := False;
function Get_Tree_Name return String;
-- Returns the name of the tree file
----------
-- Free --
----------
procedure Free is new Ada.Unchecked_Deallocation (String, String_Access);
-------------------
-- Get_Tree_Name --
-------------------
function Get_Tree_Name return String is
F_Name : constant String := To_String (Options.File_Name);
Dot_Index : Natural;
Slash_Index : Natural;
First, Last : Natural;
begin
Slash_Index := Strings.Fixed.Index (F_Name, "/", Strings.Backward);
Dot_Index := Strings.Fixed.Index (F_Name, ".", Strings.Backward);
First := Natural'Max (F_Name'First, Slash_Index + 1);
if Dot_Index = 0 then
Last := F_Name'Last;
else
Last := Dot_Index - 1;
end if;
return F_Name (First .. Last) & ".adt";
end Get_Tree_Name;
begin
File_Name := new String'(To_String (Options.File_Name));
Compile
(File_Name, Arg_List (Arg_List'First .. Arg_Index), Success,
GCC => GNATMAKE,
Use_GNATMAKE => True);
Tree_Name := new String'(Get_Tree_Name);
if not Success then
Text_IO.Put_Line
(Text_IO.Standard_Error,
"ada2wsdl: cannot create the tree file for " & File_Name.all);
raise Parameter_Error;
end if;
Free (File_Name);
end Create_Tree;
------------------------
-- Emergency_Clean_Up --
------------------------
procedure Emergency_Clean_Up is
begin
if Ada_Environments.Is_Open (My_Context) then
Ada_Environments.Close (My_Context);
end if;
Ada_Environments.Dissociate (My_Context);
Implementation.Finalize;
if Text_IO.Is_Open (Spec_File) then
-- No need to keep a broken body in case of an emergency clean up
Text_IO.Close (Spec_File);
end if;
end Emergency_Clean_Up;
-----------
-- Go_Up --
-----------
procedure Go_Up
(Element : in Asis.Element;
Control : in out Traverse_Control;
State : in out Body_State)
is
pragma Unreferenced (Control);
use Extensions.Flat_Kinds;
Arg_Kind : constant Flat_Element_Kinds := Flat_Element_Kind (Element);
begin
if not (Arg_Kind = A_Package_Declaration
or else Arg_Kind = A_Generic_Package_Declaration
or else Arg_Kind = A_Single_Protected_Declaration
or else Arg_Kind = A_Protected_Type_Declaration)
then
return;
end if;
if State.New_List_Needed then
-- No local body is needed for a given construct
State.New_List_Needed := False;
else
-- We have to reset the current list:
if State.Current_List /= null then
State.Current_List := State.Current_List.Up;
while State.Current_List.Prev /= null loop
State.Current_List := State.Current_List.Prev;
end loop;
end if;
end if;
end Go_Up;
-----------
-- Image --
-----------
function Image (Str : in Wide_String) return String is
begin
return Strings.Fixed.Trim
(Characters.Handling.To_String (Str), Strings.Both);
end Image;
----------------
-- Initialize --
----------------
procedure Initialize is
begin
Create_Tree;
Options.Initialized := True;
exception
when others =>
Options.Initialized := False;
raise;
end Initialize;
----------
-- Name --
----------
function Name (Elem : in Asis.Element) return String is
Def_Name : constant Asis.Element := Declarations.Names (Elem) (1);
begin
return Characters.Handling.To_String
(Declarations.Defining_Name_Image (Def_Name));
end Name;
-----------------------
-- Register_Deferred --
-----------------------
function Register_Deferred (E : in Asis.Declaration) return String is
Name : constant String
:= Image (Text.Element_Image (Declarations.Names (E) (1)));
begin
Index := Index + 1;
Deferred_Types (Index) := E;
return Name;
end Register_Deferred;
-----------
-- Start --
-----------
procedure Start is
use Text_IO;
CU : Asis.Compilation_Unit;
My_Control : Traverse_Control := Continue;
My_State : Body_State;
begin
Asis.Implementation.Initialize;
Ada_Environments.Associate
(My_Context,
"My_Context",
"-C1 " & Characters.Handling.To_Wide_String (Tree_Name.all));
Ada_Environments.Open (My_Context);
CU := Extensions.Main_Unit_In_Current_Tree (My_Context);
if Compilation_Units.Is_Nil (CU) then
Put_Line
(Standard_Error,
"Nothing to be done for " & To_String (Options.File_Name));
return;
else
-- And here we have to do the job
Create_Structure
(Element => Elements.Unit_Declaration (CU),
Control => My_Control,
State => My_State);
if not Options.Quiet then
New_Line;
end if;
Analyse_Structure;
if not Options.Quiet then
New_Line;
Put_Line
("WSDL document " & To_String (Options.WSDL_File_Name)
& " is created for " & To_String (Options.File_Name) & '.');
end if;
end if;
Ada_Environments.Close (My_Context);
Ada_Environments.Dissociate (My_Context);
Implementation.Finalize;
exception
when Ex : Asis.Exceptions.ASIS_Inappropriate_Context
| Asis.Exceptions.ASIS_Inappropriate_Container
| Asis.Exceptions.ASIS_Inappropriate_Compilation_Unit
| Asis.Exceptions.ASIS_Inappropriate_Element
| Asis.Exceptions.ASIS_Inappropriate_Line
| Asis.Exceptions.ASIS_Inappropriate_Line_Number
| Asis.Exceptions.ASIS_Failed
=>
New_Line (Standard_Error);
Put_Line (Standard_Error, "Unexpected bug in Ada2WSDL v" & Version);
Put (Standard_Error, Exception_Name (Ex));
Put_Line (Standard_Error, " raised");
Put
(Standard_Error, "ada2wsdl: ASIS Diagnosis is "
& Characters.Handling.To_String
(Asis.Implementation.Diagnosis));
New_Line (Standard_Error);
Put (Standard_Error, "ada2wsdl: Status Value is ");
Put_Line (Standard_Error, Asis.Errors.Error_Kinds'Image
(Asis.Implementation.Status));
Emergency_Clean_Up;
raise Fatal_Error;
when others =>
Emergency_Clean_Up;
raise;
end Start;
end Ada2WSDL.Parser;
|