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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       S Y S T E M . W C H _ S T W                        --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.7 $                              --
  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. with System.WCh_Con; use System.WCh_Con;
  27. with System.WCh_JIS; use System.WCh_JIS;
  28.  
  29. package body System.WCh_StW is
  30.  
  31.    ---------------------------
  32.    -- String_To_Wide_String --
  33.    ---------------------------
  34.  
  35.    function String_To_Wide_String
  36.      (S    : String;
  37.       EM   : WC_Encoding_Method)
  38.       return Wide_String
  39.    is
  40.       R  : Wide_String (1 .. S'Length);
  41.       RP : Natural;
  42.       SP : Natural;
  43.       C1 : Natural;
  44.       C2 : Natural;
  45.  
  46.       Use_Hex : constant Boolean := (EM = WCEM_Hex or else EM = WCEM_None);
  47.  
  48.       function Get_Hex (C : Character) return Natural;
  49.       --  Converts character from hex digit to value in range 0-15. The
  50.       --  input must be in 0-9, A-F (upper case), and no check is needed.
  51.  
  52.       function Get_Hex (C : Character) return Natural is
  53.       begin
  54.          if C in '0' .. '9' then
  55.             return Character'Pos (C) - Character'Pos ('0');
  56.          else
  57.             return Character'Pos (C) - Character'Pos ('A') + 10;
  58.          end if;
  59.       end Get_Hex;
  60.  
  61.    --  Start of processing for Wide_Image
  62.  
  63.    begin
  64.       SP := S'First;
  65.       RP := 0;
  66.  
  67.       while SP <= S'Last loop
  68.          RP := RP + 1;
  69.  
  70.          if (S (SP) = Ascii.ESC and then Use_Hex) then
  71.             R (RP) := Wide_Character'Val (
  72.                Get_Hex (S (SP + 4)) + 16 *
  73.                  (Get_Hex (S (SP + 3)) + 16 *
  74.                    (Get_Hex (S (SP + 2)) + 16 *
  75.                      (Get_Hex (S (SP + 1))))));
  76.             SP := SP + 5;
  77.  
  78.          --  One-byte ASCII character
  79.  
  80.          elsif S (SP) <= Ascii.DEL or else Use_Hex then
  81.             R (RP) := Wide_Character'Val (Character'Pos (S (SP)));
  82.             SP := SP + 1;
  83.  
  84.             --  Upper bit shift, internal code = external code
  85.  
  86.          elsif EM = WCEM_Upper then
  87.             R (RP) := Wide_Character'Val (
  88.                         Character'Pos (S (SP)) * 256 +
  89.                         Character'Pos (S (SP + 1)));
  90.             SP := SP + 2;
  91.  
  92.          --  Upper bit shift, EUC
  93.  
  94.          elsif EM = WCEM_EUC then
  95.             R (RP) := EUC_To_JIS (S (SP), S (SP + 1));
  96.             SP := SP + 2;
  97.  
  98.          --  Upper bit shift, shift-JIS
  99.  
  100.          else -- EM = WCEM_Shift_JIS
  101.             R (RP) := Shift_JIS_To_JIS (S (SP), S (SP + 1));
  102.             SP := SP + 2;
  103.          end if;
  104.       end loop;
  105.  
  106.       return R (1 .. RP);
  107.    end String_To_Wide_String;
  108.  
  109. end System.WCh_StW;
  110.