OSDN Git Service

* scripts/encodings.pl: New file.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / gcj / convert / IOConverter.java
1 /* Copyright (C) 2000  Free Software Foundation
2
3    This file is part of libgcj.
4
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
7 details.  */
8
9 /* This is a base class that handles aliasing issues for
10    UnicodeToBytes to BytesToUnicode.  */
11
12 package gnu.gcj.convert;
13
14 import java.util.Hashtable;
15
16 public abstract class IOConverter
17 {
18   // Map encoding aliases to our canonical form.
19   static private Hashtable hash = new Hashtable ();
20
21   static
22   {
23     // Manually maintained aliases.  Note that the value must be our
24     // canonical name.
25     hash.put ("ISO-Latin-1", "8859_1");
26     // All aliases after this point are automatically generated by the
27     // `encodings.pl' script.  Run it to make any corrections.
28     hash.put ("ISO_8859-1:1987", "8859_1");
29     hash.put ("iso-ir-100", "8859_1");
30     hash.put ("ISO_8859-1", "8859_1");
31     hash.put ("ISO-8859-1", "8859_1");
32     hash.put ("latin1", "8859_1");
33     hash.put ("l1", "8859_1");
34     hash.put ("IBM819", "8859_1");
35     hash.put ("CP819", "8859_1");
36     hash.put ("csISOLatin1", "8859_1");
37     hash.put ("UTF-8", "UTF8");
38     hash.put ("Shift_JIS", "SJIS");
39     hash.put ("MS_Kanji", "SJIS");
40     hash.put ("csShiftJIS", "SJIS");
41     hash.put ("Extended_UNIX_Code_Packed_Format_for_Japanese", "EUCJIS");
42     hash.put ("csEUCPkdFmtJapanese", "EUCJIS");
43     hash.put ("EUC-JP", "EUCJIS");
44   }
45
46   // Turn an alias into the canonical form.
47   protected static final String canonicalize (String name)
48   {
49     String c = (String) hash.get (name);
50     return c == null ? name : c;
51   }
52 }