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-wchcnv.adb < prev    next >
Text File  |  1996-09-28  |  6KB  |  169 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       S Y S T E M . W C H _ C N V                        --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 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. --  This package contains generic subprograms used for converting between
  27. --  sequences of Character and Wide_Character. All access to wide character
  28. --  sequences is isolated in this unit.
  29.  
  30. with System.WCh_Con; use System.WCh_Con;
  31. with System.WCh_JIS; use System.WCh_JIS;
  32.  
  33. package body System.WCh_Cnv is
  34.  
  35.    --------------------------------
  36.    -- Char_Sequence_To_Wide_Char --
  37.    --------------------------------
  38.  
  39.    function Char_Sequence_To_Wide_Char
  40.      (C    : Character;
  41.       EM   : WC_Encoding_Method)
  42.       return Wide_Character
  43.    is
  44.       B1, B2 : Integer;
  45.  
  46.    begin
  47.       case EM is
  48.  
  49.          when WCEM_None =>
  50.             return Wide_Character'Val (Character'Pos (C));
  51.  
  52.          when WCEM_Hex =>
  53.             if C /= Ascii.ESC then
  54.                return Wide_Character'Val (Character'Pos (C));
  55.  
  56.             else
  57.                B1 := 0;
  58.  
  59.                for J in 1 .. 4 loop
  60.                   B2 := Character'Pos (In_Char);
  61.  
  62.                   if B2 in Character'Pos ('0') .. Character'Pos ('9') then
  63.                      B1 := B1 * 16 + B2 - Character'Pos ('0');
  64.  
  65.                   elsif B2 in Character'Pos ('A') .. Character'Pos ('F') then
  66.                      B1 := B1 * 16 + B2 - (Character'Pos ('A') - 10);
  67.  
  68.                   else
  69.                      raise Constraint_Error;
  70.                   end if;
  71.                end loop;
  72.  
  73.                return Wide_Character'Val (B1);
  74.             end if;
  75.  
  76.          when WCEM_Upper =>
  77.             if C > Ascii.DEL then
  78.                return
  79.                  Wide_Character'Val
  80.                    (256 * Character'Pos (C) + Character'Pos (In_Char));
  81.             else
  82.                return Wide_Character'Val (Character'Pos (C));
  83.             end if;
  84.  
  85.          when WCEM_Shift_JIS =>
  86.             if C > Ascii.DEL then
  87.                return Shift_JIS_To_JIS (C, In_Char);
  88.             else
  89.                return Wide_Character'Val (Character'Pos (C));
  90.             end if;
  91.  
  92.          when WCEM_EUC =>
  93.             if C > Ascii.DEL then
  94.                return EUC_To_JIS (C, In_Char);
  95.             else
  96.                return Wide_Character'Val (Character'Pos (C));
  97.             end if;
  98.       end case;
  99.    end Char_Sequence_To_Wide_Char;
  100.  
  101.    --------------------------------
  102.    -- Wide_Char_To_Char_Sequence --
  103.    --------------------------------
  104.  
  105.    procedure Wide_Char_To_Char_Sequence
  106.      (WC : Wide_Character;
  107.       EM : WC_Encoding_Method)
  108.    is
  109.       Val    : constant Natural := Wide_Character'Pos (WC);
  110.       Hexc   : constant array (0 .. 15) of Character := "0123456789ABCDEF";
  111.       C1, C2 : Character;
  112.  
  113.    begin
  114.       case EM is
  115.  
  116.          when WCEM_None =>
  117.             if Val < 256 then
  118.                Out_Char (Character'Val (Val));
  119.             else
  120.                raise Constraint_Error;
  121.             end if;
  122.  
  123.          when WCEM_Hex =>
  124.             if Val < 256 then
  125.                Out_Char (Character'Val (Val));
  126.  
  127.             else
  128.                Out_Char (Ascii.ESC);
  129.                Out_Char (Hexc (Val / (16**3)));
  130.                Out_Char (Hexc ((Val / (16**2)) mod 16));
  131.                Out_Char (Hexc ((Val / 16) mod 16));
  132.                Out_Char (Hexc (Val mod 16));
  133.             end if;
  134.  
  135.          when WCEM_Upper =>
  136.             if Val < 128 then
  137.                Out_Char (Character'Val (Val));
  138.  
  139.             elsif Val < 16#8000# then
  140.                raise Constraint_Error;
  141.  
  142.             else
  143.                Out_Char (Character'Val (Val / 256));
  144.                Out_Char (Character'Val (Val mod 256));
  145.             end if;
  146.                
  147.          when WCEM_Shift_JIS =>
  148.             if Val < 128 then
  149.                Out_Char (Character'Val (Val));
  150.             else
  151.                JIS_To_Shift_JIS (WC, C1, C2);
  152.                Out_Char (C1);
  153.                Out_Char (C2);
  154.             end if;
  155.  
  156.          when WCEM_EUC =>
  157.             if Val < 128 then
  158.                Out_Char (Character'Val (Val));
  159.             else
  160.                JIS_To_EUC (WC, C1, C2);
  161.                Out_Char (C1);
  162.                Out_Char (C2);
  163.             end if;
  164.  
  165.       end case;
  166.    end Wide_Char_To_Char_Sequence;
  167.  
  168. end System.WCh_Cnv;
  169.