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
|
------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2001-2006 --
-- AdaCore --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- This package contains all SOAP types supported by this implementation.
-- Here are some notes about adding support for a new SOAP type (not a
-- container) and the corresponding WSDL support:
--
-- 1. Add new type derived from scalar in this package. Implements all
-- inherited routines (Image, XML_Image and XML_Type). Implements also
-- a constructor for this new type and a routine named V to get the
-- value as an Ada type.
--
-- 2. In SOAP.Parameters add corresponding Get routine.
--
-- 3. In SOAP.WSDL, add the new type name in Parameter_Type.
--
-- 4. Add support for this new type in all SOAP.WSDL routines. All routines
-- are using a case statement to be sure that it won't compile without
-- fixing it first. For obvious reasons, only SOAP.WSDL.To_Type and
-- SOAP.WSDL.From_Ada are not using a case statement, be sure to do the
-- right Change There.
--
-- 5. Finaly add support for this type in SOAP.Message.XML. Add this type
-- into Type_State, write the corresponding parse procedure and fill entry
-- into Handlers. Again after adding the proper type into Type_State the
-- compiler will issue errors where changes are needed.
with Ada.Calendar;
with Ada.Finalization;
with Ada.Strings.Unbounded;
with SOAP.Name_Space;
package SOAP.Types is
use Ada.Strings.Unbounded;
Data_Error : exception;
-- Raised when a variable has not the expected type
type Object is abstract tagged private;
-- Root type for all SOAP types defined in this package
type Object_Access is access all Object'Class;
type Object_Safe_Pointer is tagged private;
-- A safe pointer to a SOAP object, such objects are controlled so the
-- memory is freed automatically.
type Object_Set is array (Positive range <>) of Object_Safe_Pointer;
-- A set of SOAP types. This is used to build arrays or records. We use
-- Positive for the index to have the item index map the SOAP array
-- element order.
function Image (O : in Object) return String;
-- Returns O value image.
function XML_Image (O : in Object) return String;
-- Returns O value encoded for use by the Payload object or Response
-- object.
function XML_Type (O : in Object) return String;
-- Returns the XML type for the object.
function Name (O : in Object'Class) return String;
-- Returns name for object O.
function "+" (O : in Object'Class) return Object_Safe_Pointer;
-- Allocate an object into the heap and return a safe pointer to it.
function "-" (O : in Object_Safe_Pointer) return Object'Class;
-- Returns the object associated with the safe pointer.
type Scalar is abstract new Object with private;
-- Scalar types are using a by-copy semantic.
type Composite is abstract new Object with private;
-- Composite types are using a by-reference semantic for efficiency
-- reason. Not that these types are not thread safe.
function V (C : in Composite) return Object_Set is abstract;
--------------
-- Any Type --
--------------
XML_Any_Type : aliased constant String := "xsd:anyType";
type XSD_Any_Type is new Object with private;
function Image (O : in XSD_Any_Type) return String;
function XML_Image (O : in XSD_Any_Type) return String;
function XML_Type (O : in XSD_Any_Type) return String;
function Any
(V : in Object'Class;
Name : in String := "item") return XSD_Any_Type;
function V (O : in XSD_Any_Type) return Object_Access;
-----------
-- Array --
-----------
XML_Array : constant String := "soapenc:Array";
XML_Undefined : aliased constant String := "xsd:ur-type";
type SOAP_Array is new Composite with private;
function Image (O : in SOAP_Array) return String;
function XML_Image (O : in SOAP_Array) return String;
function XML_Type (O : in SOAP_Array) return String;
function A
(V : in Object_Set;
Name : in String;
Type_Name : in String := "")
return SOAP_Array;
-- Type_Name of the array's elements, if not specified it will be computed
-- based on element's name.
function Size (O : in SOAP_Array) return Natural;
-- Returns the number of item into the array
function V (O : in SOAP_Array; N : in Positive) return Object'Class;
-- Returns SOAP_Array item at position N
function V (O : in SOAP_Array) return Object_Set;
------------
-- Base64 --
------------
XML_Base64 : aliased constant String := "soapenc:base64";
XML_Base64_Binary : constant String := "xsd:base64Binary";
type SOAP_Base64 is new Scalar with private;
function Image (O : in SOAP_Base64) return String;
function XML_Image (O : in SOAP_Base64) return String;
function XML_Type (O : in SOAP_Base64) return String;
function B64
(V : in String;
Name : in String := "item")
return SOAP_Base64;
function V (O : in SOAP_Base64) return String;
-------------
-- Boolean --
-------------
XML_Boolean : aliased constant String := "xsd:boolean";
type XSD_Boolean is new Scalar with private;
function Image (O : in XSD_Boolean) return String;
function XML_Image (O : in XSD_Boolean) return String;
function XML_Type (O : in XSD_Boolean) return String;
function B (V : in Boolean; Name : in String := "item") return XSD_Boolean;
function V (O : in XSD_Boolean) return Boolean;
----------
-- Byte --
----------
type Byte is range -2**7 .. 2**7 - 1;
XML_Byte : aliased constant String := "xsd:byte";
type XSD_Byte is new Scalar with private;
function Image (O : in XSD_Byte) return String;
function XML_Image (O : in XSD_Byte) return String;
function XML_Type (O : in XSD_Byte) return String;
function B (V : in Byte; Name : in String := "item") return XSD_Byte;
function V (O : in XSD_Byte) return Byte;
------------
-- Double --
------------
XML_Double : aliased constant String := "xsd:double";
type XSD_Double is new Scalar with private;
function Image (O : in XSD_Double) return String;
function XML_Image (O : in XSD_Double) return String;
function XML_Type (O : in XSD_Double) return String;
function D
(V : in Long_Long_Float;
Name : in String := "item")
return XSD_Double;
function V (O : in XSD_Double) return Long_Long_Float;
-----------
-- Float --
-----------
XML_Float : aliased constant String := "xsd:float";
type XSD_Float is new Scalar with private;
function Image (O : in XSD_Float) return String;
function XML_Image (O : in XSD_Float) return String;
function XML_Type (O : in XSD_Float) return String;
function F (V : in Long_Float; Name : in String := "item") return XSD_Float;
function V (O : in XSD_Float) return Long_Float;
-------------
-- Integer --
-------------
XML_Int : aliased constant String := "xsd:int";
type XSD_Integer is new Scalar with private;
function Image (O : in XSD_Integer) return String;
function XML_Image (O : in XSD_Integer) return String;
function XML_Type (O : in XSD_Integer) return String;
function I (V : in Integer; Name : in String := "item") return XSD_Integer;
function V (O : in XSD_Integer) return Integer;
----------
-- Long --
----------
type Long is range -2**63 .. 2**63 - 1;
XML_Long : aliased constant String := "xsd:long";
type XSD_Long is new Scalar with private;
function Image (O : in XSD_Long) return String;
function XML_Image (O : in XSD_Long) return String;
function XML_Type (O : in XSD_Long) return String;
function L (V : in Long; Name : in String := "item") return XSD_Long;
function V (O : in XSD_Long) return Long;
----------
-- Null --
----------
XML_Null : constant String := "1";
type XSD_Null is new Scalar with private;
function XML_Image (O : in XSD_Null) return String;
function XML_Type (O : in XSD_Null) return String;
function N (Name : in String := "item") return XSD_Null;
------------
-- Record --
------------
type SOAP_Record is new Composite with private;
function Image (O : in SOAP_Record) return String;
function XML_Image (O : in SOAP_Record) return String;
function XML_Type (O : in SOAP_Record) return String;
function R
(V : in Object_Set;
Name : in String;
Type_Name : in String := "")
return SOAP_Record;
-- If Type_Name is omitted then the type name is the name of the record.
-- Type_Name must be specified for item into an array for example.
function V (O : in SOAP_Record; Name : in String) return Object'Class;
-- Returns SOAP_Record field named Name
function V (O : in SOAP_Record) return Object_Set;
-----------
-- Short --
-----------
type Short is range -2**15 .. 2**15 - 1;
XML_Short : aliased constant String := "xsd:short";
type XSD_Short is new Scalar with private;
function Image (O : in XSD_Short) return String;
function XML_Image (O : in XSD_Short) return String;
function XML_Type (O : in XSD_Short) return String;
function S (V : in Short; Name : in String := "item") return XSD_Short;
function V (O : in XSD_Short) return Short;
------------
-- String --
------------
XML_String : aliased constant String := "xsd:string";
type XSD_String is new Scalar with private;
function Image (O : in XSD_String) return String;
function XML_Image (O : in XSD_String) return String;
function XML_Type (O : in XSD_String) return String;
function S
(V : in String;
Name : in String := "item")
return XSD_String;
function S
(V : in Unbounded_String;
Name : in String := "item")
return XSD_String;
function V (O : in XSD_String) return String;
function V (O : in XSD_String) return Unbounded_String;
-----------------
-- TimeInstant --
-----------------
XML_Time_Instant : aliased constant String := "xsd:timeInstant";
XML_Date_Time : constant String := "xsd:dateTime";
type XSD_Time_Instant is new Scalar with private;
function Image (O : in XSD_Time_Instant) return String;
function XML_Image (O : in XSD_Time_Instant) return String;
function XML_Type (O : in XSD_Time_Instant) return String;
subtype TZ is Integer range -11 .. +11;
GMT : constant TZ := 0;
function T
(V : in Ada.Calendar.Time;
Name : in String := "item";
Timezone : in TZ := GMT)
return XSD_Time_Instant;
function V (O : in XSD_Time_Instant) return Ada.Calendar.Time;
-- Returns a GMT date and time
-------------------
-- Unsigned_Long --
-------------------
type Unsigned_Long is mod 2**64;
XML_Unsigned_Long : aliased constant String := "xsd:unsignedLong";
type XSD_Unsigned_Long is new Scalar with private;
function Image (O : in XSD_Unsigned_Long) return String;
function XML_Image (O : in XSD_Unsigned_Long) return String;
function XML_Type (O : in XSD_Unsigned_Long) return String;
function UL
(V : in Unsigned_Long;
Name : in String := "item") return XSD_Unsigned_Long;
function V (O : in XSD_Unsigned_Long) return Unsigned_Long;
------------------
-- Unsigned_Int --
------------------
type Unsigned_Int is mod 2**32;
XML_Unsigned_Int : aliased constant String := "xsd:unsignedInt";
type XSD_Unsigned_Int is new Scalar with private;
function Image (O : in XSD_Unsigned_Int) return String;
function XML_Image (O : in XSD_Unsigned_Int) return String;
function XML_Type (O : in XSD_Unsigned_Int) return String;
function UI
(V : in Unsigned_Int;
Name : in String := "item") return XSD_Unsigned_Int;
function V (O : in XSD_Unsigned_Int) return Unsigned_Int;
--------------------
-- Unsigned_Short --
--------------------
type Unsigned_Short is mod 2**16;
XML_Unsigned_Short : aliased constant String := "xsd:unsignedShort";
type XSD_Unsigned_Short is new Scalar with private;
function Image (O : in XSD_Unsigned_Short) return String;
function XML_Image (O : in XSD_Unsigned_Short) return String;
function XML_Type (O : in XSD_Unsigned_Short) return String;
function US
(V : in Unsigned_Short;
Name : in String := "item") return XSD_Unsigned_Short;
function V (O : in XSD_Unsigned_Short) return Unsigned_Short;
-------------------
-- Unsigned_Byte --
-------------------
type Unsigned_Byte is mod 2**8;
XML_Unsigned_Byte : aliased constant String := "xsd:unsignedByte";
type XSD_Unsigned_Byte is new Scalar with private;
function Image (O : in XSD_Unsigned_Byte) return String;
function XML_Image (O : in XSD_Unsigned_Byte) return String;
function XML_Type (O : in XSD_Unsigned_Byte) return String;
function UB
(V : in Unsigned_Byte;
Name : in String := "item") return XSD_Unsigned_Byte;
function V (O : in XSD_Unsigned_Byte) return Unsigned_Byte;
-----------------
-- Enumeration --
-----------------
type SOAP_Enumeration is new Scalar with private;
function Image (O : in SOAP_Enumeration) return String;
function XML_Image (O : in SOAP_Enumeration) return String;
function XML_Type (O : in SOAP_Enumeration) return String;
function E
(V : in String;
Type_Name : in String;
Name : in String := "item")
return SOAP_Enumeration;
function V (O : in SOAP_Enumeration) return String;
---------
-- Get --
---------
-- It is possible to pass an XSD_Any_Type to all get routines below. The
-- proper value will be returned if the XSD_Any_Type is actually of this
-- type.
function Get (O : in Object'Class) return XSD_Any_Type;
-- Returns O value as an XSD_Any_Type. Raises Data_Error if O is not a
-- SOAP anyType.
function Get (O : in Object'Class) return Long;
-- Returns O value as a Long. Raises Data_Error if O is not a SOAP
-- Long.
function Get (O : in Object'Class) return Integer;
-- Returns O value as an Integer. Raises Data_Error if O is not a SOAP
-- Integer.
function Get (O : in Object'Class) return Short;
-- Returns O value as a Short. Raises Data_Error if O is not a SOAP
-- Short.
function Get (O : in Object'Class) return Byte;
-- Returns O value as a Byte. Raises Data_Error if O is not a SOAP
-- Byte.
function Get (O : in Object'Class) return Long_Float;
-- Returns O value as a Long_Float. Raises Data_Error if O is not a SOAP
-- Float.
function Get (O : in Object'Class) return Long_Long_Float;
-- Returns O value as a Long_Long_Float. Raises Data_Error if O is not a
-- SOAP Double.
function Get (O : in Object'Class) return String;
-- Returns O value as a String. Raises Data_Error if O is not a SOAP
-- String.
function Get (O : in Object'Class) return Unbounded_String;
-- As above but returns an Unbounded_String
function Get (O : in Object'Class) return Boolean;
-- Returns O value as a Boolean. Raises Data_Error if O is not a SOAP
-- Boolean.
function Get (O : in Object'Class) return Ada.Calendar.Time;
-- Returns O value as a Time. Raises Data_Error if O is not a SOAP
-- Time.
function Get (O : in Object'Class) return Unsigned_Long;
-- Returns O value as a Unsigned_Long. Raises Data_Error if O is not a SOAP
-- Unsigned_Long.
function Get (O : in Object'Class) return Unsigned_Int;
-- Returns O value as a Unsigned_Byte. Raises Data_Error if O is not a SOAP
-- Unsigned_Int.
function Get (O : in Object'Class) return Unsigned_Short;
-- Returns O value as a Unsigned_Short. Raises Data_Error if O is not a
-- SOAP Unsigned_Short.
function Get (O : in Object'Class) return Unsigned_Byte;
-- Returns O value as a Unsigned_Byte. Raises Data_Error if O is not a SOAP
-- Unsigned_Byte.
function Get (O : in Object'Class) return SOAP_Base64;
-- Returns O value as a SOAP Base64. Raises Data_Error if O is not a SOAP
-- Base64 object.
function Get (O : in Object'Class) return SOAP_Record;
-- Returns O value as a SOAP Struct. Raises Data_Error if O is not a SOAP
-- Struct.
function Get (O : in Object'Class) return SOAP_Array;
-- Returns O value as a SOAP Array. Raises Data_Error if O is not a SOAP
-- Array.
----------------
-- Name space --
----------------
procedure Set_Name_Space
(O : in out Object'Class;
NS : in Name_Space.Object);
-- Set the name space for object O
function Name_Space (O : in Object'Class) return Name_Space.Object;
-- Returns name space associated with object O
private
-- Object
type Object is abstract new Ada.Finalization.Controlled with record
Name : Unbounded_String;
NS : SOAP.Name_Space.Object;
end record;
-- Object_Safe_Pointer
type Object_Safe_Pointer is new Ada.Finalization.Controlled with record
O : Object_Access;
end record;
procedure Adjust (O : in out Object_Safe_Pointer);
pragma Inline (Adjust);
procedure Finalize (O : in out Object_Safe_Pointer);
pragma Inline (Finalize);
-- Scalar
type Scalar is abstract new Object with null record;
type Counter_Access is access Natural;
-- Composite
type Object_Set_Access is access Object_Set;
type Composite is abstract new Object with record
Ref_Counter : Counter_Access;
O : Object_Set_Access;
end record;
procedure Initialize (O : in out Composite);
pragma Inline (Initialize);
procedure Adjust (O : in out Composite);
pragma Inline (Adjust);
procedure Finalize (O : in out Composite);
pragma Inline (Finalize);
-- AnyType
type XSD_Any_Type is new Object with record
O : Object_Safe_Pointer;
end record;
-- Simple SOAP types
type XSD_Long is new Scalar with record
V : Long;
end record;
type XSD_Integer is new Scalar with record
V : Integer;
end record;
type XSD_Short is new Scalar with record
V : Short;
end record;
type XSD_Byte is new Scalar with record
V : Byte;
end record;
type XSD_Float is new Scalar with record
V : Long_Float;
end record;
type XSD_Double is new Scalar with record
V : Long_Long_Float;
end record;
type XSD_String is new Scalar with record
V : Unbounded_String;
end record;
type XSD_Boolean is new Scalar with record
V : Boolean;
end record;
type XSD_Time_Instant is new Scalar with record
T : Ada.Calendar.Time;
Timezone : TZ;
end record;
type XSD_Unsigned_Long is new Scalar with record
V : Unsigned_Long;
end record;
type XSD_Unsigned_Int is new Scalar with record
V : Unsigned_Int;
end record;
type XSD_Unsigned_Short is new Scalar with record
V : Unsigned_Short;
end record;
type XSD_Unsigned_Byte is new Scalar with record
V : Unsigned_Byte;
end record;
type XSD_Null is new Scalar with null record;
type SOAP_Base64 is new Scalar with record
V : Unbounded_String;
end record;
type SOAP_Enumeration is new Scalar with record
V : Unbounded_String;
Type_Name : Unbounded_String;
end record;
-- Composite SOAP types
type SOAP_Array is new Composite with record
Type_Name : Unbounded_String;
end record;
type SOAP_Record is new Composite with record
Type_Name : Unbounded_String;
end record;
end SOAP.Types;
|