author | pliden |
Tue, 18 Sep 2018 22:46:35 +0200 | |
changeset 51794 | 4129f43607cb |
parent 50576 | 374bd919d8fe |
permissions | -rw-r--r-- |
13583 | 1 |
/* |
50576 | 2 |
* Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. |
13583 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
package build.tools.cldrconverter; |
|
27 |
||
28 |
import java.io.File; |
|
29 |
import java.io.IOException; |
|
30 |
import org.xml.sax.Attributes; |
|
31 |
import org.xml.sax.InputSource; |
|
32 |
import org.xml.sax.SAXException; |
|
33 |
||
34 |
/** |
|
35 |
* Handles parsing of files in Locale Data Markup Language for numberingSystems.xml |
|
36 |
* and produces a map that uses the keys and values of JRE locale data. |
|
37 |
*/ |
|
38 |
||
39 |
class NumberingSystemsParseHandler extends AbstractLDMLHandler<String> { |
|
40 |
||
41 |
NumberingSystemsParseHandler() { |
|
42 |
} |
|
43 |
||
44 |
@Override |
|
45 |
public InputSource resolveEntity(String publicID, String systemID) throws IOException, SAXException { |
|
46 |
// avoid HTTP traffic to unicode.org |
|
47 |
if (systemID.startsWith(CLDRConverter.SPPL_LDML_DTD_SYSTEM_ID)) { |
|
48 |
return new InputSource((new File(CLDRConverter.LOCAL_SPPL_LDML_DTD)).toURI().toString()); |
|
49 |
} |
|
50 |
return null; |
|
51 |
} |
|
52 |
||
53 |
@Override |
|
54 |
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { |
|
55 |
switch (qName) { |
|
56 |
case "numberingSystem": |
|
48251
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
57 |
numberingSystem: { |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
58 |
if ("numeric".equals(attributes.getValue("type"))) { |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
59 |
// eg, <numberingSystem id="latn" type="numeric" digits="0123456789"/> |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
60 |
String script = attributes.getValue("id"); |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
61 |
String digits = attributes.getValue("digits"); |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
62 |
|
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
63 |
if (Character.isSurrogate(digits.charAt(0))) { |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
64 |
// DecimalFormatSymbols doesn't support supplementary characters as digit zero. |
50576 | 65 |
// Replace supplementary digits with latin digits. This is a restriction till JDK-8204092 is resolved. |
66 |
digits = "0123456789"; |
|
67 |
put(script, digits); |
|
48251
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
68 |
break numberingSystem; |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
69 |
} |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
70 |
// in case digits are in the reversed order, reverse back the order. |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
71 |
if (digits.charAt(0) > digits.charAt(digits.length() - 1)) { |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
72 |
StringBuilder sb = new StringBuilder(digits); |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
73 |
digits = sb.reverse().toString(); |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
74 |
} |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
75 |
// Check if the order is sequential. |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
76 |
char c0 = digits.charAt(0); |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
77 |
for (int i = 1; i < digits.length(); i++) { |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
78 |
if (digits.charAt(i) != c0 + i) { |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
79 |
break numberingSystem; |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
80 |
} |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
81 |
} |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
82 |
|
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
83 |
// script/digits are acceptable. |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
84 |
put(script, digits); |
57148c79bd75
8176841: Additional Unicode Language-Tag Extensions
naoto
parents:
47216
diff
changeset
|
85 |
} |
13583 | 86 |
} |
87 |
pushIgnoredContainer(qName); |
|
88 |
break; |
|
89 |
case "version": |
|
90 |
case "generation": |
|
91 |
pushIgnoredContainer(qName); |
|
92 |
break; |
|
93 |
default: |
|
94 |
// treat anything else as a container |
|
95 |
pushContainer(qName, attributes); |
|
96 |
break; |
|
97 |
} |
|
98 |
} |
|
99 |
||
100 |
@Override |
|
101 |
public void endElement(String uri, String localName, String qName) throws SAXException { |
|
102 |
assert qName.equals(currentContainer.getqName()) : "current=" + currentContainer.getqName() + ", param=" + qName; |
|
103 |
currentContainer = currentContainer.getParent(); |
|
104 |
} |
|
105 |
} |