home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
gnat-2.06-src.tgz
/
tar.out
/
fsf
/
gnat
/
ada
/
s-imgdec.adb
< prev
next >
Wrap
Text File
|
1996-09-28
|
11KB
|
352 lines
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- S Y S T E M . I M G _ D E C --
-- --
-- B o d y --
-- --
-- $Revision: 1.6 $ --
-- --
-- Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved --
-- --
-- The GNAT library is free software; you can redistribute it and/or modify --
-- it under terms of the GNU Library General Public License as published by --
-- the Free Software Foundation; either version 2, or (at your option) any --
-- later version. The GNAT 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 --
-- Library General Public License for more details. You should have --
-- received a copy of the GNU Library General Public License along with --
-- the GNAT library; see the file COPYING.LIB. If not, write to the Free --
-- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
-- --
------------------------------------------------------------------------------
with System.Img_Int; use System.Img_Int;
package body System.Img_Dec is
-------------------
-- Image_Decimal --
-------------------
function Image_Decimal
(V : Integer;
Scale : Integer)
return String
is
P : Natural := 0;
S : String (1 .. 64);
begin
Set_Image_Decimal (V, S, P, Scale, 2, Integer'Max (1, Scale), 0);
return S (1 .. P);
end Image_Decimal;
-----------------------
-- Set_Image_Decimal --
-----------------------
procedure Set_Image_Decimal
(V : Integer;
S : out String;
P : in out Natural;
Scale : Integer;
Fore : Natural;
Aft : Natural;
Exp : Natural)
is
Digs : String := Image_Integer (V);
-- Sign and digits of decimal value
D : Natural;
-- Number of characters in Digs buffer
begin
Set_Decimal_Digits (Digs, Digs'Length, S, P, Scale, Fore, Aft, Exp);
end Set_Image_Decimal;
------------------------
-- Set_Decimal_Digits --
------------------------
procedure Set_Decimal_Digits
(Digs : in out String;
NDigs : Natural;
S : out String;
P : in out Natural;
Scale : Integer;
Fore : Natural;
Aft : Natural;
Exp : Natural)
is
Minus : constant Boolean := (Digs (1) = '-');
-- Set True if input is negative
Zero : Boolean := (Digs (2) = '0');
-- Set True if input is exactly zero (only case when a leading zero
-- is permitted in the input string given to this procedure). This
-- flag can get set later if rounding causes the value to become zero.
FD : Natural := 2;
-- First digit position of digits remaining to be processed
LD : Natural := NDigs;
-- Last digit position of digits remaining to be processed
ND : Natural := NDigs - 1;
-- Number of digits remaining to be processed (LD - FD + 1)
Digits_Before_Point : Integer := ND - Scale;
-- Number of digits before decimal point in the input value. This
-- value can be negative if the input value is less than 0.1, so
-- it is an indication of the current exponent. Digits_Before_Point
-- is adjusted if the rounding step generates an extra digit.
After : constant Natural := Integer'Max (1, Aft);
-- Digit positions after decimal point in result string
Expon : Integer;
-- Integer value of exponent
RP : Integer;
-- Position for rounding in no exponent case
procedure Round (N : Natural);
-- Round the number in Digs. N is the position of the last digit to be
-- retained in the rounded position (rounding is based on Digs (N + 1)
-- FD, LD, ND are reset as necessary if required. Note that if the
-- result value rounds up (e.g. 9.99 => 10.0), an extra digit can be
-- placed in the sign position as a result of the rounding, this is
-- the case in which FD is adjusted.
procedure Set (C : Character);
pragma Inline (Set);
-- Sets character C in output buffer
procedure Set_Blanks_And_Sign (N : Integer);
-- Sets leading blanks and minus sign if needed. N is the number of
-- positions to be filled (a minus sign is output even if N is zero
-- or negative, but for a positive value, if N is non-positive, then
-- the call has no effect).
procedure Set_Digits (S, E : Natural);
pragma Inline (Set_Digits);
-- Set digits S through E from Digs, no effect if S > E
procedure Set_Zeroes (N : Integer);
pragma Inline (Set_Zeroes);
-- Set N zeroes, no effect if N is negative
procedure Round (N : Natural) is
D : Character;
begin
-- Nothing to do if rounding at or past last digit
if N >= LD then
return;
-- Cases of rounding before the initial digit
elsif N < FD then
-- The result is zero, unless we are rounding just before
-- the first digit, and the first digit is five or more.
if N = 1 and then Digs (2) >= '5' then
Digs (1) := '1';
else
Digs (1) := '0';
Zero := True;
end if;
Digits_Before_Point := Digits_Before_Point + 1;
FD := 1;
LD := 1;
ND := 1;
-- Normal case of rounding an existing digit
else
LD := N;
ND := LD - 1;
if Digs (N + 1) >= '5' then
for J in reverse 2 .. N loop
D := Character'Succ (Digs (J));
if D <= '9' then
Digs (J) := D;
return;
else
Digs (J) := '0';
end if;
end loop;
-- Here the rounding overflows into the sign position. That's
-- OK, because we already captured the value of the sign and
-- we are in any case destroying the value in the Digs buffer
Digs (1) := '1';
FD := 1;
ND := ND + 1;
Digits_Before_Point := Digits_Before_Point + 1;
end if;
end if;
end Round;
procedure Set (C : Character) is
begin
P := P + 1;
S (P) := C;
end Set;
procedure Set_Blanks_And_Sign (N : Integer) is
W : Integer := N;
begin
if Minus then
W := W - 1;
Set ('-');
end if;
for J in 1 .. W loop
Set (' ');
end loop;
end Set_Blanks_And_Sign;
procedure Set_Digits (S, E : Natural) is
begin
for J in S .. E loop
Set (Digs (J));
end loop;
end Set_Digits;
procedure Set_Zeroes (N : Integer) is
begin
for J in 1 .. N loop
Set ('0');
end loop;
end Set_Zeroes;
-- Start of processing for Set_Decimal_Digits
begin
-- Case of exponent given
if Exp > 0 then
Set_Blanks_And_Sign (Fore - 1);
Round (Aft + 2);
Set (Digs (FD));
FD := FD + 1;
ND := ND - 1;
Set ('.');
if ND >= After then
Set_Digits (FD, FD + After - 1);
else
Set_Digits (FD, LD);
Set_Zeroes (After - ND);
end if;
-- Calculate exponent. The number of digits before the decimal point
-- in the input is Digits_Before_Point, and the number of digits
-- before the decimal point in the output is 1, so we can get the
-- exponent as the difference between these two values. The one
-- exception is for the value zero, which by convention has an
-- exponent of +0.
if Zero then
Expon := 0;
else
Expon := Digits_Before_Point - 1;
end if;
Set ('E');
ND := 0;
if Expon >= 0 then
Set ('+');
Set_Image_Integer (Expon, Digs, ND);
else
Set ('-');
Set_Image_Integer (-Expon, Digs, ND);
end if;
Set_Zeroes (Exp - ND - 1);
Set_Digits (1, ND);
return;
-- Case of no exponent given. To make these cases clear, we use
-- examples. For all the examples, we assume Fore = 2, Aft = 3.
-- A P in the example input string is an implied zero position,
-- not included in the input string.
else
-- Round at correct position
-- Input: 4PP => unchanged
-- Input: 400.03 => unchanged
-- Input 3.4567 => 3.457
-- Input: 9.9999 => 10.000
-- Input: 0.PPP5 => 0.PP1
-- Input: 0.PPP4 => 0
-- Input: 0.00003 => 0
Round (LD - (Scale - After));
-- No digits before point in input
-- Input: .123 Output: 0.123
-- Input: .PP3 Output: 0.003
if Digits_Before_Point <= 0 then
Set_Blanks_And_Sign (Fore - 1);
Set ('0');
Set ('.');
Set_Zeroes (After - ND);
Set_Digits (FD, LD);
-- At least one digit before point in input
else
Set_Blanks_And_Sign (Fore - Digits_Before_Point);
-- Less digits in input than are needed before point
-- Input: 1PP Output: 100.000
if FD + Digits_Before_Point - 1 > LD then
Set_Digits (FD, LD);
Set_Zeroes (FD + Digits_Before_Point - 1 - LD);
Set ('0');
Set_Zeroes (After);
-- Input has full amount of digits before decimal point
else
Set_Digits (FD, FD + Digits_Before_Point - 1);
Set ('.');
-- Input does not have full amount of digits after point
-- Input: 123.4 Output: 123.400
if LD < FD + Digits_Before_Point then
Set_Digits (FD + Digits_Before_Point, LD);
Set_Zeroes (FD + Digits_Before_Point - LD);
-- Input has full amount of digits before and after point
-- Input: 123.345 Output: 123.345
else
Set_Digits (FD + Digits_Before_Point, LD);
end if;
end if;
end if;
end if;
end Set_Decimal_Digits;
end System.Img_Dec;