home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / adav313.zip / gnat-3_13p-os2-bin-20010916.zip / emx / gnatlib / a-wtinio.adb < prev    next >
Text File  |  2000-07-19  |  6KB  |  153 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --           A D A . W I D E _ T E X T _ I O . I N T E G E R _ I O          --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.6 $
  10. --                                                                          --
  11. --          Copyright (C) 1992-1999 Free Software Foundation, Inc.          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  22. -- MA 02111-1307, USA.                                                      --
  23. --                                                                          --
  24. -- As a special exception,  if other files  instantiate  generics from this --
  25. -- unit, or you link  this unit with other files  to produce an executable, --
  26. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  27. -- covered  by the  GNU  General  Public  License.  This exception does not --
  28. -- however invalidate  any other reasons why  the executable file  might be --
  29. -- covered by the  GNU Public License.                                      --
  30. --                                                                          --
  31. -- GNAT was originally developed  by the GNAT team at  New York University. --
  32. -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
  33. --                                                                          --
  34. ------------------------------------------------------------------------------
  35.  
  36. with Ada.Wide_Text_IO.Integer_Aux;
  37. with System.WCh_Con; use System.WCh_Con;
  38. with System.WCh_WtS; use System.WCh_WtS;
  39.  
  40. with Ada.Unchecked_Conversion;
  41.  
  42. package body Ada.Wide_Text_IO.Integer_IO is
  43.  
  44.    Need_LLI : constant Boolean := Num'Base'Size > Integer'Size;
  45.    --  Throughout this generic body, we distinguish between the case
  46.    --  where type Integer is acceptable, and where a Long_Long_Integer
  47.    --  is needed. This constant Boolean is used to test for these cases
  48.    --  and since it is a constant, only the code for the relevant case
  49.    --  will be included in the instance.
  50.  
  51.    subtype TFT is Ada.Wide_Text_IO.File_Type;
  52.    --  File type required for calls to routines in Aux
  53.  
  54.    package Aux renames Ada.Wide_Text_IO.Integer_Aux;
  55.  
  56.    ---------
  57.    -- Get --
  58.    ---------
  59.  
  60.    procedure Get
  61.      (File  : in File_Type;
  62.       Item  : out Num;
  63.       Width : in Field := 0)
  64.    is
  65.    begin
  66.       if Need_LLI then
  67.          Aux.Get_LLI (TFT (File), Long_Long_Integer (Item), Width);
  68.       else
  69.          Aux.Get_Int (TFT (File), Integer (Item), Width);
  70.       end if;
  71.  
  72.    exception
  73.       when Constraint_Error => raise Data_Error;
  74.    end Get;
  75.  
  76.    procedure Get
  77.      (Item  : out Num;
  78.       Width : in Field := 0)
  79.    is
  80.    begin
  81.       Get (Current_Input, Item, Width);
  82.    end Get;
  83.  
  84.    procedure Get
  85.      (From : in Wide_String;
  86.       Item : out Num;
  87.       Last : out Positive)
  88.    is
  89.       S : constant String := Wide_String_To_String (From, WCEM_Upper);
  90.       --  String on which we do the actual conversion. Note that the method
  91.       --  used for wide character encoding is irrelevant, since if there is
  92.       --  a character outside the Standard.Character range then the call to
  93.       --  Aux.Gets will raise Data_Error in any case.
  94.  
  95.    begin
  96.       if Need_LLI then
  97.          Aux.Gets_LLI (S, Long_Long_Integer (Item), Last);
  98.       else
  99.          Aux.Gets_Int (S, Integer (Item), Last);
  100.       end if;
  101.  
  102.    exception
  103.       when Constraint_Error => raise Data_Error;
  104.    end Get;
  105.  
  106.    ---------
  107.    -- Put --
  108.    ---------
  109.  
  110.    procedure Put
  111.      (File  : in File_Type;
  112.       Item  : in Num;
  113.       Width : in Field := Default_Width;
  114.       Base  : in Number_Base := Default_Base)
  115.    is
  116.    begin
  117.       if Need_LLI then
  118.          Aux.Put_LLI (TFT (File), Long_Long_Integer (Item), Width, Base);
  119.       else
  120.          Aux.Put_Int (TFT (File), Integer (Item), Width, Base);
  121.       end if;
  122.    end Put;
  123.  
  124.    procedure Put
  125.      (Item  : in Num;
  126.       Width : in Field := Default_Width;
  127.       Base  : in Number_Base := Default_Base)
  128.    is
  129.    begin
  130.       Put (Current_Output, Item, Width, Base);
  131.    end Put;
  132.  
  133.    procedure Put
  134.      (To   : out Wide_String;
  135.       Item : in Num;
  136.       Base : in Number_Base := Default_Base)
  137.    is
  138.       S : String (To'First .. To'Last);
  139.  
  140.    begin
  141.       if Need_LLI then
  142.          Aux.Puts_LLI (S, Long_Long_Integer (Item), Base);
  143.       else
  144.          Aux.Puts_Int (S, Integer (Item), Base);
  145.       end if;
  146.  
  147.       for J in S'Range loop
  148.          To (J) := Wide_Character'Val (Character'Pos (S (J)));
  149.       end loop;
  150.    end Put;
  151.  
  152. end Ada.Wide_Text_IO.Integer_IO;
  153.