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
|
@comment{ $Source: e:\\cvsroot/ARM/Source/infosys.mss,v $ }
@comment{ $Revision: 1.37 $ $Date: 2006/10/18 00:25:26 $ $Author: Randy $ }
@Part(infosys, Root="ada.mss")
@Comment{$Date: 2006/10/18 00:25:26 $}
@LabeledNormativeAnnex{Information Systems}
@begin{Intro}
@Defn{information systems}
@Leading@;This Annex provides a set of facilities relevant to
Information Systems programming. These fall into several
categories:
@begin{itemize}
an attribute definition clause specifying Machine_Radix for a decimal subtype;
the package Decimal, which declares a set of constants defining the
implementation's capacity for decimal types, and a
generic procedure
for decimal division; and
@ChgRef{Version=[2],Kind=[Revised],ARef=[AI95-00285-01]}
the child packages Text_IO.Editing@Chg{Version=[2],New=[,],Old=[ and]}
Wide_Text_IO.Editing@Chg{Version=[2],New=[, and Wide_Wide_Text_IO.Editing],Old=[]},
which
support formatted and localized output of decimal data, based on
@lquotes@;picture String@rquotes@; values.
@end{itemize}
@ChgRef{Version=[2],Kind=[Revised],ARef=[AI95-00434-01]}
See also: @RefSec{Fixed Point Types}; @RefSec{Operations of Fixed Point Types};
@RefSec{Type Conversions};
@RefSec{Operational and Representation Attributes};
@RefSec(Input-Output for Real Types);@Chg{Version=[2],
New=[],Old=[@RefSec{Interfacing with COBOL};]}
@RefSec{Interfacing with C and C++};@Chg{Version=[2],
New=[ @RefSec{Interfacing with COBOL};],Old=[]}
@RefSec{Numerics}.
The character and string handling packages in
@RefSec{Predefined Language Environment}
are also relevant for Information Systems.
@end{Intro}
@begin{ImplAdvice}
If COBOL (respectively, C) is widely supported in the target environment,
implementations supporting the Information Systems
Annex should provide the child package
Interfaces.COBOL (respectively, Interfaces.C) specified in
@RefSecNum{Interface to Other Languages}
and should support a @i{convention_}@nt{identifier} of
COBOL (respectively, C) in the interfacing pragmas
(see @RefSecNum{Interface to Other Languages}),
thus allowing Ada programs to interface with programs written in
that language.
@ChgImplAdvice{Version=[2],Kind=[AddedNormal],Text=[@ChgAdded{Version=[2],
Text=[If COBOL (respectively, C) is supported in the target environment,
then interfacing to COBOL (respectively, C) should be supported as
specified in @RefSecNum{Interface to Other Languages}.]}]}
@end{ImplAdvice}
@begin{Extend83}
@Defn{extensions to Ada 83}
This Annex is new to Ada 95.
@end{Extend83}
@begin{DiffWord95}
@ChgRef{Version=[2],Kind=[AddedNormal],ARef=[AI95-00285-01]}
@ChgAdded{Version=[2],Text=[Added a mention of Wide_Wide_Text_IO.Editing,
part of the support for 32-bit characters.]}
@end{DiffWord95}
@LabeledClause{Machine_Radix Attribute Definition Clause}
@begin{StaticSem}
@PDefn2{Term=[specifiable], Sec=(of Machine_Radix for decimal first subtypes)}
@Defn{Machine_Radix clause}
Machine_Radix may be specified for a decimal first subtype
(see @RefSecNum{Fixed Point Types})
via an @nt{attribute_definition_clause};
the expression of such a clause shall be static,
and its value shall be 2 or 10.
A value of 2 implies a binary base range; a
value of 10 implies a decimal base range.
@begin{Ramification}
In the absence of a Machine_Radix clause, the choice
of 2 versus 10 for S'Machine_Radix is not specified.
@end{Ramification}
@end{StaticSem}
@begin{ImplAdvice}
Packed decimal should be used as the internal representation
for objects of subtype S when S'Machine_Radix = 10.
@ChgImplAdvice{Version=[2],Kind=[AddedNormal],Text=[@ChgAdded{Version=[2],
Text=[Packed decimal should be used as the internal representation
for objects of subtype @i<S> when @i<S>'Machine_Radix = 10.]}]}
@end{ImplAdvice}
@begin{Discussion}
The intent of a decimal Machine_Radix attribute definition clause
is to allow the programmer to declare an Ada decimal data object
whose representation matches a particular COBOL implementation's
representation of packed decimal items.
The Ada object may then be passed to an interfaced COBOL program
that takes a packed decimal data item as a parameter,
assuming that convention COBOL has been specified for the Ada
object's type in a @nt[pragma] Convention.
Additionally, the Ada compiler may choose to generate arithmetic
instructions that exploit the packed decimal representation.
@end{discussion}
@begin{Examples}
@Leading@Keepnext@i{Example of Machine_Radix attribute definition clause:}
@begin{example}
@key[type] Money @key[is] @key[delta] 0.01 @key[digits] 15;
@key[for] Money'Machine_Radix @key[use] 10;
@end{example}
@end{Examples}
@LabeledClause{The Package Decimal}
@begin{StaticSem}
@Leading@Keepnext@;The library package Decimal has the following declaration:
@begin{Example}
@key(package) Ada.Decimal @key(is)@ChildUnit{Parent=[Ada],Child=[Decimal]}
@key(pragma) Pure(Decimal);
@AdaObjDefn{Max_Scale} : @key(constant) := @RI{implementation-defined};
@AdaObjDefn{Min_Scale} : @key(constant) := @RI{implementation-defined};
@AdaObjDefn{Min_Delta} : @key(constant) := 10.0**(-Max_Scale);
@AdaObjDefn{Max_Delta} : @key(constant) := 10.0**(-Min_Scale);
@AdaObjDefn{Max_Decimal_Digits} : @key(constant) := @RI{implementation-defined};
@key(generic)
@key(type) Dividend_Type @key(is) @key(delta) <> @key(digits) <>;
@key(type) Divisor_Type @key(is) @key(delta) <> @key(digits) <>;
@key(type) Quotient_Type @key(is) @key(delta) <> @key(digits) <>;
@key(type) Remainder_Type @key(is) @key(delta) <> @key(digits) <>;
@key(procedure) @AdaSubDefn{Divide} (Dividend : @key(in) Dividend_Type;
Divisor : @key(in) Divisor_Type;
Quotient : @key(out) Quotient_Type;
Remainder : @key(out) Remainder_Type);
@key[pragma] Convention(Intrinsic, Divide);
@key(end) Ada.Decimal;
@end{Example}
@ImplDef{The values of named numbers in the package Decimal.}
Max_Scale is the largest N such that 10.0**(@en@;N) is allowed as a decimal
type's delta. Its type is @i{universal_integer}.
Min_Scale is the smallest N such that 10.0**(@en@;N) is allowed as a decimal
type's delta. Its type is @i{universal_integer}.
Min_Delta is the smallest value allowed for @i{delta} in a
@nt{decimal_fixed_point_definition}. Its type is @i{universal_real}.
Max_Delta is the largest value allowed for @i{delta} in a
@nt{decimal_fixed_point_definition}. Its type is @i{universal_real}.
Max_Decimal_Digits is the largest value allowed for @i{digits} in a
@nt{decimal_fixed_point_definition}. Its type is @i{universal_integer}.
@begin{reason}
The name is Max_Decimal_Digits versus Max_Digits, in order to avoid
confusion with the named number System.Max_Digits relevant to floating
point.
@end{reason}
@end{StaticSem}
@begin{StaticSem}
The effect of Divide is as follows.
The value of Quotient is Quotient_Type(Dividend/Divisor).
The value of Remainder is Remainder_Type(Intermediate),
where Intermediate is the difference between Dividend and the product of
Divisor and Quotient; this result is computed exactly.
@end{StaticSem}
@begin(ImplReq)
Decimal.Max_Decimal_Digits shall be at least 18.
Decimal.Max_Scale shall be at least 18.
Decimal.Min_Scale shall be at most 0.
@end{ImplReq}
@begin(Notes)
The effect of division yielding a quotient with control over rounding
versus truncation is obtained by applying either the
function attribute Quotient_Type'Round or the conversion Quotient_Type
to the expression Dividend/Divisor.
@end(Notes)
@LabeledClause{Edited Output for Decimal Types}
@begin{Intro}
@Leading@;
@ChgRef{Version=[2],Kind=[Revised],ARef=[AI95-00285-01]}
The child packages Text_IO.Editing@Chg{Version=[2],New=[,],Old=[ and]}
Wide_Text_IO.Editing@Chg{Version=[2],New=[, and Wide_Wide_Text_IO.Editing],Old=[]}
provide localizable formatted text
output, known as @i{edited output}@Defn{edited output},
for decimal types. An edited
output string is a function of a numeric value, program-specifiable
locale elements, and a format control value. The numeric value is of
some decimal type. The locale elements are:
@begin{itemize}
the currency string;
the digits group separator character;
the radix mark character; and
the fill character that replaces leading zeros of the numeric value.
@end{itemize}
@ChgRef{Version=[2],Kind=[Revised],ARef=[AI95-00285-01]}
For Text_IO.Editing the edited output and currency strings are of
type String, and the locale characters are of type Character.
For Wide_@!Text_IO.@!Editing their types are Wide_@!String and Wide_@!Character,
respectively.@Chg{Version=[2],New=[ For Wide_Wide_@!Text_IO.@!Editing
their types are Wide_Wide_@!String and Wide_Wide_@!Character, respectively.],Old=[]}
Each of the locale elements has a default value that can be replaced or
explicitly overridden.
A format-control
value is of the private type Picture; it determines
the composition of the edited output string and controls the form and
placement of the sign, the position of the locale elements and the
decimal digits, the presence or absence of a radix mark, suppression
of leading zeros, and insertion of particular character values.
@Leading@;A Picture object is composed from a String value, known as a
@i{picture String}, that serves as a template for the
edited output string, and a
Boolean value that controls whether a string of all space characters is
produced when the number's value is zero. A picture String comprises a
sequence of one- or two-Character symbols, each serving as a placeholder
for a character or string at a corresponding position in the edited
output string. The picture String symbols fall into several categories
based on their effect on the edited output string:
@TabClear()
@begin{Display}
@TabSet{3, 21, 27, 33, 39, 45, 51}
@\Decimal Digit: @\'9'
@\Radix Control: @\'.' @\'V'
@\Sign Control: @\'+' @\'@en@;' @\'<' @\'>' @\"CR" @\"DB"
@\Currency Control: @\'$' @\'#'
@\Zero Suppression: @\'Z' @\'*'
@\Simple Insertion: @\'_' @\'B' @\'0' @\'/'
@end{Display}
The entries are not case-sensitive. Mixed- or lower-case forms
for "CR" and "DB", and lower-case forms for 'V', 'Z', and 'B',
have the same effect as the upper-case symbols shown.
An occurrence of a '9' Character in the picture String represents a
decimal digit position in the edited output string.
A radix control Character in the picture String indicates the position
of the radix mark in the edited output string: an actual character
position for '.', or an assumed position for 'V'.
A sign control Character in the picture String affects the form of the
sign in the edited output string. The '<' and '>' Character values indicate
parentheses for negative values. A Character '+', '@en@;', or '<' appears
either singly, signifying a fixed-position sign in the edited output,
or repeated, signifying a floating-position sign that is preceded by
zero or more space characters and that replaces a leading 0.
A currency control Character in the picture String indicates an
occurrence of the currency string in the edited output string. The
'$' Character represents the complete currency string; the '#'
Character represents one character of the currency string. A '$'
Character appears either singly, indicating a fixed-position currency
string in the edited output, or repeated, indicating a
floating-position currency string that occurs in place of a leading 0.
A sequence of '#' Character values indicates either a fixed- or
floating-position currency string, depending on context.
A zero suppression Character in the picture String allows a leading
zero to be replaced by either the space character (for 'Z') or
the fill character (for '*').
A simple insertion Character in the picture String represents, in
general, either itself (if '/' or '0'), the space character (if 'B'),
or the digits group separator character (if '_'). In some contexts it
is treated as part of a floating sign, floating currency, or zero
suppression string.
@ChgRef{Version=[2],Kind=[Revised],ARef=[AI95-00434-01]}
An example of a picture String is "<###Z_ZZ9.99>". If the currency string
is "@Chg{Version=[2],New=[kr],Old=[FF]}", the separator character is ',', and
the radix mark is '.' then the edited output string values for the decimal
values 32.10 and @en@;5432.10 are
"bb@Chg{Version=[2],New=[kr],Old=[FF]}bbb32.10b" and
"(b@Chg{Version=[2],New=[kr],Old=[FF]}5,432.10)", respectively, where 'b'
indicates the space character.
@ChgRef{Version=[2],Kind=[Revised],ARef=[AI95-00285-01]}
The generic packages Text_IO.Decimal_IO@Chg{Version=[2],New=[,],Old=[ and]}
Wide_Text_IO.Decimal_IO@Chg{Version=[2],New=[, and Wide_Wide_Text_IO.Decimal_IO],Old=[]}
(see @RefSec(Input-Output for Real Types))
provide text input and non-edited text output for decimal types.
@end{Intro}
@begin{Notes}
@ChgRef{Version=[2],Kind=[Revised],ARef=[AI95-00285-01]}
A picture String is of type Standard.String, @Chg{Version=[2],New=[for all of],
Old=[both for]} Text_IO.Editing@Chg{Version=[2],New=[,],Old=[ and]}
Wide_Text_IO.Editing@Chg{Version=[2],New=[, and Wide_Wide_Text_IO.Editing],Old=[]}.
@end{Notes}
@begin{DiffWord95}
@ChgRef{Version=[2],Kind=[AddedNormal],ARef=[AI95-00285-01]}
@ChgAdded{Version=[2],Text=[Added descriptions of Wide_Wide_Text_IO.Editing;
see @RefSecNum{The Package Wide_Wide_Text_IO.Editing}.]}
@end{DiffWord95}
@LabeledSubClause{Picture String Formation}
@begin{Intro}
@Defn2{term=[picture String],sec=[for edited output]}
@Defn2{term=[well-formed picture String],sec=[for edited output]}
A @i{well-formed picture String}, or simply @i{picture String},
is a String value that conforms to the
syntactic rules, composition constraints, and character replication
conventions specified in this clause.
@end{Intro}
@begin{RunTime}
@TabClear()
@ChgRef{Version=[1], Kind=[Deleted]}
@Chg[New=<>,Old=<@ @;@comment{Empty paragraph to hang junk paragraph number from original RM}>]
@begin{Display}
@ntf{picture_string} ::=
@ntf{fixed_$_picture_string}
| @ntf{fixed_#_picture_string}
| @ntf{floating_currency_picture_string}
| @ntf{non_currency_picture_string}
@comment{Blank Line}
@end{Display}
@begin{display}
@ntf{fixed_$_picture_string} ::=
[@ntf{fixed_LHS_sign}] @ntf{fixed_$_char} {@ntf{direct_insertion}} [@ntf{zero_suppression}]
@ntf{number} [@ntf{RHS_sign}]
@comment{Blank Line}
| [@ntf{fixed_LHS_sign} {@ntf{direct_insertion}}] [@ntf{zero_suppression}]
@ntf{number} @ntf{fixed_$_char} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| @ntf{floating_LHS_sign} @ntf{number} @ntf{fixed_$_char} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| [@ntf{fixed_LHS_sign}] @ntf{fixed_$_char} {@ntf{direct_insertion}}
@ntf{all_zero_suppression_number} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| [@ntf{fixed_LHS_sign} {@ntf{direct_insertion}}] @ntf{all_zero_suppression_number} {@ntf{direct_insertion}}
@ntf{fixed_$_char} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| @ntf{all_sign_number} {@ntf{direct_insertion}} @ntf{fixed_$_char} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{fixed_#_picture_string} ::=
[@ntf{fixed_LHS_sign}] @ntf{single_#_currency} {@ntf{direct_insertion}}
[@ntf{zero_suppression}] @ntf{number} [@ntf{RHS_sign}]
@comment{Blank Line}
| [@ntf{fixed_LHS_sign}] @ntf{multiple_#_currency} {@ntf{direct_insertion}}
@ntf{zero_suppression} @ntf{number} [@ntf{RHS_sign}]
@comment{Blank Line}
| [@ntf{fixed_LHS_sign} {@ntf{direct_insertion}}] [@ntf{zero_suppression}]
@ntf{number} @ntf{fixed_#_currency} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| @ntf{floating_LHS_sign} @ntf{number} @ntf{fixed_#_currency} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| [@ntf{fixed_LHS_sign}] @ntf{single_#_currency} {@ntf{direct_insertion}}
@ntf{all_zero_suppression_number} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| [@ntf{fixed_LHS_sign}] @ntf{multiple_#_currency} {@ntf{direct_insertion}}
@ntf{all_zero_suppression_number} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| [@ntf{fixed_LHS_sign} {@ntf{direct_insertion}}] @ntf{all_zero_suppression_number} {@ntf{direct_insertion}}
@ntf{fixed_#_currency} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
| @ntf{all_sign_number} {@ntf{direct_insertion}} @ntf{fixed_#_currency} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{floating_currency_picture_string} ::=
[@ntf{fixed_LHS_sign}] {@ntf{direct_insertion}} @ntf{floating_$_currency} @ntf{number} [@ntf{RHS_sign}]
| [@ntf{fixed_LHS_sign}] {@ntf{direct_insertion}} @ntf{floating_#_currency} @ntf{number} [@ntf{RHS_sign}]
| [@ntf{fixed_LHS_sign}] {@ntf{direct_insertion}} @ntf{all_currency_number} {@ntf{direct_insertion}} [@ntf{RHS_sign}]
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{non_currency_picture_string} ::=
[@ntf{fixed_LHS_sign} {@ntf{direct_insertion}}] @ntf{zero_suppression} @ntf{number} [@ntf{RHS_sign}]
| [@ntf{floating_LHS_sign}] @ntf{number} [@ntf{RHS_sign}]
| [@ntf{fixed_LHS_sign} {@ntf{direct_insertion}}] @ntf{all_zero_suppression_number} {@ntf{direct_insertion}}
[@ntf{RHS_sign}]
| @ntf{all_sign_number} {@ntf{direct_insertion}}
| @ntf{fixed_LHS_sign} @ntf{direct_insertion} {@ntf{direct_insertion}} @ntf{number} [@ntf{RHS_sign}]
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{fixed_LHS_sign} ::= @ntf{LHS_Sign}
@end{display}
@begin{display}
@ntf{LHS_Sign} ::= + | @en | <
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{fixed_$_char} ::= $
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{direct_insertion} ::= @ntf{simple_insertion}
@end{display}
@begin{display}
@ntf{simple_insertion} ::= _ | B | 0 | /
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{zero_suppression} ::= Z {Z | @ntf{context_sensitive_insertion}} | @ntf{fill_string}
@end{display}
@begin{display}
@ntf{context_sensitive_insertion} ::= @ntf{simple_insertion}
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{fill_string} ::= * {* | @ntf{context_sensitive_insertion}}
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{number} ::=
@ntf{fore_digits} [@ntf{radix} [@ntf{aft_digits}] {@ntf{direct_insertion}}]
| @ntf{radix} @ntf{aft_digits} {@ntf{direct_insertion}}
@end{display}
@begin{display}
@ntf{fore_digits} ::= 9 {9 | @ntf{direct_insertion}}
@end{display}
@begin{display}
@ntf{aft_digits} ::= {9 | @ntf{direct_insertion}} 9
@end{display}
@begin{display}
@ntf{radix} ::= . | V
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{RHS_sign} ::= + | @en | > | CR | DB
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{floating_LHS_sign} ::=
@ntf{LHS_Sign} {@ntf{context_sensitive_insertion}} @ntf{LHS_Sign} {@ntf{LHS_Sign} | @ntf{context_sensitive_insertion}}
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{single_#_currency} ::= #
@end{display}
@begin{display}
@ntf{multiple_#_currency} ::= ## {#}
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{fixed_#_currency} ::= @ntf{single_#_currency} | @ntf{multiple_#_currency}
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{floating_$_currency} ::=
$ {@ntf{context_sensitive_insertion}} $ {$ | @ntf{context_sensitive_insertion}}
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{floating_#_currency} ::=
# {@ntf{context_sensitive_insertion}} # {# | @ntf{context_sensitive_insertion}}
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{all_sign_number} ::= @ntf{all_sign_fore} [@ntf{radix} [@ntf{all_sign_aft}]] [>]
@end{display}
@begin{display}
@ntf{all_sign_fore} ::=
@ntf{sign_char} {@ntf{context_sensitive_insertion}} @ntf{sign_char} {@ntf{sign_char} | @ntf{context_sensitive_insertion}}
@end{display}
@begin{display}
@ntf{all_sign_aft} ::= {@ntf{all_sign_aft_char}} @ntf{sign_char}
@comment{Blank Line}
@ntf{all_sign_aft_char} ::= @ntf{sign_char} | @ntf{context_sensitive_insertion}
@end{display}
@begin{display}
@ntf{sign_char} ::= + | @en | <
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{all_currency_number} ::= @ntf{all_currency_fore} [@ntf{radix} [@ntf{all_currency_aft}]]
@end{display}
@begin{display}
@ntf{all_currency_fore} ::=
@ntf{currency_char} {@ntf{context_sensitive_insertion}}
@ntf{currency_char} {@ntf{currency_char} | @ntf{context_sensitive_insertion}}
@end{display}
@begin{display}
@ntf{all_currency_aft} ::= {@ntf{all_currency_aft_char}} @ntf{currency_char}
@comment{Blank Line}
@ntf{all_currency_aft_char} ::= @ntf{currency_char} | @ntf{context_sensitive_insertion}
@end{display}
@begin{display}
@ntf{currency_char} ::= $ | #
@comment{Blank Line}
@end{display}
@begin{display}
@ntf{all_zero_suppression_number} ::= @ntf{all_zero_suppression_fore} [ @ntf{radix} [@ntf{all_zero_suppression_aft}]]
@end{display}
@begin{display}
@ntf{all_zero_suppression_fore} ::=
@ntf{zero_suppression_char} {@ntf{zero_suppression_char} | @ntf{context_sensitive_insertion}}
@end{display}
@begin{display}
@ntf{all_zero_suppression_aft} ::= {@ntf{all_zero_suppression_aft_char}} @ntf{zero_suppression_char}
@comment{Blank Line}
@ntf{all_zero_suppression_aft_char} ::= @ntf{zero_suppression_char} | @ntf{context_sensitive_insertion}
@end{display}
@begin{display}
@trailing@ntf{zero_suppression_char} ::= Z | *
@end{Display}
@Leading@;The following composition constraints apply to a picture String:
@begin{Itemize}
A @ntf{floating_LHS_sign} does not have occurrences of different @ntf{LHS_Sign}
Character values.
If a picture String has '<' as @ntf{fixed_LHS_sign}, then it has '>' as
@ntf{RHS_sign}.
If a picture String has '<' in a @ntf{floating_LHS_sign} or in an
@ntf{all_sign_number}, then it has an occurrence of '>'.
@ChgRef{Version=[1],Kind=[Revised],Ref=[8652/0088],ARef=[AI95-00153]}
If a picture String has '+' or '@en@;' as @ntf{fixed_LHS_sign}, in a
@ntf{floating_LHS_sign}, or in an @ntf{all_sign_number}, then it has no
@ntf{RHS_sign}@Chg{New=[ or '>' character],Old=[]}.
An instance of @ntf{all_sign_number} does not have occurrences of
different @ntf{sign_char} Character values.
An instance of @ntf{all_currency_number} does not have occurrences of
different @ntf{currency_@!char} Character values.
An instance of @ntf{all_zero_suppression_number} does not have occurrences
of different @ntf{zero_@!suppression_@!char} Character values, except for possible
case differences between 'Z' and 'z'.
@end{Itemize}
A @i{replicable Character} is a Character that, by the
above rules, can occur in two consecutive positions in a picture String.
@Leading@;A @i{Character replication} is a String
@begin{example}
@RI{char} & '(' & @RI{spaces} & @RI{count_string} & ')'
@end{example}
where @i{char} is a replicable Character,
@i{spaces} is a String (possibly empty) comprising only space Character values,
and @i{count_string} is a String of one or more decimal digit Character
values. A Character replication in a picture String has the same effect
as (and is said to be @i{equivalent to}) a String comprising @i[n]
consecutive occurrences of @i{char}, where
@i[n]=Integer'Value(@i{count_string}).
An @i{expanded picture String} is a picture String containing no
Character replications.
@begin{Discussion}
Since 'B' is not allowed after a RHS sign, there is no need
for a special rule to disallow "9.99DB(2)" as an abbreviation for
"9.99DBB"
@end{discussion}
@end{RunTime}
@begin{Notes}
Although a sign to the left of the number can float, a sign to the right
of the number is in a fixed position.
@end{Notes}
@begin{DiffWord95}
@ChgRef{Version=[2],Kind=[AddedNormal],Ref=[8652/0088],ARef=[AI95-00153-01]}
@ChgAdded{Version=[2],Text=[@b<Corrigendum:> The picture string rules for
numbers were tightened.]}
@end{DiffWord95}
@LabeledSubClause{Edited Output Generation}
@begin{RunTime}
@Leading@;The contents of an edited output string are based on:
@begin{Itemize}
A value, Item, of some decimal type Num,
An expanded picture String Pic_String,
A Boolean value, Blank_When_Zero,
A Currency string,
A Fill character,
A Separator character, and
A Radix_Mark character.
@end{Itemize}
The combination of a True value for Blank_When_Zero and a '*' character
in Pic_String is inconsistent; no edited output string is defined.
@begin{Reason}
@ChgRef{Version=[2],Kind=[AddedNormal],ARef=[AI95-00114-01]}
@ChgAdded{Version=[2],Text=[Such a Pic_String is invalid, and any attempt
to use such a string will raise Picture_Error.]}
@end{Reason}
A layout error is identified in the rules below if leading
non-zero digits of Item, character values of the Currency string,
or a negative sign would be
truncated; in such cases no edited output string is defined.
The edited output string has lower bound 1 and upper bound N where
N = Pic_String'Length + Currency_Length_Adjustment @en
Radix_Adjustment, and
@begin{Itemize}
Currency_Length_Adjustment =
Currency'Length @en@; 1 if there is some occurrence of '$' in
Pic_String, and
0 otherwise.
Radix_Adjustment =
1 if there is an occurrence of 'V' or 'v' in Pic_Str, and
0 otherwise.
@end{Itemize}
@Leading@defn{displayed magnitude (of a decimal value)}
Let the magnitude of Item be expressed as a base-10 number
I@-(p)@Times@Times@Times@;I@-(1).F@-(1)@Times@Times@Times@;F@-(q),
called the @i{displayed} @i{magnitude} of Item,
where:
@begin{Itemize}
q = Min(Max(Num'Scale, 0), n) where n is 0 if Pic_String
has no @ntf{radix} and is otherwise the number of digit
positions following @ntf{radix} in Pic_String,
where a digit position corresponds to an occurrence of
'9', a @ntf{zero_suppression_char} (for an
@ntf{all_zero_suppression_number}), a @ntf{currency_char}
(for an @ntf{all_currency_number}), or a @ntf{sign_char}
(for an @ntf{all_sign_number}).
I@-(p) /= 0 if p>0.
@end{Itemize}
If n < Num'Scale, then the above number is the result of rounding
(away from 0 if exactly midway between values).
If Blank_When_Zero = True and the displayed magnitude of Item
is zero,
then the edited output string
comprises all space character values. Otherwise, the picture String is
treated as a sequence of instances of syntactic categories based on
the rules in @RefSecNum[Picture String Formation],
and the edited output string is the concatenation of
string values derived from these categories according to the
following mapping rules.
Table F-1 shows the mapping from a sign control symbol to a
corresponding character or string in the edited output. In the
columns showing the edited output, a lower-case 'b' represents the
space character.
If there is no sign control symbol but the value of Item
is negative, a layout error occurs and no edited output string
is produced.
@Table{Columns=<3>,Alignment=<AllCenter>,FirstColWidth=[1],LastColWidth=[1],
NoBreak=[T],Border=[T],SmallSize=[F],
Caption=<@b{Table F-1: Edited Output for Sign Control Symbols}>,
Headers=<@b{Sign Control Symbol}@\@b{Edited Output for @*Non-Negative Number}@\@b{Edited Output for @*Negative Number}>,
Body=['+'@\'+'@\'@en@;'
'@en@;'@\'b'@\'@en@;'
'<'@\'b'@\'('
'>'@\'b'@\')'
"CR"@\"bb"@\"CR"@Last
"DB"@\"bb"@\"DB"]}
An instance of @ntf{fixed_LHS_sign} maps to a character as shown in
Table F-1.
An instance of @ntf{fixed_$_char} maps to Currency.
An instance of @ntf{direct_insertion} maps to
Separator if @ntf{direct_insertion} = '_', and to
the @ntf{direct_insertion} Character otherwise.
@Leading@;An instance of @ntf{number} maps to a string
@i{integer_part} & @i{radix_part} & @i{fraction_part}
where:
@begin{Itemize}
The string for @i{integer_part} is obtained as follows:
@begin{Enumerate}
Occurrences of '9' in @ntf{fore_digits} of @ntf{number} are replaced
from right to left with the decimal digit character values for
I@-(1), ..., I@-(p), respectively.
Each occurrence of '9' in @ntf{fore_digits}
to the left of the leftmost '9' replaced according
to rule 1 is replaced with '0'.
If p exceeds the number of occurrences of '9' in
@ntf{fore_digits} of @ntf{number}, then the excess leftmost
digits are eligible for use in the mapping of
an instance of @ntf{zero_suppression}, @ntf{floating_LHS_sign},
@ntf{floating_$_currency},
or @ntf{floating_#_currency} to the left of @ntf{number};
if there is no such instance, then a layout error
occurs and no edited output string is produced.
@end{Enumerate}
@leading@;The @i{radix_part} is:
@begin{InnerItemize}
"" if @ntf{number} does not include a @ntf{radix}, if @ntf{radix} = 'V',
or if @ntf{radix} = 'v'
Radix_Mark if @ntf{number} includes '.' as @ntf{radix}
@end{InnerItemize}
@leading@;The string for @i{fraction_part} is obtained as follows:
@begin{Enumerate}
Occurrences of '9'
in @ntf{aft_digits} of @ntf{number} are replaced
from left to right with the decimal digit character values for F@-(1),
... F@-(q).
Each occurrence of '9' in @ntf{aft_digits}
to the right of the rightmost '9' replaced according to rule 1
is replaced by '0'.
@end{Enumerate}
@end{Itemize}
@leading@;An instance of @ntf{zero_suppression} maps to the string obtained as follows:
@begin{Enumerate}
The rightmost 'Z', 'z', or '*' Character values
are replaced
with the excess digits (if any)
from the @i{integer_part} of the mapping of the @ntf{number}
to the right of the @ntf{zero_suppression} instance,
A @ntf{context_sensitive_insertion} Character is replaced
as though it were a @ntf{direct_insertion} Character, if
it occurs to the right of some 'Z', 'z', or '*' in
@ntf{zero_suppression} that has been mapped to an excess
digit,
@leading@;Each Character to the left of the
leftmost Character replaced according to rule 1 above
is replaced by:
@begin{InnerItemize}
the space character if the zero suppression Character is
'Z' or 'z', or
the Fill character if the zero suppression Character is '*'.
@end{InnerItemize}
A layout error occurs if some excess digits remain
after all 'Z', 'z', and '*' Character values in
@ntf{zero_suppression} have been replaced via rule 1; no
edited output string is produced.
@end{Enumerate}
An instance of @ntf{RHS_sign} maps to a character or string
as shown in Table F-1.
An instance of @ntf{floating_LHS_sign} maps to the string obtained as follows.
@begin{Enumerate}
Up to all but one of the rightmost @ntf{LHS_Sign}
Character values are replaced by the excess digits (if any)
from the @i{integer_part} of the mapping of the @ntf{number}
to the right of the @ntf{floating_LHS_sign} instance.
The next Character to the left is replaced
with the character given by the entry in Table F-1
corresponding to the @ntf{LHS_Sign} Character.
A @ntf{context_sensitive_insertion} Character is replaced
as though it were a @ntf{direct_insertion} Character, if
it occurs to the right of the leftmost @ntf{LHS_Sign}
character replaced according to rule 1.
Any other Character is replaced by the space character..
A layout error occurs if some excess digits remain
after replacement via rule 1; no edited output string is
produced.
@end{Enumerate}
An instance of @ntf{fixed_#_currency} maps to the Currency string with n
space character values concatenated on the left (if the instance does
not follow a @ntf{radix}) or on the right (if the instance does follow a
@ntf{radix}), where n is the difference between the length of the
@ntf{fixed_#_currency} instance and Currency'Length. A layout error
occurs if Currency'Length exceeds the length of the
@ntf{fixed_#_currency} instance; no edited output string is produced.
@Leading@;An instance of @ntf{floating_$_currency} maps to the string
obtained as follows:
@begin{Enumerate}
Up to all but one of the rightmost '$'
Character values are replaced
with the excess digits (if any)
from the @i{integer_part} of the mapping of the @ntf{number}
to the right of the @ntf{floating_$_currency} instance.
The next Character to the left is replaced
by the Currency string.
A @ntf{context_sensitive_insertion} Character is replaced
as though it were a @ntf{direct_insertion} Character, if
it occurs to the right of the leftmost '$' Character
replaced via rule 1.
Each other Character is replaced by the space character.
A layout error occurs if some excess digits remain
after replacement by rule 1; no edited output string is
produced.
@end{Enumerate}
@leading@;An instance of @ntf{floating_#_currency} maps to the string obtained
as follows:
@begin{Enumerate}
Up to all but one of the rightmost '#'
Character values are replaced
with the excess digits (if any)
from the @i{integer_part} of the mapping of the @ntf{number}
to the right of the
@ntf{floating_#_currency} instance.
The substring whose last Character occurs at the position immediately
preceding the leftmost Character replaced via rule 1, and whose
length is Currency'Length, is replaced by the Currency string.
A @ntf{context_sensitive_insertion} Character is replaced
as though it were a @ntf{direct_insertion} Character, if
it occurs to the right of the leftmost '#'
replaced via rule 1.
Any other Character is replaced by the space character.
A layout error occurs if some excess digits remain
after replacement rule 1, or if there is no substring
with the required length for replacement rule 2; no edited
output string is produced.
@end{Enumerate}
@leading@;An instance of @ntf{all_zero_suppression_number} maps to:
@begin{Itemize}
a string of all spaces if
the displayed magnitude of Item is zero,
the @ntf{zero_suppression_char}
is 'Z' or 'z', and the instance of
@ntf{all_zero_suppression_number} does not have
a @ntf{radix} at its last character position;
a string containing the Fill character in each position except
for the character (if any) corresponding to @ntf{radix}, if
@ntf{zero_suppression_char} = '*' and the
displayed magnitude of Item is zero;
otherwise,
the same result as if each @ntf{zero_suppression_char} in
@ntf{all_zero_suppression_aft} were '9', interpreting
the instance of @ntf{all_zero_suppression_number} as
either @ntf{zero_suppression} @ntf{number} (if a @ntf{radix}
and @ntf{all_zero_suppression_aft} are present), or
as @ntf{zero_suppression} otherwise.
@end{Itemize}
@leading@;An instance of @ntf{all_sign_number} maps to:
@begin{Itemize}
a string of all spaces if
the displayed magnitude of Item is zero and the
instance of @ntf{all_sign_number} does not have a @ntf{radix}
at its last character position;
otherwise,
the same result as if each @ntf{sign_char} in
@ntf{all_sign_number_aft} were '9', interpreting
the instance of @ntf{all_sign_number} as
either @ntf{floating_LHS_sign} @ntf{number} (if a @ntf{radix}
and @ntf{all_sign_number_aft} are present), or
as @ntf{floating_LHS_sign} otherwise.
@end{Itemize}
@leading@;An instance of @ntf{all_currency_number} maps to:
@begin{Itemize}
a string of all spaces if
the displayed magnitude of Item is zero and the
instance of @ntf{all_currency_number} does not have a @ntf{radix}
at its last character position;
otherwise,
the same result as if each @ntf{currency_char} in
@ntf{all_currency_number_aft} were '9', interpreting
the instance of @ntf{all_currency_number} as
@ntf{floating_$_currency} @ntf{number} or
@ntf{floating_#_currency} @ntf{number}
(if a @ntf{radix}
and @ntf{all_currency_number_aft} are present), or
as @ntf{floating_$_currency} or @ntf{floating_#_currency}
otherwise.
@end{Itemize}
@end{RunTime}
@begin{Examples}
In the result string values shown below, 'b' represents the space character.
@begin{Example}
Item: Picture and Result Strings:
123456.78 Picture: "-###**_***_**9.99"
"bbb$***123,456.78"
"bbFF***123.456,78" (currency = "FF",
separator = '.',
radix mark = ',')
@ChgRef{Version=[1],Kind=[Revised],Ref=[8652/0089],ARef=[AI95-00070]}
123456.78 Picture: "-@Chg{New=[],Old=[$$]}$**_***_**9.99"
Result: "@Chg{New=[],Old=[bb]}b$***123,456.78"
"b@Chg{New=[],Old=[bb]}FF***123.456,78" (currency = "FF",
@Chg{New=[],Old=[ ]} separator = '.',
@Chg{New=[],Old=[ ]} radix mark = ',')
0.0 Picture: "-$$$$$$.$$"
Result: "bbbbbbbbbb"
0.20 Picture: "-$$$$$$.$$"
Result: "bbbbbb$.20"
-1234.565 Picture: "<<<<_<<<.<<###>"
Result: "bb(1,234.57DMb)" (currency = "DM")
12345.67 Picture: "###_###_##9.99"
Result: "bbCHF12,345.67" (currency = "CHF")
@end{Example}
@end{Examples}
@begin{DiffWord95}
@ChgRef{Version=[2],Kind=[AddedNormal],Ref=[8652/0089],ARef=[AI95-00070-01]}
@ChgAdded{Version=[2],Text=[@b<Corrigendum:> Corrected the picture string
example.]}
@end{DiffWord95}
@LabeledSubClause{The Package Text_IO.Editing}
@begin{Intro}
The package Text_IO.Editing provides a private type Picture with associated
operations, and a generic package Decimal_Output.
An object of type Picture is composed from a well-formed picture String
(see @RefSecNum(Picture String Formation)) and a Boolean item indicating
whether a zero numeric value will result in an edited output string
of all space characters.
The package Decimal_Output
contains edited output subprograms implementing the effects defined
in @RefSecNum(Edited Output Generation).
@end{Intro}
@begin{StaticSem}
@leading@;The library package Text_IO.Editing has the following declaration:
@begin{Example}
@key(package) Ada.Text_IO.Editing @key(is)@ChildUnit{Parent=[Ada.Text_IO],Child=[Editing]}
@key(type) @AdaTypeDefn{Picture} @key(is) @key(private);
@key(function) @AdaSubDefn{Valid} (Pic_String : @key(in) String;
Blank_When_Zero : @key(in) Boolean := False) @key(return) Boolean;
@key(function) @AdaSubDefn{To_Picture} (Pic_String : @key(in) String;
Blank_When_Zero : @key(in) Boolean := False)
@key(return) Picture;
@key(function) @AdaSubDefn{Pic_String} (Pic : @key(in) Picture) @key(return) String;
@key(function) @AdaSubDefn{Blank_When_Zero} (Pic : @key(in) Picture) @key(return) Boolean;
@AdaObjDefn{Max_Picture_Length} : @key(constant) := @RI{implementation_defined};
@AdaExcDefn{Picture_Error} : @key(exception);
@AdaObjDefn{Default_Currency} : @key(constant) String := "$";
@AdaObjDefn{Default_Fill} : @key(constant) Character := '*';
@AdaObjDefn{Default_Separator} : @key(constant) Character := ',';
@AdaObjDefn{Default_Radix_Mark} : @key(constant) Character := '.';
@key(generic)
@key(type) Num @key(is) @key(delta) <> @key(digits) <>;
Default_Currency : @key(in) String := Text_IO.Editing.Default_Currency;
Default_Fill : @key(in) Character := Text_IO.Editing.Default_Fill;
Default_Separator : @key(in) Character :=
Text_IO.Editing.Default_Separator;
Default_Radix_Mark : @key(in) Character :=
Text_IO.Editing.Default_Radix_Mark;
@key(package) @AdaPackDefn{Decimal_Output} @key(is)
@key(function) @AdaSubDefn{Length} (Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency)
@key(return) Natural;
@key(function) @AdaSubDefn{Valid} (Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency)
@key(return) Boolean;
@key(function) @AdaSubDefn{Image} (Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency;
Fill : @key(in) Character := Default_Fill;
Separator : @key(in) Character := Default_Separator;
Radix_Mark : @key(in) Character := Default_Radix_Mark)
@key(return) String;
@key(procedure) @AdaSubDefn{Put} (File : @key(in) File_Type;
Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency;
Fill : @key(in) Character := Default_Fill;
Separator : @key(in) Character := Default_Separator;
Radix_Mark : @key(in) Character := Default_Radix_Mark);
@key(procedure) @AdaSubDefn{Put} (Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency;
Fill : @key(in) Character := Default_Fill;
Separator : @key(in) Character := Default_Separator;
Radix_Mark : @key(in) Character := Default_Radix_Mark);
@trailing@; @key(procedure) @AdaSubDefn{Put} (To : @key(out) String;
Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency;
Fill : @key(in) Character := Default_Fill;
Separator : @key(in) Character := Default_Separator;
Radix_Mark : @key(in) Character := Default_Radix_Mark);
@key(end) Decimal_Output;
@key(private)
... @RI{-- not specified by the language}
@key(end) Ada.Text_IO.Editing;
@end{Example}
@ImplDef{The value of Max_Picture_Length in the package Text_IO.Editing}
@Trailing@;The exception Constraint_Error is raised
if the Image function or any of the
Put procedures is invoked with a null string for Currency.
@begin{DescribeCode}
@begin{Example}@Keepnext
@key(function) Valid (Pic_String : @key(in) String;
Blank_When_Zero : @key(in) Boolean := False) @key(return) Boolean;
@end{Example}
@Trailing@;Valid returns True if Pic_String is a well-formed picture String
(see @RefSecNum(Picture String Formation)) the
length of whose expansion does not exceed Max_Picture_Length, and if
either Blank_When_Zero is False or Pic_String contains no '*'.
@begin{Example}@Keepnext
@key(function) To_Picture (Pic_String : @key(in) String;
Blank_When_Zero : @key(in) Boolean := False)
@key(return) Picture;
@end{Example}
@Trailing@;To_Picture returns a result Picture such that the application of the
function Pic_String to this result
yields an expanded picture String equivalent to Pic_String, and such
that Blank_When_Zero applied to the result Picture is the same value as the
parameter Blank_When_Zero.
Picture_Error is raised if not
Valid(Pic_String, Blank_When_Zero).
@begin{Example}
@key(function) Pic_String (Pic : @key(in) Picture) @key(return) String;
@Comment{Blank line}
@key(function) Blank_When_Zero (Pic : @key(in) Picture) @key(return) Boolean;
@end{Example}
@Leading@;If Pic is To_Picture(String_Item, Boolean_Item) for some String_Item and
Boolean_Item, then:
@begin[itemize]
Pic_String(Pic) returns an expanded picture String
equivalent to String_Item and with any lower-case letter
replaced with its corresponding upper-case form, and
Blank_When_Zero(Pic) returns Boolean_Item.
@end[Itemize]
@Leading@;If Pic_1 and Pic_2 are objects of type Picture, then "="(Pic_1, Pic_2)
is True when
@begin[itemize]
Pic_String(Pic_1) = Pic_String(Pic_2), and
@Trailing@;Blank_When_Zero(Pic_1) = Blank_When_Zero(Pic_2).
@end[Itemize]
@begin{Example}@Keepnext
@key(function) Length (Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency)
@key(return) Natural;
@end{Example}
@Leading@;Length returns Pic_String(Pic)'Length + Currency_Length_Adjustment @en
Radix_Adjustment where
@begin[itemize]
@Leading@;Currency_Length_Adjustment =
@begin[Inneritemize]
Currency'Length @en@; 1 if there is some occurrence of '$' in
Pic_String(Pic), and
0 otherwise.
@end[Inneritemize]
@Leading@;Radix_Adjustment =
@begin[Inneritemize]
1 if there is an occurrence of 'V' or 'v' in Pic_Str(Pic), and
@Trailing@;0 otherwise.
@end[Inneritemize]
@end[itemize]
@begin{Example}@Keepnext
@key(function) Valid (Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency)
@key(return) Boolean;
@end{Example}
@Trailing@;Valid returns True if Image(Item, Pic, Currency) does not raise
Layout_Error, and returns False otherwise.
@begin{Example}
@key(function) Image (Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency;
Fill : @key(in) Character := Default_Fill;
Separator : @key(in) Character := Default_Separator;
Radix_Mark : @key(in) Character := Default_Radix_Mark)
@key(return) String;
@end{Example}
@Trailing@;Image returns the edited output String as defined in
@RefSecNum(Edited Output Generation) for Item,
Pic_String(Pic), Blank_When_Zero(Pic),
Currency, Fill, Separator,
and Radix_Mark. If these rules identify a layout error, then Image
raises the exception Layout_Error.
@begin{Example}
@key(procedure) Put (File : @key(in) File_Type;
Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency;
Fill : @key(in) Character := Default_Fill;
Separator : @key(in) Character := Default_Separator;
Radix_Mark : @key(in) Character := Default_Radix_Mark);
@Comment{Blank line}
@key(procedure) Put (Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency;
Fill : @key(in) Character := Default_Fill;
Separator : @key(in) Character := Default_Separator;
Radix_Mark : @key(in) Character := Default_Radix_Mark);
@end{Example}
@Trailing@;Each of these Put procedures
outputs Image(Item, Pic, Currency, Fill, Separator, Radix_Mark)
consistent with the conventions for Put for other real types in case
of bounded line length (see @RefSec{Get and Put Procedures}).
@begin{Example}
@key(procedure) Put (To : @key(out) String;
Item : @key(in) Num;
Pic : @key(in) Picture;
Currency : @key(in) String := Default_Currency;
Fill : @key(in) Character := Default_Fill;
Separator : @key(in) Character := Default_Separator;
Radix_Mark : @key(in) Character := Default_Radix_Mark);
@end{Example}
Put copies Image(Item, Pic, Currency, Fill, Separator, Radix_Mark)
to the given string, right justified. Otherwise unassigned Character values
in To are assigned the space character. If To'Length is less than
the length of the string resulting from Image, then Layout_Error is raised.
@end{DescribeCode}
@end{StaticSem}
@begin{ImplReq}
Max_Picture_Length shall be at least 30.
The implementation shall support currency strings of length
up to at least 10, both for Default_Currency in an instantiation of
Decimal_Output, and for Currency in an invocation of Image or any
of the Put procedures.
@begin{Discussion}
This implies that a picture string with character replications
need not be supported (i.e., To_Picture will raise Picture_Error)
if its expanded form exceeds 30 characters.
@end{Discussion}
@end{ImplReq}
@begin{Notes}
@Leading@;The rules for edited output are based on COBOL (ANSI X3.23:1985,
endorsed by ISO as ISO 1989-1985), with the
following differences:
@begin{Itemize}
The COBOL provisions for picture string localization and for 'P' format
are absent from Ada.
@Leading@;The following Ada facilities are not in COBOL:
@begin{InnerItemize}
currency symbol placement after the number,
localization of edited output string for multi-character
currency string values, including support for both length-preserving
and length-expanding currency symbols in picture strings
localization of the radix mark, digits separator, and
fill character, and
parenthesization of negative values.
@end{InnerItemize}
@end{Itemize}
@ChgNote{The following paragraph is missing a number in the original version.
To give it a number in the new version, it is marked as an insertion.}
@ChgRef{Version=[0],Kind=[Added]}@NoPrefix
@Chg{New=[],Old=[@Noparanum@;]}The value of 30 for Max_Picture_Length is the
same limit as in COBOL.
@end{Notes}
@begin{Reason}
There are several reasons we have not adopted the COBOL-style permission to
provide a single-character replacement in the picture string for the `$' as
currency symbol, or to interchange the roles of `.' and `,' in picture strings
@begin{Itemize}
It would have introduced considerable complexity into Ada, as well as
confusion between run-time and compile-time character interpretation, since
picture Strings are dynamically computable in Ada, in contrast with COBOL
Ada's rules for real literals provide a natural interpretation of `_' as
digits separator and `.' for radix mark; it is not essential to allow these to
be localized in picture strings, since Ada does not allow them to be localized
in real literals.
The COBOL restriction for the currency symbol in a picture string to be
replaced by
a single character currency symbol is a compromise
solution. For general international usage
a mechanism is needed to localize the edited output to
be a multi-character currency string. Allowing a single-Character
localization for the picture Character, and a multiple-character localization
for the currency string, would be an unnecessary complication.
@end{Itemize}
@end{Reason}
@LabeledSubClause{The Package Wide_Text_IO.Editing}
@begin{StaticSem}
@Leading@;@Defn{Ada.Wide_@!Text_IO.Editing}
@ChildUnit{Parent=[Ada.Wide_@!Text_IO],Child=[Editing]}
The child package Wide_Text_IO.Editing has
the same contents as Text_IO.Editing, except that:
@begin{Itemize}
each occurrence of Character is replaced by Wide_Character,
each occurrence of Text_IO is replaced by Wide_Text_IO,
the subtype of Default_Currency is Wide_String rather than String, and
each occurrence of String
in the generic package Decimal_Output is replaced by
Wide_String.
@end{Itemize}
@ImplDef{The value of Max_Picture_Length in the package Wide_Text_IO.Editing}
@end{StaticSem}
@begin{Notes}
Each of the functions Wide_Text_IO.Editing.Valid, To_Picture, and Pic_String has String (versus
Wide_String) as its parameter or result subtype, since a picture String
is not localizable.
@end{Notes}
@LabeledAddedSubClause{Version=[2],Name=[The Package Wide_Wide_Text_IO.Editing]}
@begin{StaticSem}
@ChgRef{Version=[2],Kind=[AddedNormal],ARef=[AI95-00285-01]}
@ChgAdded{Version=[2],Type=[Leading],Text=[@Defn{Ada.Wide_@!Wide_@!Text_IO.Editing}
@ChildUnit{Parent=[Ada.Wide_@!Wide_@!Text_IO],Child=[Editing]}
The child package Wide_Wide_Text_IO.Editing has
the same contents as Text_IO.Editing, except that:]}
@begin{Itemize}
@ChgRef{Version=[2],Kind=[AddedNormal]}
@ChgAdded{Version=[2],Text=[each occurrence of Character is replaced by
Wide_Wide_Character,]}
@ChgRef{Version=[2],Kind=[AddedNormal]}
@ChgAdded{Version=[2],Text=[each occurrence of Text_IO is replaced by
Wide_Wide_Text_IO,]}
@ChgRef{Version=[2],Kind=[AddedNormal]}
@ChgAdded{Version=[2],Text=[the subtype of Default_Currency is Wide_Wide_String
rather than String, and]}
@ChgRef{Version=[2],Kind=[AddedNormal]}
@ChgAdded{Version=[2],Text=[each occurrence of String
in the generic package Decimal_Output is replaced by
Wide_Wide_String.]}
@end{Itemize}
@ChgImplDef{Version=[2],Kind=[AddedNormal],Text=[@Chg{Version=[2],New=[The
value of Max_Picture_Length in the package Wide_Wide_Text_IO.Editing],Old=[]}]}
@end{StaticSem}
@begin{Notes}
@ChgRef{Version=[2],Kind=[AddedNormal],ARef=[AI95-00285-01]}
@ChgAdded{Version=[2],Text=[Each of the functions
Wide_Wide_Text_IO.Editing.Valid, To_Picture, and Pic_String has String (versus
Wide_Wide_String) as its parameter or result subtype, since a picture String is
not localizable.]}
@end{Notes}
@begin{Extend95}
@ChgRef{Version=[2],Kind=[AddedNormal],ARef=[AI95-00285-01]}
@ChgAdded{Version=[2],Text=[@Defn{extensions to Ada 95}
Package Wide_Wide_Text_IO.Editing is new; it supports 32-bit character
strings. (Shouldn't it have been
@lquotes@;Widest_Text_IO.Editing@rquotes@;? :-)]}
@end{Extend95}
|