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 / widechar.adb < prev    next >
Text File  |  1996-09-28  |  4KB  |  125 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                             W I D E C H A R                              --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.10 $                             --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  Note: this package uses the generic subprograms in System.Wch_Cnv, which
  27. --  completely encapsulate the set of wide character encoding methods, so no
  28. --  modifications are required when adding new encoding methods.
  29.  
  30. with Opt; use Opt;
  31.  
  32. with System.WCh_Cnv; use System.WCh_Cnv;
  33. with System.WCh_Con; use System.WCh_Con;
  34.  
  35. package body Widechar is
  36.  
  37.    -----------------
  38.    -- Length_Wide --
  39.    -----------------
  40.  
  41.    function Length_Wide return Nat is
  42.    begin
  43.       return WC_Longest_Sequence;
  44.    end Length_Wide;
  45.  
  46.    ---------------
  47.    -- Scan_Wide --
  48.    ---------------
  49.  
  50.    procedure Scan_Wide
  51.      (S : Source_Buffer_Ptr;
  52.       P : in out Source_Ptr;
  53.       C : out Char_Code;
  54.       E : out Boolean)
  55.    is
  56.       function In_Char return Character;
  57.       --  Function to obtain characters of wide character escape sequence
  58.  
  59.       function In_Char return Character is
  60.       begin
  61.          P := P + 1;
  62.          return S (P - 1);
  63.       end In_Char;
  64.  
  65.       function WC_In is new Char_Sequence_To_Wide_Char (In_Char);
  66.  
  67.    begin
  68.       C := Char_Code (Wide_Character'Pos
  69.                        (WC_In (In_Char, Wide_Character_Encoding_Method)));
  70.       E := False;
  71.  
  72.    exception
  73.       when Constraint_Error =>
  74.          P := P - 1;
  75.          E := True;
  76.    end Scan_Wide;
  77.  
  78.    --------------
  79.    -- Set_Wide --
  80.    --------------
  81.  
  82.    procedure Set_Wide
  83.      (C : Char_Code;
  84.       S : in out String;
  85.       P : in out Natural)
  86.    is
  87.       procedure Out_Char (C : Character);
  88.       --  Procedure to store one character of wide character sequence
  89.  
  90.       procedure Out_Char (C : Character) is
  91.       begin
  92.          P := P + 1;
  93.          S (P) := C;
  94.       end Out_Char;
  95.  
  96.       procedure WC_Out is new Wide_Char_To_Char_Sequence (Out_Char);
  97.  
  98.    begin
  99.       WC_Out (Wide_Character'Val (C), Wide_Character_Encoding_Method);
  100.    end Set_Wide;
  101.  
  102.    ---------------
  103.    -- Skip_Wide --
  104.    ---------------
  105.  
  106.    procedure Skip_Wide (S : String; P : in out Natural) is
  107.       function Skip_Char return Character;
  108.       --  Function to skip one character of wide character escape sequence
  109.  
  110.       function Skip_Char return Character is
  111.       begin
  112.          P := P + 1;
  113.          return S (P - 1);
  114.       end Skip_Char;
  115.  
  116.       function WC_Skip is new Char_Sequence_To_Wide_Char (Skip_Char);
  117.  
  118.       Discard : Wide_Character;
  119.  
  120.    begin
  121.       Discard := WC_Skip (Skip_Char, Wide_Character_Encoding_Method);
  122.    end Skip_Wide;
  123.  
  124. end Widechar;
  125.