2001-08-31 00:20:40 +00:00
|
|
|
|
/**
|
|
|
|
|
*******************************************************************************
|
|
|
|
|
* Copyright (C) 1996-2001, International Business Machines Corporation and *
|
|
|
|
|
* others. All Rights Reserved. *
|
|
|
|
|
*******************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* $Source: /xsrl/Nsvn/icu/unicodetools/com/ibm/text/UCA/WriteCollationData.java,v $
|
2002-06-02 05:07:08 +00:00
|
|
|
|
* $Date: 2002/06/02 05:07:08 $
|
|
|
|
|
* $Revision: 1.14 $
|
2001-08-31 00:20:40 +00:00
|
|
|
|
*
|
|
|
|
|
*******************************************************************************
|
|
|
|
|
*/
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
package com.ibm.text.UCA;
|
|
|
|
|
|
|
|
|
|
import java.util.*;
|
2002-03-15 01:57:01 +00:00
|
|
|
|
import com.ibm.icu.text.UTF16;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
import com.ibm.icu.text.UnicodeSet;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
import java.io.*;
|
|
|
|
|
//import java.text.*;
|
|
|
|
|
//import com.ibm.text.unicode.*;
|
|
|
|
|
|
|
|
|
|
import java.text.RuleBasedCollator;
|
|
|
|
|
import java.text.CollationElementIterator;
|
|
|
|
|
import java.text.Collator;
|
|
|
|
|
|
|
|
|
|
import com.ibm.text.UCD.*;
|
|
|
|
|
import com.ibm.text.UCD.UCD_Types;
|
|
|
|
|
import com.ibm.text.utility.*;
|
2002-03-15 01:57:01 +00:00
|
|
|
|
import com.ibm.text.UCD.Normalizer;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
public class WriteCollationData implements UCD_Types {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
|
|
|
|
|
static final boolean DEBUG = false;
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
public static final String copyright =
|
|
|
|
|
"Copyright (C) 2000, IBM Corp. and others. All Rights Reserved.";
|
|
|
|
|
|
|
|
|
|
static final boolean EXCLUDE_UNSUPPORTED = true;
|
|
|
|
|
static final boolean GENERATED_NFC_MISMATCHES = true;
|
|
|
|
|
static final boolean DO_CHARTS = true;
|
|
|
|
|
|
|
|
|
|
|
2002-03-15 01:57:01 +00:00
|
|
|
|
static final String UNICODE_VERSION = UCD.latestVersion;
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
static UCA collator;
|
|
|
|
|
static char unique = '\u0000';
|
|
|
|
|
static TreeMap sortedD = new TreeMap();
|
|
|
|
|
static TreeMap sortedN = new TreeMap();
|
|
|
|
|
static HashMap backD = new HashMap();
|
|
|
|
|
static HashMap backN = new HashMap();
|
|
|
|
|
static TreeMap duplicates = new TreeMap();
|
|
|
|
|
static int duplicateCount = 0;
|
|
|
|
|
static PrintWriter log;
|
|
|
|
|
|
|
|
|
|
static UCD ucd;
|
|
|
|
|
|
2002-05-29 23:18:15 +00:00
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
static public void javatest() throws Exception {
|
|
|
|
|
checkJavaRules("& J , K / B & K , M", new String[] {"JA", "MA", "KA", "KC", "JC", "MC"});
|
|
|
|
|
checkJavaRules("& J , K / B , M", new String[] {"JA", "MA", "KA", "KC", "JC", "MC"});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static public void checkJavaRules(String rules, String[] tests) throws Exception {
|
|
|
|
|
System.out.println();
|
|
|
|
|
System.out.println("Rules: " + rules);
|
|
|
|
|
System.out.println();
|
|
|
|
|
|
|
|
|
|
// duplicate the effect of ICU 1.8 by grabbing the default rules and appending
|
|
|
|
|
|
|
|
|
|
RuleBasedCollator defaultCollator = (RuleBasedCollator) Collator.getInstance(Locale.US);
|
|
|
|
|
RuleBasedCollator col = new RuleBasedCollator(defaultCollator.getRules() + rules);
|
|
|
|
|
|
|
|
|
|
// check to make sure each pair is in order
|
|
|
|
|
|
|
|
|
|
int i = 1;
|
|
|
|
|
for (; i < tests.length; ++i) {
|
|
|
|
|
System.out.println(tests[i-1] + "\t=> " + showJavaCollationKey(col, tests[i-1]));
|
|
|
|
|
if (col.compare(tests[i-1], tests[i]) > 0) {
|
|
|
|
|
System.out.println("Failure: " + tests[i-1] + " > " + tests[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
System.out.println(tests[i-1] + "\t=> " + showJavaCollationKey(col, tests[i-1]));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static public String showJavaCollationKey(RuleBasedCollator col, String test) {
|
|
|
|
|
CollationElementIterator it = col.getCollationElementIterator(test);
|
|
|
|
|
String result = "[";
|
|
|
|
|
for (int i = 0; ; ++i) {
|
|
|
|
|
int ce = it.next();
|
|
|
|
|
if (ce == CollationElementIterator.NULLORDER) break;
|
|
|
|
|
if (i != 0) result += ", ";
|
|
|
|
|
result += Utility.hex(ce,8);
|
|
|
|
|
}
|
|
|
|
|
return result + "]";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//private static final String DIR = "c:\\Documents and Settings\\Davis\\My Documents\\UnicodeData\\Update 3.0.1\\";
|
|
|
|
|
//private static final String DIR31 = "c:\\Documents and Settings\\Davis\\My Documents\\UnicodeData\\Update 3.1\\";
|
|
|
|
|
|
|
|
|
|
static public void writeCaseExceptions() {
|
|
|
|
|
System.err.println("Writing Case Exceptions");
|
2002-03-15 01:57:01 +00:00
|
|
|
|
Normalizer NFKC = new Normalizer(Normalizer.NFKC, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
for (char a = 0; a < 0xFFFF; ++a) {
|
|
|
|
|
if (!ucd.isRepresented(a)) continue;
|
|
|
|
|
//if (0xA000 <= a && a <= 0xA48F) continue; // skip YI
|
|
|
|
|
|
|
|
|
|
String b = Case.fold(a);
|
|
|
|
|
String c = NFKC.normalize(b);
|
|
|
|
|
String d = Case.fold(c);
|
|
|
|
|
String e = NFKC.normalize(d);
|
|
|
|
|
if (!e.equals(c)) {
|
|
|
|
|
System.out.println(Utility.hex(a) + "; " + Utility.hex(d, " ") + " # " + ucd.getName(a));
|
|
|
|
|
/*
|
|
|
|
|
System.out.println(Utility.hex(a)
|
|
|
|
|
+ ", " + Utility.hex(b, " ")
|
|
|
|
|
+ ", " + Utility.hex(c, " ")
|
|
|
|
|
+ ", " + Utility.hex(d, " ")
|
|
|
|
|
+ ", " + Utility.hex(e, " "));
|
|
|
|
|
|
|
|
|
|
System.out.println(ucd.getName(a)
|
|
|
|
|
+ ", " + ucd.getName(b)
|
|
|
|
|
+ ", " + ucd.getName(c)
|
|
|
|
|
+ ", " + ucd.getName(d)
|
|
|
|
|
+ ", " + ucd.getName(e));
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
String f = Case.fold(e);
|
|
|
|
|
String g = NFKC.normalize(f);
|
|
|
|
|
if (!f.equals(d) || !g.equals(e)) System.out.println("!!!!!!SKY IS FALLING!!!!!!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static public void writeCaseFolding() throws IOException {
|
|
|
|
|
System.err.println("Writing Javascript data");
|
2002-03-15 01:57:01 +00:00
|
|
|
|
BufferedReader in = Utility.openUnicodeFile("CaseFolding", UNICODE_VERSION, true);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
// new BufferedReader(new FileReader(DIR31 + "CaseFolding-3.d3.alpha.txt"), 64*1024);
|
|
|
|
|
log = new PrintWriter(new FileOutputStream("CaseFolding_data.js"));
|
|
|
|
|
log.println("var CF = new Object();");
|
|
|
|
|
int count = 0;
|
|
|
|
|
while (true) {
|
|
|
|
|
String line = in.readLine();
|
|
|
|
|
if (line == null) break;
|
|
|
|
|
int comment = line.indexOf('#'); // strip comments
|
|
|
|
|
if (comment != -1) line = line.substring(0,comment);
|
|
|
|
|
if (line.length() == 0) continue;
|
|
|
|
|
int semi1 = line.indexOf(';');
|
|
|
|
|
int semi2 = line.indexOf(';', semi1+1);
|
|
|
|
|
int semi3 = line.indexOf(';', semi2+1);
|
|
|
|
|
char type = line.substring(semi1+1,semi2).trim().charAt(0);
|
|
|
|
|
if (type == 'C' || type == 'F' || type == 'T') {
|
|
|
|
|
String code = line.substring(0,semi1).trim();
|
|
|
|
|
String result = " " + line.substring(semi2+1,semi3).trim();
|
|
|
|
|
result = replace(result, ' ', "\\u");
|
|
|
|
|
log.println("\t CF[0x" + code + "]='" + result + "';");
|
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
log.println("// " + count + " case foldings total");
|
|
|
|
|
|
|
|
|
|
in.close();
|
|
|
|
|
log.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static public String replace(String source, char toBeReplaced, String toReplace) {
|
|
|
|
|
StringBuffer result = new StringBuffer();
|
|
|
|
|
for (int i = 0; i < source.length(); ++i) {
|
|
|
|
|
char c = source.charAt(i);
|
|
|
|
|
if (c == toBeReplaced) {
|
|
|
|
|
result.append(toReplace);
|
|
|
|
|
} else {
|
|
|
|
|
result.append(c);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static public void writeJavascriptInfo() throws IOException {
|
|
|
|
|
System.err.println("Writing Javascript data");
|
2002-03-15 01:57:01 +00:00
|
|
|
|
Normalizer normKD = new Normalizer(Normalizer.NFKD, UNICODE_VERSION);
|
|
|
|
|
Normalizer normD = new Normalizer(Normalizer.NFD, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
log = new PrintWriter(new FileOutputStream("Normalization_data.js"));
|
|
|
|
|
|
|
|
|
|
int count = 0;
|
|
|
|
|
int datasize = 0;
|
|
|
|
|
int max = 0;
|
|
|
|
|
int over7 = 0;
|
|
|
|
|
log.println("var KD = new Object(); // NFKD compatibility decomposition mappings");
|
|
|
|
|
log.println("// NOTE: Hangul is done in code!");
|
|
|
|
|
CompactShortArray csa = new CompactShortArray((short)0);
|
|
|
|
|
|
|
|
|
|
for (char c = 0; c < 0xFFFF; ++c) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
if ((c & 0xFFF) == 0) System.err.println(Utility.hex(c));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (0xAC00 <= c && c <= 0xD7A3) continue;
|
2002-05-31 01:41:04 +00:00
|
|
|
|
if (!normKD.isNormalized(c)) {
|
2001-08-30 20:50:18 +00:00
|
|
|
|
++count;
|
|
|
|
|
String decomp = normKD.normalize(c);
|
|
|
|
|
datasize += decomp.length();
|
|
|
|
|
if (max < decomp.length()) max = decomp.length();
|
|
|
|
|
if (decomp.length() > 7) ++over7;
|
|
|
|
|
csa.setElementAt(c, (short)count);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
log.println("\t KD[0x" + Utility.hex(c) + "]='\\u" + Utility.hex(decomp,"\\u") + "';");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
csa.compact();
|
|
|
|
|
log.println("// " + count + " NFKD mappings total");
|
|
|
|
|
log.println("// " + datasize + " total characters of results");
|
|
|
|
|
log.println("// " + max + " string length, maximum");
|
|
|
|
|
log.println("// " + over7 + " result strings with length > 7");
|
|
|
|
|
log.println("// " + csa.storage() + " trie length (doesn't count string size)");
|
|
|
|
|
log.println();
|
|
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
|
datasize = 0;
|
|
|
|
|
max = 0;
|
|
|
|
|
log.println("var D = new Object(); // NFD canonical decomposition mappings");
|
|
|
|
|
log.println("// NOTE: Hangul is done in code!");
|
|
|
|
|
csa = new CompactShortArray((short)0);
|
|
|
|
|
|
|
|
|
|
for (char c = 0; c < 0xFFFF; ++c) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
if ((c & 0xFFF) == 0) System.err.println(Utility.hex(c));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (0xAC00 <= c && c <= 0xD7A3) continue;
|
2002-05-31 01:41:04 +00:00
|
|
|
|
if (!normD.isNormalized(c)) {
|
2001-08-30 20:50:18 +00:00
|
|
|
|
++count;
|
|
|
|
|
String decomp = normD.normalize(c);
|
|
|
|
|
datasize += decomp.length();
|
|
|
|
|
if (max < decomp.length()) max = decomp.length();
|
|
|
|
|
csa.setElementAt(c, (short)count);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
log.println("\t D[0x" + Utility.hex(c) + "]='\\u" + Utility.hex(decomp,"\\u") + "';");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
csa.compact();
|
|
|
|
|
|
|
|
|
|
log.println("// " + count + " NFD mappings total");
|
|
|
|
|
log.println("// " + datasize + " total characters of results");
|
|
|
|
|
log.println("// " + max + " string length, maximum");
|
|
|
|
|
log.println("// " + csa.storage() + " trie length (doesn't count string size)");
|
|
|
|
|
log.println();
|
|
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
|
datasize = 0;
|
|
|
|
|
log.println("var CC = new Object(); // canonical class mappings");
|
|
|
|
|
CompactByteArray cba = new CompactByteArray();
|
|
|
|
|
|
|
|
|
|
for (char c = 0; c < 0xFFFF; ++c) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
if ((c & 0xFFF) == 0) System.err.println(Utility.hex(c));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int canClass = normKD.getCanonicalClass(c);
|
|
|
|
|
if (canClass != 0) {
|
|
|
|
|
++count;
|
|
|
|
|
|
2001-10-31 00:02:54 +00:00
|
|
|
|
log.println("\t CC[0x" + Utility.hex(c) + "]=" + canClass + ";");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cba.compact();
|
|
|
|
|
log.println("// " + count + " canonical class mappings total");
|
|
|
|
|
log.println("// " + cba.storage() + " trie length");
|
|
|
|
|
log.println();
|
|
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
|
datasize = 0;
|
|
|
|
|
log.println("var C = new Object(); // composition mappings");
|
|
|
|
|
log.println("// NOTE: Hangul is done in code!");
|
|
|
|
|
|
|
|
|
|
System.out.println("WARNING -- COMPOSITIONS UNFINISHED!!");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
IntHashtable.IntEnumeration enum = normKD.getComposition();
|
|
|
|
|
while (enum.hasNext()) {
|
|
|
|
|
int key = enum.next();
|
|
|
|
|
char val = (char) enum.value();
|
|
|
|
|
if (0xAC00 <= val && val <= 0xD7A3) continue;
|
|
|
|
|
++count;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
log.println("\tC[0x" + Utility.hex(key) + "]=0x" + Utility.hex(val) + ";");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
log.println("// " + count + " composition mappings total");
|
|
|
|
|
log.println();
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
log.close();
|
|
|
|
|
System.err.println("Done writing Javascript data");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-09-19 23:33:52 +00:00
|
|
|
|
static void writeConformance(String filename, byte option, boolean shortPrint) throws IOException {
|
|
|
|
|
UCD ucd30 = UCD.make("3.0.0");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
PrintWriter log = Utility.openPrintWriter(filename + (shortPrint ? "_SHORT" : "") + ".txt", true, false);
|
2001-09-19 23:33:52 +00:00
|
|
|
|
if (!shortPrint) log.write('\uFEFF');
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
System.out.println("Sorting");
|
2001-09-19 23:33:52 +00:00
|
|
|
|
int counter = 0;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i <= 0x10FFFF; ++i) {
|
2001-09-19 23:33:52 +00:00
|
|
|
|
Utility.dot(counter++);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (!ucd.isRepresented(i)) continue;
|
|
|
|
|
addStringX(UTF32.valueOf32(i), option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Hashtable multiTable = collator.getContracting();
|
|
|
|
|
Enumeration enum = multiTable.keys();
|
|
|
|
|
while (enum.hasMoreElements()) {
|
2001-09-19 23:33:52 +00:00
|
|
|
|
Utility.dot(counter++);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
addStringX((String)enum.nextElement(), option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < extraConformanceTests.length; ++i) { // put in sample non-characters
|
2001-09-19 23:33:52 +00:00
|
|
|
|
Utility.dot(counter++);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
String s = UTF32.valueOf32(extraConformanceTests[i]);
|
2001-09-19 23:33:52 +00:00
|
|
|
|
Utility.fixDot();
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println("Adding: " + Utility.hex(s));
|
|
|
|
|
addStringX(s, option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; ; ++i) { // add first unallocated character
|
|
|
|
|
if (!ucd.isAssigned(i)) {
|
|
|
|
|
String s = UTF32.valueOf32(i);
|
2001-09-19 23:33:52 +00:00
|
|
|
|
Utility.fixDot();
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println("Adding: " + Utility.hex(s));
|
|
|
|
|
addStringX(s, option);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < extraConformanceRanges.length; ++i) {
|
2001-09-19 23:33:52 +00:00
|
|
|
|
Utility.dot(counter++);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int start = extraConformanceRanges[i][0];
|
|
|
|
|
int end = extraConformanceRanges[i][1];
|
|
|
|
|
int increment = ((end - start + 1) / 303) + 1;
|
|
|
|
|
//System.out.println("Range: " + start + ", " + end + ", " + increment);
|
|
|
|
|
addStringX(start, option);
|
|
|
|
|
for (int j = start+1; j < end-1; j += increment) {
|
|
|
|
|
addStringX(j, option);
|
|
|
|
|
addStringX(j+1, option);
|
|
|
|
|
}
|
|
|
|
|
addStringX(end-1, option);
|
|
|
|
|
addStringX(end, option);
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-19 23:33:52 +00:00
|
|
|
|
Utility.fixDot();
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println("Total: " + sortedD.size());
|
|
|
|
|
Iterator it;
|
|
|
|
|
|
|
|
|
|
System.out.println("Writing");
|
|
|
|
|
//String version = collator.getVersion();
|
|
|
|
|
|
|
|
|
|
it = sortedD.keySet().iterator();
|
|
|
|
|
|
|
|
|
|
String lastKey = "";
|
|
|
|
|
|
|
|
|
|
while (it.hasNext()) {
|
2001-09-19 23:33:52 +00:00
|
|
|
|
Utility.dot(counter);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
String key = (String) it.next();
|
|
|
|
|
String source = (String) sortedD.get(key);
|
|
|
|
|
int fluff = key.charAt(key.length() - 1);
|
|
|
|
|
key = key.substring(0, key.length()- fluff - 2);
|
|
|
|
|
//String status = key.equals(lastKey) ? "*" : "";
|
|
|
|
|
//lastKey = key;
|
|
|
|
|
//log.println(source);
|
|
|
|
|
String clipped = source.substring(0, source.length()-1);
|
|
|
|
|
String stren = source.substring(source.length()-1);
|
2001-09-19 23:33:52 +00:00
|
|
|
|
if (!shortPrint) {
|
2001-08-30 20:50:18 +00:00
|
|
|
|
log.print(Utility.hex(source));
|
|
|
|
|
log.print(
|
|
|
|
|
";\t#" + ucd.getName(clipped)+ "\t" + UCA.toString(key));
|
2001-09-19 23:33:52 +00:00
|
|
|
|
} else {
|
|
|
|
|
log.print(source + "\t" + Utility.hex(clipped));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
log.println();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log.close();
|
|
|
|
|
sortedD.clear();
|
|
|
|
|
System.out.println("Done");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void addStringX(int x, byte option) {
|
|
|
|
|
addStringX(UTF32.valueOf32(x), option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void addStringX(String s, byte option) {
|
|
|
|
|
addStringY(s + 'a', option);
|
|
|
|
|
addStringY(s + 'A', option);
|
|
|
|
|
addStringY(s + '<27>', option);
|
|
|
|
|
addStringY(s + 'b', option);
|
|
|
|
|
addStringY(s + '\u0325', option);
|
|
|
|
|
addStringY(s + '!', option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char counter;
|
|
|
|
|
|
|
|
|
|
static void addStringY(String s, byte option) {
|
|
|
|
|
String cpo = UCA.codePointOrder(s);
|
|
|
|
|
String colDbase = collator.getSortKey(s, option, true) + "\u0000" + cpo + (char)cpo.length();
|
|
|
|
|
sortedD.put(colDbase, s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check that the primaries are the same as the compatibility decomposition.
|
|
|
|
|
*/
|
|
|
|
|
static void checkBadDecomps(int strength, boolean decomposition) {
|
|
|
|
|
int oldStrength = collator.getStrength();
|
|
|
|
|
collator.setStrength(strength);
|
2002-03-15 01:57:01 +00:00
|
|
|
|
Normalizer nfkd = new Normalizer(Normalizer.NFKD, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (strength == 1) {
|
|
|
|
|
log.println("<h2>3. Primaries Incompatible with Decompositions</h2><table border='1'>");
|
|
|
|
|
} else {
|
|
|
|
|
log.println("<h2>4. Secondaries Incompatible with Decompositions</h2><table border='1'>");
|
|
|
|
|
}
|
|
|
|
|
log.println("<tr><th>Code</td><th>Sort Key</th><th>Decomposed Sort Key</th><th>Name</th></tr>");
|
|
|
|
|
for (char ch = 0; ch < 0xFFFF; ++ch) {
|
2002-05-31 01:41:04 +00:00
|
|
|
|
if (nfkd.isNormalized(ch)) continue;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (ch > 0xAC00 && ch < 0xD7A3) continue; // skip most of Hangul
|
|
|
|
|
String sortKey = collator.getSortKey(String.valueOf(ch), UCA.NON_IGNORABLE, decomposition);
|
|
|
|
|
String decompSortKey = collator.getSortKey(nfkd.normalize(ch), UCA.NON_IGNORABLE, decomposition);
|
|
|
|
|
if (false && strength == 2) {
|
|
|
|
|
sortKey = remove(sortKey, '\u0020');
|
|
|
|
|
decompSortKey = remove(decompSortKey, '\u0020');
|
|
|
|
|
}
|
|
|
|
|
if (!sortKey.equals(decompSortKey)) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
log.println("<tr><td>" + Utility.hex(ch)
|
2001-08-30 20:50:18 +00:00
|
|
|
|
+ "</td><td>" + UCA.toString(sortKey)
|
|
|
|
|
+ "</td><td>" + UCA.toString(decompSortKey)
|
|
|
|
|
+ "</td><td>" + ucd.getName(ch)
|
|
|
|
|
+ "</td></tr>"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
log.println("</table>");
|
|
|
|
|
collator.setStrength(oldStrength);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static final String remove (String s, char ch) {
|
|
|
|
|
StringBuffer buf = new StringBuffer();
|
|
|
|
|
for (int i = 0; i < s.length(); ++i) {
|
|
|
|
|
char c = s.charAt(i);
|
|
|
|
|
if (c == ch) continue;
|
|
|
|
|
buf.append(c);
|
|
|
|
|
}
|
|
|
|
|
return buf.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
log = new PrintWriter(new FileOutputStream("Frequencies.html"));
|
|
|
|
|
log.println("<html><body>");
|
|
|
|
|
MessageFormat mf = new MessageFormat("<tr><td><tt>{0}</tt></td><td><tt>{1}</tt></td><td align='right'><tt>{2}</tt></td><td align='right'><tt>{3}</tt></td></tr>");
|
|
|
|
|
MessageFormat mf2 = new MessageFormat("<tr><td><tt>{0}</tt></td><td align='right'><tt>{1}</tt></td></tr>");
|
|
|
|
|
String header = mf.format(new String[] {"Start", "End", "Count", "Subtotal"});
|
|
|
|
|
int count;
|
|
|
|
|
|
|
|
|
|
log.println("<h2>Writing Used Weights</h2>");
|
|
|
|
|
log.println("<p>Primaries</p><table border='1'>" + mf.format(new String[] {"Start", "End", "Count", "Subtotal"}));
|
|
|
|
|
count = collator.writeUsedWeights(log, 1, mf);
|
|
|
|
|
log.println(MessageFormat.format("<tr><td>Count:</td><td>{0}</td></tr>", new Object[] {new Integer(count)}));
|
|
|
|
|
log.println("</table>");
|
|
|
|
|
|
|
|
|
|
log.println("<p>Secondaries</p><table border='1'>" + mf2.format(new String[] {"Code", "Frequency"}));
|
|
|
|
|
count = collator.writeUsedWeights(log, 2, mf2);
|
|
|
|
|
log.println(MessageFormat.format("<tr><td>Count:</td><td>{0}</td></tr>", new Object[] {new Integer(count)}));
|
|
|
|
|
log.println("</table>");
|
|
|
|
|
|
|
|
|
|
log.println("<p>Tertiaries</p><table border='1'>" + mf2.format(new String[] {"Code", "Frequency"}));
|
|
|
|
|
count = collator.writeUsedWeights(log, 3, mf2);
|
|
|
|
|
log.println(MessageFormat.format("<tr><td>Count:</td><td>{0}</td></tr>", new Object[] {new Integer(count)}));
|
|
|
|
|
log.println("</table>");
|
|
|
|
|
log.println("</body></html>");
|
|
|
|
|
log.close();
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static int[] compactSecondary;
|
|
|
|
|
|
|
|
|
|
/*static void checkEquivalents() {
|
|
|
|
|
Normalizer nfkd = new Normalizer(Normalizer.NFKC);
|
|
|
|
|
Normalizer nfd = new Normalizer(Normalizer.NFKD);
|
|
|
|
|
for (char c = 0; c < 0xFFFF; ++c) {
|
|
|
|
|
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
static void testCompatibilityCharacters() throws IOException {
|
|
|
|
|
log = Utility.openPrintWriter("UCA_CompatComparison.txt");
|
|
|
|
|
|
|
|
|
|
int[] kenCes = new int[50];
|
|
|
|
|
int[] markCes = new int[50];
|
|
|
|
|
int[] kenComp = new int[50];
|
|
|
|
|
Map forLater = new TreeMap();
|
|
|
|
|
int count = 0;
|
|
|
|
|
int typeLimit = UCD_Types.CANONICAL;
|
|
|
|
|
boolean decompType = false;
|
|
|
|
|
if (false) {
|
|
|
|
|
typeLimit = UCD_Types.COMPATIBILITY;
|
|
|
|
|
decompType = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// first find all the characters that cannot be generated "correctly"
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 0xFFFF; ++i) {
|
|
|
|
|
int type = ucd.getDecompositionType(i);
|
|
|
|
|
if (type < typeLimit) continue;
|
|
|
|
|
int ceType = collator.getCEType((char)i);
|
|
|
|
|
if (ceType >= collator.FIXED_CE) continue;
|
|
|
|
|
// fix type
|
|
|
|
|
type = getDecompType(i);
|
|
|
|
|
|
|
|
|
|
String s = String.valueOf((char)i);
|
|
|
|
|
int kenLen = collator.getCEs(s, decompType, kenCes); // true
|
|
|
|
|
int markLen = fixCompatibilityCE(s, true, markCes, false);
|
|
|
|
|
|
|
|
|
|
if (!arraysMatch(kenCes, kenLen, markCes, markLen)) {
|
|
|
|
|
int kenCLen = fixCompatibilityCE(s, true, kenComp, true);
|
|
|
|
|
String comp = collator.ceToString(kenComp, kenCLen);
|
|
|
|
|
|
|
|
|
|
if (arraysMatch(kenCes, kenLen, kenComp, kenCLen)) {
|
|
|
|
|
forLater.put((char)(COMPRESSED | type) + s, comp);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (type == ucd.CANONICAL && multipleZeroPrimaries(markCes, markLen)) {
|
|
|
|
|
forLater.put((char)(MULTIPLES | type) + s, comp);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
forLater.put((char)type + s, comp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Iterator it = forLater.keySet().iterator();
|
|
|
|
|
byte oldType = (byte)0xFF; // anything unique
|
|
|
|
|
int caseCount = 0;
|
|
|
|
|
log.println("Generated: " + new Date());
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
String key = (String) it.next();
|
|
|
|
|
byte type = (byte)key.charAt(0);
|
|
|
|
|
if (type != oldType) {
|
|
|
|
|
oldType = type;
|
|
|
|
|
log.println("===============================================================");
|
|
|
|
|
log.print("CASE " + (caseCount++) + ": ");
|
|
|
|
|
byte rType = (byte)(type & OTHER_MASK);
|
|
|
|
|
log.println(" Decomposition Type = " + ucd.getDecompositionTypeID_fromIndex(rType));
|
|
|
|
|
if ((type & COMPRESSED) != 0) {
|
|
|
|
|
log.println(" Successfully Compressed a la Ken");
|
|
|
|
|
log.println(" [XXXX.0020.YYYY][0000.ZZZZ.0002] => [XXXX.ZZZZ.YYYY]");
|
|
|
|
|
} else if ((type & MULTIPLES) != 0) {
|
|
|
|
|
log.println(" MULTIPLE ACCENTS");
|
|
|
|
|
}
|
|
|
|
|
log.println("===============================================================");
|
|
|
|
|
log.println();
|
|
|
|
|
}
|
|
|
|
|
String s = key.substring(1);
|
|
|
|
|
String comp = (String)forLater.get(key);
|
|
|
|
|
|
|
|
|
|
int kenLen = collator.getCEs(s, decompType, kenCes);
|
|
|
|
|
String kenStr = collator.ceToString(kenCes, kenLen);
|
|
|
|
|
|
|
|
|
|
int markLen = fixCompatibilityCE(s, true, markCes, false);
|
|
|
|
|
String markStr = collator.ceToString(markCes, markLen);
|
|
|
|
|
|
|
|
|
|
if ((type & COMPRESSED) != 0) {
|
|
|
|
|
log.println("COMPRESSED #" + (++count) + ": " + ucd.getCodeAndName(s));
|
|
|
|
|
log.println(" : " + comp);
|
|
|
|
|
} else {
|
|
|
|
|
log.println("DIFFERENCE #" + (++count) + ": " + ucd.getCodeAndName(s));
|
|
|
|
|
log.println("generated : " + markStr);
|
|
|
|
|
if (!markStr.equals(comp)) {
|
|
|
|
|
log.println("compressed: " + comp);
|
|
|
|
|
}
|
|
|
|
|
log.println("Ken's : " + kenStr);
|
|
|
|
|
String nfkd = NFKD.normalize(s);
|
|
|
|
|
log.println("NFKD : " + ucd.getCodeAndName(nfkd));
|
|
|
|
|
String nfd = NFD.normalize(s);
|
|
|
|
|
if (!nfd.equals(nfkd)) {
|
|
|
|
|
log.println("NFD : " + ucd.getCodeAndName(nfd));
|
|
|
|
|
}
|
|
|
|
|
//kenCLen = collator.getCEs(decomp, true, kenComp);
|
|
|
|
|
//log.println("decomp ce: " + collator.ceToString(kenComp, kenCLen));
|
|
|
|
|
}
|
|
|
|
|
log.println();
|
|
|
|
|
}
|
|
|
|
|
log.println("===============================================================");
|
|
|
|
|
log.println();
|
|
|
|
|
log.println("Compressible Secondaries");
|
|
|
|
|
for (int i = 0; i < compressSet.size(); ++i) {
|
|
|
|
|
if ((i & 0xF) == 0) log.println();
|
|
|
|
|
if (!compressSet.get(i)) log.print("- ");
|
|
|
|
|
else log.print(Utility.hex(i, 3) + ", ");
|
|
|
|
|
}
|
|
|
|
|
log.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static final byte getDecompType(int cp) {
|
|
|
|
|
byte result = ucd.getDecompositionType(cp);
|
|
|
|
|
if (result == ucd.CANONICAL) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
String d = NFD.normalize(cp); // TODO
|
|
|
|
|
int cp1;
|
|
|
|
|
for (int i = 0; i < d.length(); i += UTF16.getCharCount(cp1)) {
|
|
|
|
|
cp1 = UTF16.charAt(d, i);
|
|
|
|
|
byte t = ucd.getDecompositionType(cp1);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (t > ucd.CANONICAL) return t;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static final boolean multipleZeroPrimaries(int[] a, int aLen) {
|
|
|
|
|
int count = 0;
|
|
|
|
|
for (int i = 0; i < aLen; ++i) {
|
|
|
|
|
if (UCA.getPrimary(a[i]) == 0) {
|
|
|
|
|
if (count == 1) return true;
|
|
|
|
|
count++;
|
|
|
|
|
} else {
|
|
|
|
|
count = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static final byte MULTIPLES = 0x20, COMPRESSED = 0x40, OTHER_MASK = 0x1F;
|
|
|
|
|
static final BitSet compressSet = new BitSet();
|
|
|
|
|
|
|
|
|
|
static int kenCompress(int[] markCes, int markLen) {
|
|
|
|
|
if (markLen == 0) return 0;
|
|
|
|
|
int out = 1;
|
|
|
|
|
for (int i = 1; i < markLen; ++i) {
|
|
|
|
|
int next = markCes[i];
|
|
|
|
|
int prev = markCes[out-1];
|
|
|
|
|
if (UCA.getPrimary(next) == 0
|
|
|
|
|
&& UCA.getSecondary(prev) == 0x20
|
|
|
|
|
&& UCA.getTertiary(next) == 0x2) {
|
|
|
|
|
markCes[out-1] = UCA.makeKey(
|
|
|
|
|
UCA.getPrimary(prev),
|
|
|
|
|
UCA.getSecondary(next),
|
|
|
|
|
UCA.getTertiary(prev));
|
|
|
|
|
compressSet.set(UCA.getSecondary(next));
|
|
|
|
|
} else {
|
|
|
|
|
markCes[out++] = next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static boolean arraysMatch(int[] a, int aLen, int[] b, int bLen) {
|
|
|
|
|
if (aLen != bLen) return false;
|
|
|
|
|
for (int i = 0; i < aLen; ++i) {
|
|
|
|
|
if (a[i] != b[i]) return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int[] markCes = new int[50];
|
|
|
|
|
|
|
|
|
|
static int fixCompatibilityCE(String s, boolean decompose, int[] output, boolean compress) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
byte type = getDecompType(UTF16.charAt(s, 0));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
char ch = s.charAt(0);
|
|
|
|
|
|
|
|
|
|
String decomp = NFKD.normalize(s);
|
|
|
|
|
int len = 0;
|
|
|
|
|
int markLen = collator.getCEs(decomp, true, markCes);
|
|
|
|
|
if (compress) markLen = kenCompress(markCes, markLen);
|
|
|
|
|
|
|
|
|
|
//for (int j = 0; j < decomp.length(); ++j) {
|
|
|
|
|
for (int k = 0; k < markLen; ++k) {
|
|
|
|
|
int t = UCA.getTertiary(markCes[k]);
|
|
|
|
|
t = CEList.remap(k, type, t);
|
|
|
|
|
/*
|
|
|
|
|
if (type != CANONICAL) {
|
|
|
|
|
if (0x3041 <= ch && ch <= 0x3094) t = 0xE; // hiragana
|
|
|
|
|
else if (0x30A1 <= ch && ch <= 0x30FA) t = 0x11; // katakana
|
|
|
|
|
}
|
|
|
|
|
switch (type) {
|
|
|
|
|
case COMPATIBILITY: t = (t == 8) ? 0xA : 4; break;
|
|
|
|
|
case COMPAT_FONT: t = (t == 8) ? 0xB : 5; break;
|
|
|
|
|
case COMPAT_NOBREAK: t = 0x1B; break;
|
|
|
|
|
case COMPAT_INITIAL: t = 0x17; break;
|
|
|
|
|
case COMPAT_MEDIAL: t = 0x18; break;
|
|
|
|
|
case COMPAT_FINAL: t = 0x19; break;
|
|
|
|
|
case COMPAT_ISOLATED: t = 0x1A; break;
|
|
|
|
|
case COMPAT_CIRCLE: t = (t == 0x11) ? 0x13 : (t == 8) ? 0xC : 6; break;
|
|
|
|
|
case COMPAT_SUPER: t = 0x14; break;
|
|
|
|
|
case COMPAT_SUB: t = 0x15; break;
|
|
|
|
|
case COMPAT_VERTICAL: t = 0x16; break;
|
|
|
|
|
case COMPAT_WIDE: t= (t == 8) ? 9 : 3; break;
|
|
|
|
|
case COMPAT_NARROW: t = (0xFF67 <= ch && ch <= 0xFF6F) ? 0x10 : 0x12; break;
|
|
|
|
|
case COMPAT_SMALL: t = (t == 0xE) ? 0xE : 0xF; break;
|
|
|
|
|
case COMPAT_SQUARE: t = (t == 8) ? 0x1D : 0x1C; break;
|
|
|
|
|
case COMPAT_FRACTION: t = 0x1E; break;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
output[len++] = UCA.makeKey(
|
|
|
|
|
UCA.getPrimary(markCes[k]),
|
|
|
|
|
UCA.getSecondary(markCes[k]),
|
|
|
|
|
t);
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-25 20:35:42 +00:00
|
|
|
|
static void writeNonspacingDifference() throws IOException {
|
|
|
|
|
PrintWriter diLog = new PrintWriter(
|
|
|
|
|
new BufferedWriter(
|
|
|
|
|
new OutputStreamWriter(
|
|
|
|
|
new FileOutputStream(GEN_DIR + "UCA_Nonspacing.txt"),
|
|
|
|
|
"UTF8"),
|
|
|
|
|
32*1024));
|
|
|
|
|
diLog.write('\uFEFF');
|
|
|
|
|
|
2002-03-15 01:57:01 +00:00
|
|
|
|
Normalizer nfd = new Normalizer(Normalizer.NFD, UNICODE_VERSION);
|
2001-10-25 20:35:42 +00:00
|
|
|
|
|
|
|
|
|
Set sorted = new TreeSet();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 0x10FFFF; ++i) {
|
|
|
|
|
Utility.dot(i);
|
|
|
|
|
if (!ucd.isRepresented(i)) continue;
|
|
|
|
|
byte cat = ucd.getCategory(i);
|
|
|
|
|
boolean isNonSpacing = cat == Mn || cat == Me;
|
|
|
|
|
CEList celist = collator.getCEList(UTF32.valueOf32(i), true);
|
|
|
|
|
boolean isPrimaryIgnorable = true;
|
|
|
|
|
for (int j = 0; j < celist.length(); ++j) {
|
|
|
|
|
int ce = celist.at(j);
|
|
|
|
|
int primary = collator.getPrimary(ce);
|
|
|
|
|
if (primary != 0) {
|
|
|
|
|
isPrimaryIgnorable = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isNonSpacing != isPrimaryIgnorable) {
|
|
|
|
|
sorted.add(ucd.getCategoryID(i)
|
|
|
|
|
+ "\t" + celist
|
|
|
|
|
+ "\t" + ucd.getCodeAndName(i));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utility.print(diLog, sorted, "\r\n");
|
|
|
|
|
|
|
|
|
|
diLog.close();
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
static void writeContractions() throws IOException {
|
|
|
|
|
PrintWriter diLog = new PrintWriter(
|
|
|
|
|
new BufferedWriter(
|
|
|
|
|
new OutputStreamWriter(
|
|
|
|
|
new FileOutputStream(GEN_DIR + "UCA_Contractions.txt"),
|
|
|
|
|
"UTF8"),
|
|
|
|
|
32*1024));
|
|
|
|
|
diLog.write('\uFEFF');
|
|
|
|
|
|
2002-03-15 01:57:01 +00:00
|
|
|
|
Normalizer nfd = new Normalizer(Normalizer.NFD, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
int[] ces = new int[50];
|
|
|
|
|
|
2001-09-19 23:33:52 +00:00
|
|
|
|
UCA.UCAContents cc = collator.getContents(UCA.FIXED_CE, nfd);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int[] lenArray = new int[1];
|
|
|
|
|
|
|
|
|
|
diLog.println("# Contractions");
|
|
|
|
|
diLog.println("# Generated " + new Date());
|
|
|
|
|
while (true) {
|
|
|
|
|
String s = cc.next(ces, lenArray);
|
|
|
|
|
if (s == null) break;
|
|
|
|
|
int len = lenArray[0];
|
|
|
|
|
|
|
|
|
|
if (s.length() > 1) {
|
|
|
|
|
diLog.println(Utility.hex(s, " ")
|
|
|
|
|
+ ";\t #" + collator.ceToString(ces, len)
|
|
|
|
|
+ " ( " + s + " )"
|
|
|
|
|
+ " " + ucd.getName(s));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
diLog.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void checkDisjointIgnorables() throws IOException {
|
|
|
|
|
PrintWriter diLog = new PrintWriter(
|
|
|
|
|
new BufferedWriter(
|
|
|
|
|
new OutputStreamWriter(
|
|
|
|
|
new FileOutputStream(GEN_DIR + "DisjointIgnorables.txt"),
|
|
|
|
|
"UTF8"),
|
|
|
|
|
32*1024));
|
|
|
|
|
diLog.write('\uFEFF');
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
PrintWriter diLog = new PrintWriter(
|
|
|
|
|
// try new one
|
|
|
|
|
new UTF8StreamWriter(new FileOutputStream(GEN_DIR + "DisjointIgnorables.txt"),
|
|
|
|
|
32*1024));
|
|
|
|
|
diLog.write('\uFEFF');
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//diLog = new PrintWriter(new FileOutputStream(GEN_DIR + "DisjointIgnorables.txt"));
|
|
|
|
|
|
2002-03-15 01:57:01 +00:00
|
|
|
|
Normalizer nfd = new Normalizer(Normalizer.NFD, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
int[] ces = new int[50];
|
|
|
|
|
int[] secondariesZP = new int[400];
|
|
|
|
|
Vector[] secondariesZPsample = new Vector[400];
|
|
|
|
|
int[] remapZP = new int[400];
|
|
|
|
|
|
|
|
|
|
int[] secondariesNZP = new int[400];
|
|
|
|
|
Vector[] secondariesNZPsample = new Vector[400];
|
|
|
|
|
int[] remapNZP = new int[400];
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < secondariesZP.length; ++i) {
|
|
|
|
|
secondariesZPsample[i] = new Vector();
|
|
|
|
|
secondariesNZPsample[i] = new Vector();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int zpCount = 0;
|
|
|
|
|
int nzpCount = 0;
|
|
|
|
|
|
|
|
|
|
/* for (char ch = 0; ch < 0xFFFF; ++ch) {
|
|
|
|
|
byte type = collator.getCEType(ch);
|
|
|
|
|
if (type >= UCA.FIXED_CE) continue;
|
|
|
|
|
if (SKIP_CANONICAL_DECOMPOSIBLES && nfd.hasDecomposition(ch)) continue;
|
|
|
|
|
String s = String.valueOf(ch);
|
|
|
|
|
int len = collator.getCEs(s, true, ces);
|
|
|
|
|
*/
|
2001-09-19 23:33:52 +00:00
|
|
|
|
UCA.UCAContents cc = collator.getContents(UCA.FIXED_CE, nfd);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int[] lenArray = new int[1];
|
|
|
|
|
|
|
|
|
|
Set sortedCodes = new TreeSet();
|
|
|
|
|
Set mixedCEs = new TreeSet();
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
String s = cc.next(ces, lenArray);
|
|
|
|
|
if (s == null) break;
|
|
|
|
|
|
|
|
|
|
// process all CEs. Look for controls, and for mixed ignorable/non-ignorables
|
|
|
|
|
|
|
|
|
|
int ccc;
|
|
|
|
|
for (int kk = 0; kk < s.length(); kk += UTF32.count16(ccc)) {
|
|
|
|
|
ccc = UTF32.char32At(s,kk);
|
|
|
|
|
byte cat = ucd.getCategory(ccc);
|
|
|
|
|
if (cat == Cf || cat == Cc || cat == Zs || cat == Zl || cat == Zp) {
|
|
|
|
|
sortedCodes.add(UCA.ceToString(ces, lenArray[0]) + "\t" + ucd.getCodeAndName(s));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int len = lenArray[0];
|
|
|
|
|
|
|
|
|
|
int haveMixture = 0;
|
|
|
|
|
for (int j = 0; j < len; ++j) {
|
|
|
|
|
int ce = ces[j];
|
|
|
|
|
int pri = collator.getPrimary(ce);
|
|
|
|
|
int sec = collator.getSecondary(ce);
|
|
|
|
|
if (pri == 0) {
|
|
|
|
|
secondariesZPsample[sec].add(secondariesZP[sec], s);
|
|
|
|
|
secondariesZP[sec]++;
|
|
|
|
|
} else {
|
|
|
|
|
secondariesNZPsample[sec].add(secondariesNZP[sec], s);
|
|
|
|
|
secondariesNZP[sec]++;
|
|
|
|
|
}
|
|
|
|
|
if (haveMixture == 3) continue;
|
|
|
|
|
if (collator.isVariable(ce)) haveMixture |= 1;
|
|
|
|
|
else haveMixture |= 2;
|
|
|
|
|
if (haveMixture == 3) {
|
|
|
|
|
mixedCEs.add(UCA.ceToString(ces, len) + "\t" + ucd.getCodeAndName(s));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < secondariesZP.length; ++i) {
|
|
|
|
|
if (secondariesZP[i] != 0) {
|
|
|
|
|
remapZP[i] = zpCount;
|
|
|
|
|
zpCount++;
|
|
|
|
|
}
|
|
|
|
|
if (secondariesNZP[i] != 0) {
|
|
|
|
|
remapNZP[i] = nzpCount;
|
|
|
|
|
nzpCount++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
diLog.println();
|
|
|
|
|
diLog.println("# Proposed Remapping (see doc about Japanese characters)");
|
|
|
|
|
diLog.println();
|
|
|
|
|
|
|
|
|
|
int bothCount = 0;
|
|
|
|
|
for (int i = 0; i < secondariesZP.length; ++i) {
|
|
|
|
|
if ((secondariesZP[i] != 0) || (secondariesNZP[i] != 0)) {
|
|
|
|
|
char sign = ' ';
|
|
|
|
|
if (secondariesZP[i] != 0 && secondariesNZP[i] != 0) {
|
|
|
|
|
sign = '*';
|
|
|
|
|
bothCount++;
|
|
|
|
|
}
|
|
|
|
|
if (secondariesZP[i] != 0) {
|
|
|
|
|
showSampleOverlap(diLog, false, sign + "ZP ", secondariesZPsample[i]); // i, 0x20 + nzpCount + remapZP[i],
|
|
|
|
|
}
|
|
|
|
|
if (secondariesNZP[i] != 0) {
|
|
|
|
|
if (i == 0x20) {
|
|
|
|
|
diLog.println("(omitting " + secondariesNZP[i] + " NZP with values 0020 -- values don't change)");
|
|
|
|
|
} else {
|
|
|
|
|
showSampleOverlap(diLog, true, sign + "NZP", secondariesNZPsample[i]); // i, 0x20 + remapNZP[i],
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
diLog.println();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
diLog.println("ZP Count = " + zpCount + ", NZP Count = " + nzpCount + ", Collisions = " + bothCount);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
diLog.println();
|
|
|
|
|
diLog.println("OVERLAPS");
|
|
|
|
|
diLog.println();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < secondariesZP.length; ++i) {
|
|
|
|
|
if (secondariesZP[i] != 0 && secondariesNZP[i] != 0) {
|
|
|
|
|
diLog.println("Overlap at " + Utility.hex(i)
|
|
|
|
|
+ ": " + secondariesZP[i] + " with zero primaries"
|
|
|
|
|
+ ", " + secondariesNZP[i] + " with non-zero primaries"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
showSampleOverlap(" ZP: ", secondariesZPsample[i], ces);
|
|
|
|
|
showSampleOverlap(" NZP: ", secondariesNZPsample[i], ces);
|
|
|
|
|
diLog.println();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
diLog.println();
|
|
|
|
|
diLog.println("# BACKGROUND INFORMATION");
|
|
|
|
|
diLog.println();
|
|
|
|
|
diLog.println("# All characters with 'mixed' CEs: variable and non-variable");
|
|
|
|
|
diLog.println("# Note: variables are in " + Utility.hex(collator.getVariableLow() >> 16) + " to "
|
|
|
|
|
+ Utility.hex(collator.getVariableHigh() >> 16));
|
|
|
|
|
diLog.println();
|
|
|
|
|
|
|
|
|
|
Iterator it;
|
|
|
|
|
it = mixedCEs.iterator();
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
Object key = it.next();
|
|
|
|
|
diLog.println(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
diLog.println();
|
|
|
|
|
diLog.println("# All 'controls': Cc, Cf, Zs, Zp, Zl");
|
|
|
|
|
diLog.println();
|
|
|
|
|
|
|
|
|
|
it = sortedCodes.iterator();
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
Object key = it.next();
|
|
|
|
|
diLog.println(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
diLog.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void checkCE_overlap() throws IOException {
|
|
|
|
|
PrintWriter diLog = new PrintWriter(
|
|
|
|
|
new BufferedWriter(
|
|
|
|
|
new OutputStreamWriter(
|
|
|
|
|
new FileOutputStream(GEN_DIR + "DisjointIgnorables.txt"),
|
|
|
|
|
"UTF8"),
|
|
|
|
|
32*1024));
|
|
|
|
|
diLog.write('\uFEFF');
|
|
|
|
|
|
|
|
|
|
//diLog = new PrintWriter(new FileOutputStream(GEN_DIR + "DisjointIgnorables.txt"));
|
|
|
|
|
|
2002-03-15 01:57:01 +00:00
|
|
|
|
Normalizer nfd = new Normalizer(Normalizer.NFD, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
int[] ces = new int[50];
|
|
|
|
|
int[] secondariesZP = new int[400];
|
|
|
|
|
Vector[] secondariesZPsample = new Vector[400];
|
|
|
|
|
int[] remapZP = new int[400];
|
|
|
|
|
|
|
|
|
|
int[] secondariesNZP = new int[400];
|
|
|
|
|
Vector[] secondariesNZPsample = new Vector[400];
|
|
|
|
|
int[] remapNZP = new int[400];
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < secondariesZP.length; ++i) {
|
|
|
|
|
secondariesZPsample[i] = new Vector();
|
|
|
|
|
secondariesNZPsample[i] = new Vector();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int zpCount = 0;
|
|
|
|
|
int nzpCount = 0;
|
|
|
|
|
|
|
|
|
|
/* for (char ch = 0; ch < 0xFFFF; ++ch) {
|
|
|
|
|
byte type = collator.getCEType(ch);
|
|
|
|
|
if (type >= UCA.FIXED_CE) continue;
|
|
|
|
|
if (SKIP_CANONICAL_DECOMPOSIBLES && nfd.hasDecomposition(ch)) continue;
|
|
|
|
|
String s = String.valueOf(ch);
|
|
|
|
|
int len = collator.getCEs(s, true, ces);
|
|
|
|
|
*/
|
2001-09-19 23:33:52 +00:00
|
|
|
|
UCA.UCAContents cc = collator.getContents(UCA.FIXED_CE, nfd);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int[] lenArray = new int[1];
|
|
|
|
|
|
|
|
|
|
Set sortedCodes = new TreeSet();
|
|
|
|
|
Set mixedCEs = new TreeSet();
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
String s = cc.next(ces, lenArray);
|
|
|
|
|
if (s == null) break;
|
|
|
|
|
|
|
|
|
|
// process all CEs. Look for controls, and for mixed ignorable/non-ignorables
|
|
|
|
|
|
|
|
|
|
int ccc;
|
|
|
|
|
for (int kk = 0; kk < s.length(); kk += UTF32.count16(ccc)) {
|
|
|
|
|
ccc = UTF32.char32At(s,kk);
|
|
|
|
|
byte cat = ucd.getCategory(ccc);
|
|
|
|
|
if (cat == Cf || cat == Cc || cat == Zs || cat == Zl || cat == Zp) {
|
|
|
|
|
sortedCodes.add(UCA.ceToString(ces, lenArray[0]) + "\t" + ucd.getCodeAndName(s));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int len = lenArray[0];
|
|
|
|
|
|
|
|
|
|
int haveMixture = 0;
|
|
|
|
|
for (int j = 0; j < len; ++j) {
|
|
|
|
|
int ce = ces[j];
|
|
|
|
|
int pri = collator.getPrimary(ce);
|
|
|
|
|
int sec = collator.getSecondary(ce);
|
|
|
|
|
if (pri == 0) {
|
|
|
|
|
secondariesZPsample[sec].add(secondariesZP[sec], s);
|
|
|
|
|
secondariesZP[sec]++;
|
|
|
|
|
} else {
|
|
|
|
|
secondariesNZPsample[sec].add(secondariesNZP[sec], s);
|
|
|
|
|
secondariesNZP[sec]++;
|
|
|
|
|
}
|
|
|
|
|
if (haveMixture == 3) continue;
|
|
|
|
|
if (collator.isVariable(ce)) haveMixture |= 1;
|
|
|
|
|
else haveMixture |= 2;
|
|
|
|
|
if (haveMixture == 3) {
|
|
|
|
|
mixedCEs.add(UCA.ceToString(ces, len) + "\t" + ucd.getCodeAndName(s));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < secondariesZP.length; ++i) {
|
|
|
|
|
if (secondariesZP[i] != 0) {
|
|
|
|
|
remapZP[i] = zpCount;
|
|
|
|
|
zpCount++;
|
|
|
|
|
}
|
|
|
|
|
if (secondariesNZP[i] != 0) {
|
|
|
|
|
remapNZP[i] = nzpCount;
|
|
|
|
|
nzpCount++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
diLog.println();
|
|
|
|
|
diLog.println("# Proposed Remapping (see doc about Japanese characters)");
|
|
|
|
|
diLog.println();
|
|
|
|
|
|
|
|
|
|
int bothCount = 0;
|
|
|
|
|
for (int i = 0; i < secondariesZP.length; ++i) {
|
|
|
|
|
if ((secondariesZP[i] != 0) || (secondariesNZP[i] != 0)) {
|
|
|
|
|
char sign = ' ';
|
|
|
|
|
if (secondariesZP[i] != 0 && secondariesNZP[i] != 0) {
|
|
|
|
|
sign = '*';
|
|
|
|
|
bothCount++;
|
|
|
|
|
}
|
|
|
|
|
if (secondariesZP[i] != 0) {
|
|
|
|
|
showSampleOverlap(diLog, false, sign + "ZP ", secondariesZPsample[i]); // i, 0x20 + nzpCount + remapZP[i],
|
|
|
|
|
}
|
|
|
|
|
if (secondariesNZP[i] != 0) {
|
|
|
|
|
if (i == 0x20) {
|
|
|
|
|
diLog.println("(omitting " + secondariesNZP[i] + " NZP with values 0020 -- values don't change)");
|
|
|
|
|
} else {
|
|
|
|
|
showSampleOverlap(diLog, true, sign + "NZP", secondariesNZPsample[i]); // i, 0x20 + remapNZP[i],
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
diLog.println();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
diLog.println("ZP Count = " + zpCount + ", NZP Count = " + nzpCount + ", Collisions = " + bothCount);
|
|
|
|
|
|
|
|
|
|
diLog.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void showSampleOverlap(PrintWriter diLog, boolean doNew, String head, Vector v) {
|
|
|
|
|
for (int i = 0; i < v.size(); ++i) {
|
|
|
|
|
showSampleOverlap(diLog, doNew, head, (String)v.get(i));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void showSampleOverlap(PrintWriter diLog, boolean doNew, String head, String src) {
|
|
|
|
|
int[] ces = new int[30];
|
|
|
|
|
int len = collator.getCEs(src, true, ces);
|
|
|
|
|
int[] newCes = null;
|
|
|
|
|
int newLen = 0;
|
|
|
|
|
if (doNew) {
|
|
|
|
|
newCes = new int[30];
|
|
|
|
|
for (int i = 0; i < len; ++i) {
|
|
|
|
|
int ce = ces[i];
|
|
|
|
|
int p = UCA.getPrimary(ce);
|
|
|
|
|
int s = UCA.getSecondary(ce);
|
|
|
|
|
int t = UCA.getTertiary(ce);
|
|
|
|
|
if (p != 0 && s != 0x20) {
|
|
|
|
|
newCes[newLen++] = UCA.makeKey(p, 0x20, t);
|
|
|
|
|
newCes[newLen++] = UCA.makeKey(0, s, 0x1F);
|
|
|
|
|
} else {
|
|
|
|
|
newCes[newLen++] = ce;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
diLog.println(
|
|
|
|
|
ucd.getCode(src)
|
|
|
|
|
+ "\t" + head
|
|
|
|
|
//+ "\t" + Utility.hex(oldWeight)
|
|
|
|
|
//+ " => " + Utility.hex(newWeight)
|
|
|
|
|
+ "\t" + collator.ceToString(ces, len)
|
|
|
|
|
+ (doNew ? " => " + collator.ceToString(newCes, newLen) : "")
|
|
|
|
|
+ "\t( " + src + " )"
|
|
|
|
|
+ "\t" + ucd.getName(src)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static final byte WITHOUT_NAMES = 0, WITH_NAMES = 1, IN_XML = 2;
|
|
|
|
|
|
|
|
|
|
static final boolean SKIP_CANONICAL_DECOMPOSIBLES = true;
|
|
|
|
|
|
|
|
|
|
static final int TRANSITIVITY_COUNT = 8000;
|
|
|
|
|
static final int TRANSITIVITY_ITERATIONS = 1000000;
|
|
|
|
|
|
|
|
|
|
static void testTransitivity() {
|
|
|
|
|
char[] tests = new char[TRANSITIVITY_COUNT];
|
|
|
|
|
String[] keys = new String[TRANSITIVITY_COUNT];
|
|
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
System.out.println("Loading");
|
|
|
|
|
for (char ch = 0; i < tests.length; ++ch) {
|
|
|
|
|
byte type = collator.getCEType(ch);
|
|
|
|
|
if (type >= UCA.FIXED_CE) continue;
|
|
|
|
|
Utility.dot(ch);
|
|
|
|
|
tests[i] = ch;
|
|
|
|
|
keys[i] = collator.getSortKey(String.valueOf(ch));
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
java.util.Comparator cm = new RuleComparator();
|
|
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
Utility.fixDot();
|
|
|
|
|
System.out.println("Comparing");
|
|
|
|
|
|
|
|
|
|
while (i++ < TRANSITIVITY_ITERATIONS) {
|
|
|
|
|
Utility.dot(i);
|
|
|
|
|
int a = (int)Math.random()*TRANSITIVITY_COUNT;
|
|
|
|
|
int b = (int)Math.random()*TRANSITIVITY_COUNT;
|
|
|
|
|
int c = (int)Math.random()*TRANSITIVITY_COUNT;
|
|
|
|
|
int ab = cm.compare(keys[a], keys[b]);
|
|
|
|
|
int bc = cm.compare(keys[b], keys[c]);
|
|
|
|
|
int ca = cm.compare(keys[c], keys[a]);
|
|
|
|
|
|
|
|
|
|
if (ab < 0 && bc < 0 && ca < 0 || ab > 0 && bc > 0 && ca > 0) {
|
|
|
|
|
System.out.println("Transitivity broken for "
|
|
|
|
|
+ Utility.hex(a)
|
|
|
|
|
+ ", " + Utility.hex(b)
|
|
|
|
|
+ ", " + Utility.hex(c));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-31 01:41:04 +00:00
|
|
|
|
static Normalizer nfdNew = new Normalizer(Normalizer.NFD, "");
|
2002-06-02 05:07:08 +00:00
|
|
|
|
static Normalizer NFC = new Normalizer(Normalizer.NFC, "");
|
2002-05-31 01:41:04 +00:00
|
|
|
|
static Normalizer nfkdNew = new Normalizer(Normalizer.NFKD, "");
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
static void writeRules (byte option) throws IOException {
|
|
|
|
|
|
|
|
|
|
//testTransitivity();
|
|
|
|
|
//if (true) return;
|
|
|
|
|
|
|
|
|
|
int[] ces = new int[50];
|
2002-03-15 01:57:01 +00:00
|
|
|
|
Normalizer nfd = new Normalizer(Normalizer.NFD, UNICODE_VERSION);
|
2002-05-31 01:41:04 +00:00
|
|
|
|
Normalizer nfkd = new Normalizer(Normalizer.NFKD, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
if (false) {
|
|
|
|
|
int len2 = collator.getCEs("\u2474", true, ces);
|
|
|
|
|
System.out.println(UCA.ceToString(ces, len2));
|
|
|
|
|
|
|
|
|
|
String a = collator.getSortKey("a");
|
|
|
|
|
String b = collator.getSortKey("A");
|
|
|
|
|
System.out.println(collator.strengthDifference(a, b));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
System.out.println("Sorting");
|
|
|
|
|
Map backMap = new HashMap();
|
|
|
|
|
java.util.Comparator cm = new RuleComparator();
|
|
|
|
|
Map ordered = new TreeMap(cm);
|
|
|
|
|
|
2001-09-19 23:33:52 +00:00
|
|
|
|
UCA.UCAContents cc = collator.getContents(UCA.FIXED_CE,
|
2001-08-30 20:50:18 +00:00
|
|
|
|
SKIP_CANONICAL_DECOMPOSIBLES ? nfd : null);
|
|
|
|
|
int[] lenArray = new int[1];
|
2002-05-31 01:41:04 +00:00
|
|
|
|
|
|
|
|
|
Set alreadyDone = new HashSet();
|
|
|
|
|
PrintWriter log2 = Utility.openPrintWriter("UCARules-log.txt", false, false);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
String s = cc.next(ces, lenArray);
|
|
|
|
|
if (s == null) break;
|
|
|
|
|
int len = lenArray[0];
|
2002-05-31 01:41:04 +00:00
|
|
|
|
|
|
|
|
|
if (s.equals("\uD800")) {
|
|
|
|
|
System.out.println("Check: " + CEList.toString(ces, len));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log2.println(s + "\t" + CEList.toString(ces, len) + "\t" + ucd.getCodeAndName(s));
|
|
|
|
|
|
|
|
|
|
addToBackMap(backMap, ces, len, s, false);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
String key = String.valueOf((char)(ces[0]>>>16))
|
|
|
|
|
+ String.valueOf((char)(ces[0] & 0xFFFF))
|
|
|
|
|
+ collator.getSortKey(s, UCA.NON_IGNORABLE) + '\u0000' + UCA.codePointOrder(s);
|
2002-05-31 01:41:04 +00:00
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
ordered.put(key, s);
|
2002-05-31 01:41:04 +00:00
|
|
|
|
alreadyDone.add(s);
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
Object result = ordered.get(key);
|
|
|
|
|
if (result == null) {
|
|
|
|
|
System.out.println("BAD SORT: " + Utility.hex(key) + ", " + Utility.hex(s));
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-05-31 01:41:04 +00:00
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
System.out.println("Checking CJK");
|
|
|
|
|
|
|
|
|
|
// Check for characters that are ARE explicitly mapped in the CJK ranges
|
|
|
|
|
UnicodeSet CJK = new UnicodeSet(0x2E80, 0x2EFF);
|
|
|
|
|
CJK.add(0x2F00, 0x2EFF);
|
|
|
|
|
CJK.add(0x2F00, 0x2FDF);
|
|
|
|
|
CJK.add(0x3400, 0x9FFF);
|
|
|
|
|
CJK.add(0xF900, 0xFAFF);
|
|
|
|
|
CJK.add(0x20000, 0x2A6DF);
|
|
|
|
|
CJK.add(0x2F800, 0x2FA1F);
|
|
|
|
|
CJK.removeAll(new UnicodeSet("[:Cn:]")); // remove unassigned
|
|
|
|
|
|
|
|
|
|
// make set with canonical decomposibles
|
|
|
|
|
UnicodeSet composites = new UnicodeSet();
|
|
|
|
|
for (int i = 0; i < 0x10FFFF; ++i) {
|
|
|
|
|
if (!ucd.isAllocated(i)) continue;
|
|
|
|
|
if (nfd.isNormalized(i)) continue;
|
|
|
|
|
composites.add(i);
|
|
|
|
|
}
|
|
|
|
|
UnicodeSet CJKcomposites = new UnicodeSet(CJK).retainAll(composites);
|
|
|
|
|
System.out.println("CJK composites " + CJKcomposites.toPattern(true));
|
|
|
|
|
System.out.println("CJK NONcomposites " + new UnicodeSet(CJK).removeAll(composites).toPattern(true));
|
|
|
|
|
|
|
|
|
|
UnicodeSet mapped = new UnicodeSet();
|
|
|
|
|
Iterator it = alreadyDone.iterator();
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
String member = (String) it.next();
|
|
|
|
|
mapped.add(member);
|
|
|
|
|
}
|
|
|
|
|
UnicodeSet CJKmapped = new UnicodeSet(CJK).retainAll(mapped);
|
|
|
|
|
System.out.println("Mapped CJK: " + CJKmapped.toPattern(true));
|
|
|
|
|
System.out.println("UNMapped CJK: " + new UnicodeSet(CJK).removeAll(mapped).toPattern(true));
|
|
|
|
|
System.out.println("Neither Mapped nor Composite CJK: "
|
|
|
|
|
+ new UnicodeSet(CJK).removeAll(CJKcomposites).removeAll(CJKmapped).toPattern(true));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
2E80..2EFF; CJK Radicals Supplement
|
|
|
|
|
2F00..2FDF; Kangxi Radicals
|
|
|
|
|
|
|
|
|
|
3400..4DBF; CJK Unified Ideographs Extension A
|
|
|
|
|
4E00..9FFF; CJK Unified Ideographs
|
|
|
|
|
F900..FAFF; CJK Compatibility Ideographs
|
|
|
|
|
|
|
|
|
|
20000..2A6DF; CJK Unified Ideographs Extension B
|
|
|
|
|
2F800..2FA1F; CJK Compatibility Ideographs Supplement
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2002-05-31 01:41:04 +00:00
|
|
|
|
System.out.println("Adding Kanji");
|
|
|
|
|
for (int i = 0; i < 0x10FFFF; ++i) {
|
|
|
|
|
if (!ucd.isAllocated(i)) continue;
|
|
|
|
|
if (nfkd.isNormalized(i)) continue;
|
|
|
|
|
Utility.dot(i);
|
|
|
|
|
String decomp = nfkd.normalize(i);
|
|
|
|
|
int cp;
|
|
|
|
|
for (int j = 0; j < decomp.length(); j += UTF16.getCharCount(cp)) {
|
|
|
|
|
cp = UTF16.charAt(decomp, j);
|
|
|
|
|
String s = UTF16.valueOf(cp);
|
|
|
|
|
if (alreadyDone.contains(s)) continue;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2002-05-31 01:41:04 +00:00
|
|
|
|
alreadyDone.add(s);
|
|
|
|
|
int len = collator.getCEs(s, true, ces);
|
|
|
|
|
|
|
|
|
|
log2.println(s+ "\t" + CEList.toString(ces, len)
|
|
|
|
|
+ "\t" + ucd.getCodeAndName(s) + " from " + ucd.getCodeAndName(i));
|
|
|
|
|
|
|
|
|
|
addToBackMap(backMap, ces, len, s, false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println("Writing");
|
|
|
|
|
|
|
|
|
|
String filename = "UCA_Rules.txt";
|
|
|
|
|
if (option == WITH_NAMES) filename = "UCA_Rules_With_Names.txt";
|
|
|
|
|
else if (option == IN_XML) filename = "UCA_Rules.xml";
|
2002-05-31 01:41:04 +00:00
|
|
|
|
log = Utility.openPrintWriter(filename, false, false);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
String[] commentText = {
|
|
|
|
|
"NOTE: Since UCA handles canonical equivalents, no composites are necessary",
|
|
|
|
|
"(except in extensions).",
|
|
|
|
|
"For syntax description, see: http://oss.software.ibm.com/icu/userguide/Collate_Intro.html"
|
|
|
|
|
};
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (option == IN_XML) {
|
|
|
|
|
log.println("<uca>");
|
|
|
|
|
log.println("<!--");
|
|
|
|
|
for (int i = 0; i < commentText.length; ++i) {
|
|
|
|
|
log.println(commentText[i]);
|
|
|
|
|
}
|
|
|
|
|
log.println("-->");
|
|
|
|
|
log.println("<version UCA='" + collator.getDataVersion() + "' UCD='" + collator.getUCDVersion() + "'/>");
|
|
|
|
|
} else {
|
|
|
|
|
log.write('\uFEFF'); // BOM
|
|
|
|
|
for (int i = 0; i < commentText.length; ++i) {
|
|
|
|
|
log.println("#\t" + commentText[i]);
|
|
|
|
|
}
|
|
|
|
|
log.println("# VERSION: UCA=" + collator.getDataVersion() + ", UCD=" + collator.getUCDVersion());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
it = ordered.keySet().iterator();
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int oldFirstPrimary = UCA.getPrimary(UCA.TERMINATOR);
|
|
|
|
|
boolean wasVariable = false;
|
|
|
|
|
|
|
|
|
|
//String lastSortKey = collator.getSortKey("\u0000");;
|
|
|
|
|
// 12161004
|
|
|
|
|
int lastCE = 0;
|
|
|
|
|
int ce = 0;
|
|
|
|
|
int nextCE = 0;
|
|
|
|
|
int lastCJKPrimary = 0;
|
|
|
|
|
|
|
|
|
|
boolean firstTime = true;
|
|
|
|
|
|
|
|
|
|
boolean done = false;
|
|
|
|
|
|
|
|
|
|
String chr = "";
|
|
|
|
|
int len = -1;
|
|
|
|
|
|
|
|
|
|
String nextChr = "";
|
|
|
|
|
int nextLen = -1;
|
|
|
|
|
int[] nextCes = new int[50];
|
|
|
|
|
|
|
|
|
|
String lastChr = "";
|
|
|
|
|
int lastLen = -1;
|
|
|
|
|
int[] lastCes = new int[50];
|
|
|
|
|
|
|
|
|
|
long variableTop = collator.getVariableHigh() & 0xFFFFFFFFL;
|
|
|
|
|
|
|
|
|
|
// for debugging ordering
|
|
|
|
|
String lastSortKey = "";
|
|
|
|
|
boolean showNext = false;
|
|
|
|
|
|
|
|
|
|
for (int loopCounter = 0; !done; loopCounter++) {
|
|
|
|
|
Utility.dot(loopCounter);
|
|
|
|
|
|
|
|
|
|
lastCE = ce;
|
|
|
|
|
lastLen = len;
|
|
|
|
|
lastChr = chr;
|
|
|
|
|
if (len > 0) {
|
|
|
|
|
System.arraycopy(ces, 0, lastCes, 0, lastLen);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// copy the current from Next
|
|
|
|
|
|
|
|
|
|
ce = nextCE;
|
|
|
|
|
len = nextLen;
|
|
|
|
|
chr = nextChr;
|
|
|
|
|
if (nextLen > 0) {
|
|
|
|
|
System.arraycopy(nextCes, 0, ces, 0, nextLen);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We need to look ahead one, to be able to reset properly
|
|
|
|
|
|
|
|
|
|
if (it.hasNext()) {
|
|
|
|
|
String nextSortKey = (String) it.next();
|
|
|
|
|
nextChr = (String)ordered.get(nextSortKey);
|
|
|
|
|
int result = cm.compare(nextSortKey, lastSortKey);
|
|
|
|
|
if (result < 0) {
|
|
|
|
|
System.out.println();
|
|
|
|
|
System.out.println("DANGER: Sort Key Unordered!");
|
|
|
|
|
System.out.println((loopCounter-1) + " " + Utility.hex(lastSortKey)
|
|
|
|
|
+ ", " + ucd.getCodeAndName(lastSortKey.charAt(lastSortKey.length()-1)));
|
|
|
|
|
System.out.println(loopCounter + " " + Utility.hex(nextSortKey)
|
|
|
|
|
+ ", " + ucd.getCodeAndName(nextSortKey.charAt(nextSortKey.length()-1)));
|
|
|
|
|
}
|
|
|
|
|
if (nextChr == null) {
|
|
|
|
|
Utility.fixDot();
|
|
|
|
|
if (!showNext) {
|
|
|
|
|
System.out.println();
|
|
|
|
|
System.out.println((loopCounter-1) + " Last = " + Utility.hex(lastSortKey)
|
|
|
|
|
+ ", " + ucd.getCodeAndName(lastSortKey.charAt(lastSortKey.length()-1)));
|
|
|
|
|
}
|
|
|
|
|
System.out.println(cm.compare(lastSortKey, nextSortKey)
|
|
|
|
|
+ ", " + cm.compare(nextSortKey, lastSortKey));
|
|
|
|
|
System.out.println(loopCounter + " NULL AT " + Utility.hex(nextSortKey)
|
|
|
|
|
+ ", " + ucd.getCodeAndName(nextSortKey.charAt(nextSortKey.length()-1)));
|
|
|
|
|
nextChr = "??";
|
|
|
|
|
showNext = true;
|
|
|
|
|
} else if (showNext) {
|
|
|
|
|
showNext = false;
|
|
|
|
|
System.out.println(cm.compare(lastSortKey, nextSortKey)
|
|
|
|
|
+ ", " + cm.compare(nextSortKey, lastSortKey));
|
|
|
|
|
System.out.println(loopCounter + " Next = " + Utility.hex(nextSortKey)
|
|
|
|
|
+ ", " + ucd.getCodeAndName(nextChr));
|
|
|
|
|
}
|
|
|
|
|
lastSortKey = nextSortKey;
|
|
|
|
|
} else {
|
|
|
|
|
nextChr = "??";
|
|
|
|
|
done = true; // make one more pass!!!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nextLen = collator.getCEs(nextChr, true, nextCes);
|
|
|
|
|
nextCE = nextCes[0];
|
|
|
|
|
|
|
|
|
|
// for debugging
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (false) System.out.println(
|
|
|
|
|
collator.ceToString(lastCE) + " "
|
|
|
|
|
+ collator.ceToString(ce) + " "
|
|
|
|
|
+ collator.ceToString(nextCE) + " "
|
|
|
|
|
+ ucd.getCodeAndName(chr)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// skip first (fake) element
|
|
|
|
|
|
|
|
|
|
if (len == -1) continue;
|
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
|
|
|
|
|
// get relation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*if (chr.charAt(0) == 0xFFFB) {
|
|
|
|
|
System.out.println("DEBUG");
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int relation = getStrengthDifference(ces, len, lastCes, lastLen);
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
// RESETs: do special case for relations to fixed items
|
|
|
|
|
|
|
|
|
|
String reset = "";
|
2002-06-02 05:07:08 +00:00
|
|
|
|
String resetComment = "";
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int xmlReset = 0;
|
|
|
|
|
|
|
|
|
|
if (firstTime
|
|
|
|
|
|| collator.getPrimary(lastCE) == 0 && collator.getPrimary(ce) != 0
|
|
|
|
|
|| collator.getSecondary(lastCE) == 0 && collator.getSecondary(ce) != 0
|
|
|
|
|
|| collator.getTertiary(lastCE) == 0 && collator.getTertiary(ce) != 0) {
|
|
|
|
|
firstTime = false;
|
|
|
|
|
if (collator.getPrimary(ce) != 0) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
reset = "[top]";
|
2001-08-30 20:50:18 +00:00
|
|
|
|
} else {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
reset = quoteOperand(chr);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
} else if (variableTop != 0 && (ce & 0xFFFF0000L) > variableTop) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
reset = "[variable\\u0020top]";
|
2001-08-30 20:50:18 +00:00
|
|
|
|
xmlReset = 1;
|
|
|
|
|
variableTop = 0;
|
|
|
|
|
} else {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
int primary = collator.getPrimary(ce);
|
|
|
|
|
if (UCA.isImplicitLeadPrimary(primary)) {
|
|
|
|
|
if (relation == PRIMARY_DIFF) {
|
|
|
|
|
int resetCp = UCA.ImplicitToCodePoint(primary, UCA.getPrimary(ces[1]));
|
|
|
|
|
reset = quoteOperand(UTF16.valueOf(resetCp));
|
|
|
|
|
resetComment = ucd.getCodeAndName(resetCp);
|
|
|
|
|
// lastCE = UCA.makeKey(primary, UCA.NEUTRAL_SECONDARY, UCA.NEUTRAL_TERTIARY);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
xmlReset = 2;
|
|
|
|
|
}
|
2002-06-02 05:07:08 +00:00
|
|
|
|
// lastCJKPrimary = primary;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
if (primary >= 0x3400) {
|
|
|
|
|
if (primary == 0x9FA6) {
|
|
|
|
|
primary = '\u9FA5';
|
|
|
|
|
}
|
|
|
|
|
if (primary < 0x9FA6) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
2002-05-31 01:41:04 +00:00
|
|
|
|
if (chr.equals("\u2F00")) {
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println(UCA.ceToString(ces, len));
|
2002-05-31 01:41:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// There are double-CEs, so we have to know what the length of the first bit is.
|
|
|
|
|
|
|
|
|
|
int expansionStart = 1;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (UCA.isImplicitLeadCE(ces[0])) {
|
2002-05-31 01:41:04 +00:00
|
|
|
|
expansionStart = 2; // move up if first is double-ce
|
|
|
|
|
}
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
// check expansions
|
|
|
|
|
|
|
|
|
|
String expansion = "";
|
2002-05-31 01:41:04 +00:00
|
|
|
|
if (len > expansionStart) {
|
|
|
|
|
//int tert0 = ces[0] & 0xFF;
|
|
|
|
|
//boolean isCompat = tert0 != 2 && tert0 != 8;
|
|
|
|
|
log2.println("Exp: " + ucd.getCodeAndName(chr) + ", " + CEList.toString(ces, len) + ", start: " + expansionStart);
|
|
|
|
|
int[] rel = {relation};
|
|
|
|
|
expansion = getFromBackMap(backMap, ces, expansionStart, len, chr, rel);
|
|
|
|
|
relation = rel[0];
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// print results
|
|
|
|
|
|
|
|
|
|
if (option == IN_XML) {
|
|
|
|
|
if (xmlReset == 1) log.print("<variableTop/>");
|
|
|
|
|
|
|
|
|
|
/*log.print(" <!--" + ucd.getCodeAndName(chr));
|
|
|
|
|
if (len > 1) log.print(" / " + Utility.hex(expansion));
|
|
|
|
|
log.println("-->");
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (xmlReset == 2) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
log.print("<reset>" + Utility.quoteXML(reset) + "</reset>");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
2002-06-02 05:07:08 +00:00
|
|
|
|
log.print(" <" + XML_RELATION_NAMES[relation] + ">");
|
|
|
|
|
if (expansion.length() > 0) {
|
|
|
|
|
log.print("<x>" + Utility.quoteXML(expansion) + "</x>");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
2002-06-02 05:07:08 +00:00
|
|
|
|
log.print(Utility.quoteXML(chr));
|
|
|
|
|
log.print("</" + XML_RELATION_NAMES[relation] + ">");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
} else {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (reset.length() != 0) log.println("& " + reset
|
|
|
|
|
+ (resetComment.length() != 0 ? "\t\t# " + resetComment : ""));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
log.print(RELATION_NAMES[relation] + " " + quoteOperand(chr));
|
2002-05-31 01:41:04 +00:00
|
|
|
|
if (expansion.length() > 0) log.print(" / " + quoteOperand(expansion));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (option == WITH_NAMES) {
|
|
|
|
|
log.print("\t# "
|
|
|
|
|
+ collator.ceToString(ces, len) + " "
|
|
|
|
|
+ ucd.getCodeAndName(chr));
|
2002-05-31 01:41:04 +00:00
|
|
|
|
if (expansion.length() > 0) log.print(" / " + Utility.hex(expansion));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
log.println();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// log.println("& [top]"); // RESET
|
|
|
|
|
if (option == IN_XML) log.println("</uca>");
|
2002-05-31 01:41:04 +00:00
|
|
|
|
log2.close();
|
2001-08-30 20:50:18 +00:00
|
|
|
|
log.close();
|
|
|
|
|
Utility.fixDot();
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-31 01:41:04 +00:00
|
|
|
|
static long getPrimary(int[] ces) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (UCA.isImplicitLeadCE(ces[0])) {
|
2002-05-31 01:41:04 +00:00
|
|
|
|
return (UCA.getPrimary(ces[0]) << 16) + UCA.getPrimary(ces[1]);
|
|
|
|
|
} else {
|
|
|
|
|
return UCA.getPrimary(ces[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static long getSecondary(int[] ces) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (UCA.isImplicitLeadCE(ces[0])) {
|
2002-05-31 01:41:04 +00:00
|
|
|
|
return (UCA.getSecondary(ces[0]) << 16) + UCA.getSecondary(ces[1]);
|
|
|
|
|
} else {
|
|
|
|
|
return UCA.getSecondary(ces[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static long getTertiary(int[] ces) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (UCA.isImplicitLeadCE(ces[0])) {
|
2002-05-31 01:41:04 +00:00
|
|
|
|
return (UCA.getTertiary(ces[0]) << 16) + UCA.getTertiary(ces[1]);
|
|
|
|
|
} else {
|
|
|
|
|
return UCA.getTertiary(ces[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
static final int
|
|
|
|
|
PRIMARY_DIFF = 0,
|
|
|
|
|
SECONDARY_DIFF = 1,
|
|
|
|
|
TERTIARY_DIFF = 2,
|
|
|
|
|
QUARTERNARY_DIFF = 3;
|
|
|
|
|
|
2002-05-31 01:41:04 +00:00
|
|
|
|
static int getStrengthDifference(int[] ces, int len, int[] lastCes, int lastLen) {
|
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
int relation = QUARTERNARY_DIFF;
|
2002-05-31 01:41:04 +00:00
|
|
|
|
if (getPrimary(ces) != getPrimary(lastCes)) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
relation = PRIMARY_DIFF;
|
2002-05-31 01:41:04 +00:00
|
|
|
|
} else if (getSecondary(ces) != getSecondary(lastCes)) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
relation = SECONDARY_DIFF;
|
2002-05-31 01:41:04 +00:00
|
|
|
|
} else if (getTertiary(ces) != getTertiary(lastCes)) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
relation = TERTIARY_DIFF;
|
2002-05-31 01:41:04 +00:00
|
|
|
|
} else if (len > lastLen) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
relation = TERTIARY_DIFF; // HACK
|
2002-05-31 01:41:04 +00:00
|
|
|
|
} else {
|
|
|
|
|
int minLen = len < lastLen ? len : lastLen;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
int start = UCA.isImplicitLeadCE(ces[0]) ? 2 : 1;
|
2002-05-31 01:41:04 +00:00
|
|
|
|
for (int kk = start; kk < minLen; ++kk) {
|
|
|
|
|
int lc = lastCes[kk];
|
|
|
|
|
int c = ces[kk];
|
|
|
|
|
if (collator.getPrimary(c) != collator.getPrimary(lc)
|
|
|
|
|
|| collator.getSecondary(c) != collator.getSecondary(lc)) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
relation = QUARTERNARY_DIFF; // reset relation on FIRST char, since differ anyway
|
2002-05-31 01:41:04 +00:00
|
|
|
|
break;
|
|
|
|
|
} else if (collator.getTertiary(c) > collator.getTertiary(lc)) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
relation = TERTIARY_DIFF; // reset to tertiary (but later ce's might override!)
|
2002-05-31 01:41:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return relation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
// static final String[] RELATION_NAMES = {" <", " <<", " <<<", " ="};
|
|
|
|
|
static final String[] RELATION_NAMES = {" <\t", " <<\t", " <<<\t", " =\t"};
|
|
|
|
|
static final String[] XML_RELATION_NAMES = {"o1", "o2", "o3", "o4"};
|
|
|
|
|
|
2002-05-31 01:41:04 +00:00
|
|
|
|
static class ArrayWrapper {
|
|
|
|
|
int[] array;
|
|
|
|
|
int start;
|
|
|
|
|
int limit;
|
|
|
|
|
|
|
|
|
|
/*public ArrayWrapper(int[] contents) {
|
|
|
|
|
set(contents, 0, contents.length);
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public ArrayWrapper(int[] contents, int start, int limit) {
|
|
|
|
|
set(contents, start, limit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void set(int[] contents, int start, int limit) {
|
|
|
|
|
array = contents;
|
|
|
|
|
this.start = start;
|
|
|
|
|
this.limit = limit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean equals(Object other) {
|
|
|
|
|
ArrayWrapper that = (ArrayWrapper) other;
|
|
|
|
|
if (that.limit - that.start != limit - start) return false;
|
|
|
|
|
for (int i = start; i < limit; ++i) {
|
|
|
|
|
if (array[i] != that.array[i - start + that.start]) return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int hashCode() {
|
|
|
|
|
int result = limit - start;
|
|
|
|
|
for (int i = start; i < limit; ++i) {
|
|
|
|
|
result = result * 37 + array[i];
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int testCase[] = {
|
|
|
|
|
//collator.makeKey(0xFF40, 0x0020, 0x0002),
|
|
|
|
|
collator.makeKey(0x0255, 0x0020, 0x000E),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static String testString = "\u33C2\u002E";
|
|
|
|
|
|
|
|
|
|
static boolean contains(int[] array, int start, int limit, int key) {
|
|
|
|
|
for (int i = start; i < limit; ++i) {
|
|
|
|
|
if (array[i] == key) return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static final void addToBackMap(Map backMap, int[] ces, int len, String s, boolean show) {
|
|
|
|
|
if (show || contains(testCase, 0, testCase.length, ces[0]) || testString.indexOf(s) > 0) {
|
|
|
|
|
System.out.println("Test case: " + Utility.hex(s) + ", " + CEList.toString(ces, len));
|
|
|
|
|
}
|
|
|
|
|
backMap.put(new ArrayWrapper((int[])(ces.clone()), 0, len), s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int[] ignorableList = {
|
|
|
|
|
UCA.makeKey(0x0000, 0x0153, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0154, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0155, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0156, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0157, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0158, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0159, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x015A, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x015B, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x015C, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x015D, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x015E, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x015F, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0160, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0161, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0162, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0163, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0164, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0165, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0166, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0167, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0168, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0169, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x016A, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x016B, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x016C, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x016D, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x016E, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x016F, 0x0002),
|
|
|
|
|
UCA.makeKey(0x0000, 0x0170, 0x0002),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static final String getFromBackMap(Map backMap, int[] originalces, int expansionStart, int len, String chr, int[] rel) {
|
|
|
|
|
int[] ces = (int[])(originalces.clone());
|
|
|
|
|
|
|
|
|
|
String expansion = "";
|
|
|
|
|
|
|
|
|
|
// process ces to neutralize tertiary
|
|
|
|
|
|
|
|
|
|
for (int i = expansionStart; i < len; ++i) {
|
|
|
|
|
int probe = ces[i];
|
|
|
|
|
char primary = collator.getPrimary(probe);
|
|
|
|
|
char secondary = collator.getSecondary(probe);
|
|
|
|
|
char tertiary = collator.getTertiary(probe);
|
|
|
|
|
|
|
|
|
|
int tert = tertiary;
|
|
|
|
|
switch (tert) {
|
|
|
|
|
case 8: case 9: case 0xA: case 0xB: case 0xC: case 0x1D:
|
|
|
|
|
tert = 8;
|
|
|
|
|
break;
|
|
|
|
|
case 0xD: case 0x10: case 0x11: case 0x12: case 0x13: case 0x1C:
|
|
|
|
|
tert = 0xE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
tert = 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
ces[i] = collator.makeKey(primary, secondary, tert);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = expansionStart; i < len;) {
|
|
|
|
|
int limit;
|
|
|
|
|
String s = null;
|
|
|
|
|
for (limit = len; limit > i; --limit) {
|
|
|
|
|
ArrayWrapper wrapper = new ArrayWrapper(ces, i, limit);
|
|
|
|
|
s = (String)backMap.get(wrapper);
|
|
|
|
|
if (s != null) break;
|
|
|
|
|
}
|
|
|
|
|
if (s == null) {
|
|
|
|
|
do {
|
|
|
|
|
if (contains(ignorableList, 0, ignorableList.length, ces[i])) {
|
|
|
|
|
s = "";
|
|
|
|
|
if (rel[0] > 1) rel[0] = 1; // HACK
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try stomping the value to different tertiaries
|
|
|
|
|
|
|
|
|
|
int probe = ces[i];
|
|
|
|
|
char primary = collator.getPrimary(probe);
|
|
|
|
|
char secondary = collator.getSecondary(probe);
|
|
|
|
|
|
|
|
|
|
ces[i] = collator.makeKey(primary, secondary, 2);
|
|
|
|
|
ArrayWrapper wrapper = new ArrayWrapper(ces, i, i+1);
|
|
|
|
|
s = (String)backMap.get(wrapper);
|
|
|
|
|
if (s != null) break;
|
|
|
|
|
|
|
|
|
|
ces[i] = collator.makeKey(primary, secondary,0xE);
|
|
|
|
|
wrapper = new ArrayWrapper(ces, i, i+1);
|
|
|
|
|
s = (String)backMap.get(wrapper);
|
|
|
|
|
if (s != null) break;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
int meHack = UCA.makeKey(0x1795,0x0020,0x0004);
|
|
|
|
|
if (ces[i] == meHack) {
|
|
|
|
|
s = "\u3081";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// we failed completely. Print error message, and bail
|
|
|
|
|
|
|
|
|
|
System.out.println("No back map for " + collator.ceToString(ces[i])
|
|
|
|
|
+ " from " + CEList.toString(ces, len));
|
|
|
|
|
System.out.println("\t" + ucd.getCodeAndName(chr)
|
|
|
|
|
+ " => " + ucd.getCodeAndName(nfkdNew.normalize(chr))
|
|
|
|
|
);
|
|
|
|
|
s = "[" + Utility.hex(ces[i]) + "]";
|
|
|
|
|
} while (false); // exactly one time, just for breaking
|
|
|
|
|
limit = i + 1;
|
|
|
|
|
}
|
|
|
|
|
expansion += s;
|
|
|
|
|
i = limit;
|
|
|
|
|
}
|
|
|
|
|
return expansion;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
static final String getFromBackMap(Map backMap, int[] ces, int index, int limit) {
|
|
|
|
|
ArrayWrapper wrapper = new ArrayWrapper(ces, index, limit);
|
|
|
|
|
|
|
|
|
|
int probe = ces[index];
|
|
|
|
|
wrapperContents[0] = probe;
|
|
|
|
|
String s = (String)backMap.get(wrapper);
|
|
|
|
|
|
|
|
|
|
outputLen[0] = 1;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (s != null) return s;
|
|
|
|
|
|
|
|
|
|
char primary = collator.getPrimary(probe);
|
|
|
|
|
char secondary = collator.getSecondary(probe);
|
|
|
|
|
char tertiary = collator.getTertiary(probe);
|
|
|
|
|
|
|
|
|
|
if (isFixedIdeograph(remapUCA_CompatibilityIdeographToCp(primary))) {
|
|
|
|
|
return String.valueOf(primary);
|
|
|
|
|
} else {
|
|
|
|
|
int tert = tertiary;
|
|
|
|
|
switch (tert) {
|
|
|
|
|
case 8: case 9: case 0xA: case 0xB: case 0xC: case 0x1D:
|
|
|
|
|
tert = 8;
|
|
|
|
|
break;
|
|
|
|
|
case 0xD: case 0x10: case 0x11: case 0x12: case 0x13: case 0x1C:
|
|
|
|
|
tert = 0xE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
tert = 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
probe = collator.makeKey(primary, secondary, tert);
|
2002-05-31 01:41:04 +00:00
|
|
|
|
wrapperContents[0] = probe;
|
|
|
|
|
s = (String)backMap.get(wrapper);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (s != null) return s;
|
|
|
|
|
|
|
|
|
|
probe = collator.makeKey(primary, secondary, collator.NEUTRAL_TERTIARY);
|
2002-05-31 01:41:04 +00:00
|
|
|
|
wrapperContents[0] = probe;
|
|
|
|
|
s = (String)backMap.get(wrapper);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
if (s != null) return s;
|
|
|
|
|
|
|
|
|
|
if (primary != 0 && secondary != collator.NEUTRAL_SECONDARY) {
|
2002-05-31 01:41:04 +00:00
|
|
|
|
int[] dummyArray = new int[1];
|
|
|
|
|
dummyArray[0] = collator.makeKey(primary, collator.NEUTRAL_SECONDARY, tertiary);
|
|
|
|
|
String first = getFromBackMap(backMap, dummyArray, 0, outputLen);
|
|
|
|
|
|
|
|
|
|
dummyArray[0] = collator.makeKey(0, secondary, collator.NEUTRAL_TERTIARY);
|
|
|
|
|
String second = getFromBackMap(backMap, dummyArray, 0, outputLen);
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (first != null && second != null) {
|
|
|
|
|
s = first + second;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return s;
|
|
|
|
|
}
|
2002-05-31 01:41:04 +00:00
|
|
|
|
*/
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
static final String[] RELATION = {
|
|
|
|
|
"<", " << ", " <<< ", " = ", " = ", " = ", " >>> ", " >> ", ">"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static StringBuffer quoteOperandBuffer = new StringBuffer(); // faster
|
|
|
|
|
|
|
|
|
|
static final String quoteOperand(String s) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
s = NFC.normalize(s);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
quoteOperandBuffer.setLength(0);
|
|
|
|
|
boolean noQuotes = true;
|
|
|
|
|
boolean inQuote = false;
|
|
|
|
|
for (int i = 0; i < s.length(); ++i) {
|
|
|
|
|
char c = s.charAt(i);
|
|
|
|
|
if (c >= 'a' && c <= 'z'
|
|
|
|
|
|| c >= 'A' && c <= 'Z'
|
|
|
|
|
|| c >= '0' && c <= '9'
|
|
|
|
|
|| c >= 0xA0) {
|
|
|
|
|
if (inQuote) {
|
|
|
|
|
quoteOperandBuffer.append('\'');
|
|
|
|
|
inQuote = false;
|
|
|
|
|
}
|
|
|
|
|
quoteOperandBuffer.append(c);
|
|
|
|
|
} else {
|
|
|
|
|
noQuotes = false;
|
|
|
|
|
if (c == '\'') {
|
|
|
|
|
quoteOperandBuffer.append("''");
|
|
|
|
|
} else {
|
|
|
|
|
if (!inQuote) {
|
|
|
|
|
quoteOperandBuffer.append('\'');
|
|
|
|
|
inQuote = true;
|
|
|
|
|
}
|
|
|
|
|
if (c <= 0x20 || c > 0x7E) quoteOperandBuffer.append("\\u").append(Utility.hex(c));
|
|
|
|
|
else quoteOperandBuffer.append(c);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
switch (c) {
|
|
|
|
|
case '<': case '>': case '#': case '=': case '&': case '/':
|
|
|
|
|
quoteOperandBuffer.append('\'').append(c).append('\'');
|
|
|
|
|
break;
|
|
|
|
|
case '\'':
|
|
|
|
|
quoteOperandBuffer.append("''");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (0 <= c && c < 0x20 || 0x7F <= c && c < 0xA0) {
|
|
|
|
|
quoteOperandBuffer.append("\\u").append(Utility.hex(c));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
quoteOperandBuffer.append(c);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
if (inQuote) {
|
|
|
|
|
quoteOperandBuffer.append('\'');
|
|
|
|
|
}
|
|
|
|
|
if (noQuotes) return s; // faster
|
|
|
|
|
return quoteOperandBuffer.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
1112; H # HANGUL CHOSEONG HIEUH
|
|
|
|
|
1161; A # HANGUL JUNGSEONG A
|
|
|
|
|
1175; I # HANGUL JUNGSEONG I
|
|
|
|
|
11A8; G # HANGUL JONGSEONG KIYEOK
|
|
|
|
|
11C2; H # HANGUL JONGSEONG HIEUH
|
|
|
|
|
11F9;HANGUL JONGSEONG YEORINHIEUH;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
*/
|
|
|
|
|
static boolean gotInfo = false;
|
|
|
|
|
static int oldJamo1, oldJamo2, oldJamo3, oldJamo4, oldJamo5, oldJamo6;
|
|
|
|
|
|
|
|
|
|
static boolean isOldJamo(int primary) {
|
|
|
|
|
if (!gotInfo) {
|
|
|
|
|
int[] temp = new int[20];
|
|
|
|
|
collator.getCEs("\u1112", true, temp);
|
|
|
|
|
oldJamo1 = temp[0] >> 16;
|
|
|
|
|
collator.getCEs("\u1161", true, temp);
|
|
|
|
|
oldJamo2 = temp[0] >> 16;
|
|
|
|
|
collator.getCEs("\u1175", true, temp);
|
|
|
|
|
oldJamo3 = temp[0] >> 16;
|
|
|
|
|
collator.getCEs("\u11A8", true, temp);
|
|
|
|
|
oldJamo4 = temp[0] >> 16;
|
|
|
|
|
collator.getCEs("\u11C2", true, temp);
|
|
|
|
|
oldJamo5 = temp[0] >> 16;
|
|
|
|
|
collator.getCEs("\u11F9", true, temp);
|
|
|
|
|
oldJamo6 = temp[0] >> 16;
|
|
|
|
|
gotInfo = true;
|
|
|
|
|
}
|
|
|
|
|
return primary > oldJamo1 && primary < oldJamo2
|
|
|
|
|
|| primary > oldJamo3 && primary < oldJamo4
|
|
|
|
|
|| primary > oldJamo5 && primary <= oldJamo6;
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-15 01:57:01 +00:00
|
|
|
|
static Normalizer NFKD = new Normalizer(Normalizer.NFKD, UNICODE_VERSION);
|
|
|
|
|
static Normalizer NFD = new Normalizer(Normalizer.NFD, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
static int variableHigh = 0;
|
|
|
|
|
static final int COMMON = 5;
|
|
|
|
|
|
|
|
|
|
static int gapForA = 0;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
static int[] primaryDelta;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
static void writeFractionalUCA(String filename) throws IOException {
|
|
|
|
|
|
|
|
|
|
checkImplicit();
|
|
|
|
|
checkFixes();
|
|
|
|
|
|
|
|
|
|
variableHigh = collator.getVariableHigh() >> 16;
|
|
|
|
|
BitSet secondarySet = collator.getWeightUsage(2);
|
|
|
|
|
|
|
|
|
|
// HACK for CJK
|
|
|
|
|
secondarySet.set(0x0040);
|
|
|
|
|
|
|
|
|
|
int subtotal = 0;
|
|
|
|
|
System.out.println("Fixing Secondaries");
|
|
|
|
|
compactSecondary = new int[secondarySet.size()];
|
|
|
|
|
for (int secondary = 0; secondary < compactSecondary.length; ++secondary) {
|
|
|
|
|
if (secondarySet.get(secondary)) {
|
|
|
|
|
compactSecondary[secondary] = subtotal++;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
/*System.out.println("compact[" + Utility.hex(secondary)
|
|
|
|
|
+ "]=" + Utility.hex(compactSecondary[secondary])
|
|
|
|
|
+ ", " + Utility.hex(fixSecondary(secondary)));*/
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
System.out.println();
|
|
|
|
|
|
|
|
|
|
//TO DO: find secondaries that don't overlap, and reassign
|
|
|
|
|
|
|
|
|
|
System.out.println("Finding Bumps");
|
|
|
|
|
char[] representatives = new char[65536];
|
|
|
|
|
findBumps(representatives);
|
|
|
|
|
|
|
|
|
|
System.out.println("Fixing Primaries");
|
|
|
|
|
BitSet primarySet = collator.getWeightUsage(1);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
|
|
|
|
|
primaryDelta = new int[65536];
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
// start at 1 so zero stays zero.
|
|
|
|
|
for (int primary = 1; primary < 0xFFFF; ++primary) {
|
|
|
|
|
if (primarySet.get(primary)) primaryDelta[primary] = 2;
|
|
|
|
|
else if (primary == 0x1299) {
|
|
|
|
|
System.out.println("WHOOPS! Missing weight");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int bumpNextToo = 0;
|
|
|
|
|
|
|
|
|
|
subtotal = (COMMON << 8) + COMMON; // skip forbidden bytes, leave gap
|
|
|
|
|
int lastValue = 0;
|
|
|
|
|
|
|
|
|
|
// start at 1 so zero stays zero.
|
|
|
|
|
for (int primary = 1; primary < 0xFFFF; ++primary) {
|
|
|
|
|
if (primaryDelta[primary] != 0) {
|
|
|
|
|
|
|
|
|
|
// special handling for Jamo 3-byte forms
|
|
|
|
|
|
|
|
|
|
if (isOldJamo(primary)) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (DEBUG) System.out.print("JAMO: " + Utility.hex(lastValue));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if ((lastValue & 0xFF0000) == 0) { // lastValue was 2-byte form
|
|
|
|
|
subtotal += primaryDelta[primary]; // we convert from relative to absolute
|
|
|
|
|
lastValue = primaryDelta[primary] = (subtotal << 8) + 0x10; // make 3 byte, leave gap
|
|
|
|
|
} else { // lastValue was 3-byte form
|
|
|
|
|
lastValue = primaryDelta[primary] = lastValue + 3;
|
|
|
|
|
}
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (DEBUG) System.out.println(" => " + Utility.hex(lastValue));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
subtotal += primaryDelta[primary]; // we convert from relative to absolute
|
|
|
|
|
|
|
|
|
|
if (singles.get(primary)) {
|
|
|
|
|
subtotal = (subtotal & 0xFF00) + 0x100;
|
|
|
|
|
if (primary == gapForA) subtotal += 0x200;
|
|
|
|
|
if (bumpNextToo == 0x40) subtotal += 0x100; // make sure of gap between singles!!!
|
|
|
|
|
bumpNextToo = 0x40;
|
|
|
|
|
} else if (primary > variableHigh) {
|
|
|
|
|
variableHigh = 0xFFFF; // never do again!
|
|
|
|
|
subtotal = (subtotal & 0xFF00) + 0x320 + bumpNextToo;
|
|
|
|
|
bumpNextToo = 0;
|
|
|
|
|
} else if (bumpNextToo > 0 || bumps.get(primary)) {
|
|
|
|
|
subtotal = ((subtotal + 0x20) & 0xFF00) + 0x120 + bumpNextToo;
|
|
|
|
|
bumpNextToo = 0;
|
|
|
|
|
} else {
|
|
|
|
|
int lastByte = subtotal & 0xFF;
|
|
|
|
|
// skip all values of FF, 00, 01, 02,
|
|
|
|
|
if (0 <= lastByte && lastByte < COMMON || lastByte == 0xFF) {
|
|
|
|
|
subtotal = ((subtotal + 1) & 0xFFFFFF00) + COMMON; // skip
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
lastValue = primaryDelta[primary] = subtotal;
|
|
|
|
|
}
|
|
|
|
|
// fixup for Kanji
|
2002-06-02 05:07:08 +00:00
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
// WE DROP THIS: we are skipping all CJK values above, and will fix them separately
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int fixedCompat = remapUCA_CompatibilityIdeographToCp(primary);
|
|
|
|
|
if (isFixedIdeograph(fixedCompat)) {
|
|
|
|
|
int CE = getImplicitPrimary(fixedCompat);
|
|
|
|
|
|
|
|
|
|
lastValue = primaryDelta[primary] = CE >>> 8;
|
|
|
|
|
}
|
2002-06-02 05:07:08 +00:00
|
|
|
|
*/
|
2001-10-31 00:02:54 +00:00
|
|
|
|
//if ((primary & 0xFF) == 0) System.out.println(Utility.hex(primary) + " => " + hexBytes(primaryDelta[primary]));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// now translate!!
|
|
|
|
|
|
|
|
|
|
System.out.println("Sorting");
|
|
|
|
|
Map ordered = new TreeMap();
|
2002-06-02 05:07:08 +00:00
|
|
|
|
UCA.UCAContents ucac = collator.getContents(UCA.FIXED_CE, NFD);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
int ccounter = 0;
|
|
|
|
|
while (true) {
|
|
|
|
|
Utility.dot(ccounter++);
|
|
|
|
|
String s = ucac.next();
|
|
|
|
|
if (s == null) break;
|
|
|
|
|
ordered.put(collator.getSortKey(s, UCA.NON_IGNORABLE) + '\u0000' + s, s);
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2001-10-31 00:02:54 +00:00
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
for (int ch = 0; ch < 0x10FFFF; ++ch) {
|
|
|
|
|
Utility.dot(ch);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
byte type = collator.getCEType(ch);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
if (type >= UCA.FIXED_CE && !nfd.hasDecomposition(ch))
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
String s = com.ibm.text.UTF16.valueOf(ch);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
ordered.put(collator.getSortKey(s, UCA.NON_IGNORABLE) + '\u0000' + s, s);
|
|
|
|
|
}
|
2001-10-31 00:02:54 +00:00
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
Hashtable multiTable = collator.getContracting();
|
|
|
|
|
Enumeration enum = multiTable.keys();
|
2001-10-31 00:02:54 +00:00
|
|
|
|
int ecount = 0;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
while (enum.hasMoreElements()) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
Utility.dot(ecount++);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
String s = (String)enum.nextElement();
|
|
|
|
|
ordered.put(collator.getSortKey(s, UCA.NON_IGNORABLE) + '\u0000' + s, s);
|
|
|
|
|
}
|
2001-10-31 00:02:54 +00:00
|
|
|
|
*/
|
2001-08-30 20:50:18 +00:00
|
|
|
|
// JUST FOR TESTING
|
|
|
|
|
if (false) {
|
|
|
|
|
String sample = "\u3400\u3401\u4DB4\u4DB5\u4E00\u4E01\u9FA4\u9FA5\uAC00\uAC01\uD7A2\uD7A3";
|
|
|
|
|
for (int i = 0; i < sample.length(); ++i) {
|
|
|
|
|
String s = sample.substring(i, i+1);
|
|
|
|
|
ordered.put(collator.getSortKey(s, UCA.NON_IGNORABLE) + '\u0000' + s, s);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-31 00:02:54 +00:00
|
|
|
|
Utility.fixDot();
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println("Writing");
|
|
|
|
|
PrintWriter shortLog = new PrintWriter(new BufferedWriter(new FileWriter(GEN_DIR + filename + ".txt"), 32*1024));
|
|
|
|
|
PrintWriter longLog = new PrintWriter(new BufferedWriter(new FileWriter(GEN_DIR + filename + "_long.txt"), 32*1024));
|
|
|
|
|
log = new PrintWriter(new DualWriter(shortLog, longLog));
|
|
|
|
|
|
|
|
|
|
PrintWriter summary = new PrintWriter(new BufferedWriter(new FileWriter(GEN_DIR + filename + "_summary.txt"), 32*1024));
|
|
|
|
|
//log.println("[Variable Low = " + UCA.toString(collator.getVariableLow()) + "]");
|
|
|
|
|
//log.println("[Variable High = " + UCA.toString(collator.getVariableHigh()) + "]");
|
|
|
|
|
|
|
|
|
|
int[] ces = new int[100];
|
|
|
|
|
|
|
|
|
|
StringBuffer newPrimary = new StringBuffer();
|
|
|
|
|
StringBuffer newSecondary = new StringBuffer();
|
|
|
|
|
StringBuffer newTertiary = new StringBuffer();
|
|
|
|
|
StringBuffer oldStr = new StringBuffer();
|
|
|
|
|
|
|
|
|
|
EquivalenceClass secEq = new EquivalenceClass("\r\n#", 2, true);
|
|
|
|
|
EquivalenceClass terEq = new EquivalenceClass("\r\n#", 2, true);
|
|
|
|
|
String[] sampleEq = new String[500];
|
|
|
|
|
|
|
|
|
|
Iterator it = ordered.keySet().iterator();
|
|
|
|
|
int oldFirstPrimary = UCA.getPrimary(UCA.TERMINATOR);
|
|
|
|
|
boolean wasVariable = false;
|
|
|
|
|
|
2002-05-29 23:18:15 +00:00
|
|
|
|
log.println("# Fractional UCA Table, generated from standard UCA");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
log.println("# M. Davis, " + new Date());
|
2002-05-29 23:18:15 +00:00
|
|
|
|
log.println("# VERSION: UCA=" + collator.getDataVersion() + ", UCD=" + collator.getUCDVersion());
|
|
|
|
|
log.println();
|
|
|
|
|
log.println("# Generated processed version, as described in ICU design document.");
|
|
|
|
|
log.println("# NOTES");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
log.println("# - Bugs in UCA data are NOT FIXED, except for the following problems:");
|
|
|
|
|
log.println("# - canonical equivalents are decomposed directly (some beta UCA are wrong).");
|
|
|
|
|
log.println("# - overlapping variable ranges are fixed.");
|
|
|
|
|
log.println("# - Format is as follows:");
|
|
|
|
|
log.println("# <codepoint> (' ' <codepoint>)* ';' ('L' | 'S') ';' <fractionalCE>+ ' # ' <UCA_CE> '# ' <name> ");
|
|
|
|
|
log.println("# - zero weights are not printed");
|
|
|
|
|
log.println("# - S: contains at least one lowercase or SMALL kana");
|
|
|
|
|
log.println("# - L: otherwise");
|
|
|
|
|
log.println("# - Different primaries are separated by a blank line.");
|
2002-05-29 23:18:15 +00:00
|
|
|
|
log.println("# WARNING");
|
|
|
|
|
log.println("# - Differs from previous version in that MAX value was introduced at 1F.");
|
|
|
|
|
log.println("# All tertiary values are shifted down by 1, filling the gap at 7!");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
int firstImplicit = getImplicitPrimary(UCA.CJK_BASE) >>> 24;
|
|
|
|
|
int lastImplicit = getImplicitPrimary(0x10FFFF) >>> 24;
|
|
|
|
|
log.println("[FIRST_IMPLICIT= " + Utility.hex(firstImplicit) + "]");
|
|
|
|
|
log.println("[LAST_IMPLICIT= " + Utility.hex(lastImplicit) + "]");
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
String lastChr = "";
|
|
|
|
|
int lastNp = 0;
|
|
|
|
|
boolean doVariable = false;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
char[] codeUnits = new char[100];
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
Object sortKey = it.next();
|
|
|
|
|
String chr = (String)ordered.get(sortKey);
|
|
|
|
|
|
|
|
|
|
// get CEs and fix
|
|
|
|
|
int len = collator.getCEs(chr, true, ces);
|
|
|
|
|
int firstPrimary = UCA.getPrimary(ces[0]);
|
|
|
|
|
if (firstPrimary != oldFirstPrimary) {
|
|
|
|
|
log.println();
|
|
|
|
|
oldFirstPrimary = firstPrimary;
|
|
|
|
|
boolean isVariable = collator.isVariable(ces[0]);
|
|
|
|
|
if (isVariable != wasVariable) {
|
|
|
|
|
if (isVariable) {
|
|
|
|
|
log.println("# START OF VARIABLE SECTION!!!");
|
|
|
|
|
summary.println("# START OF VARIABLE SECTION!!!");
|
|
|
|
|
} else {
|
|
|
|
|
log.println("[variable top = " + Utility.hex(primaryDelta[firstPrimary]) + "] # END OF VARIABLE SECTION!!!");
|
|
|
|
|
doVariable = true;
|
|
|
|
|
}
|
|
|
|
|
log.println();
|
|
|
|
|
}
|
|
|
|
|
wasVariable = isVariable;
|
|
|
|
|
}
|
|
|
|
|
oldStr.setLength(0);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
chr.getChars(0, chr.length(), codeUnits, 0);
|
|
|
|
|
|
|
|
|
|
log.print(Utility.hex(codeUnits, 0, chr.length(), " ") + "; ");
|
2001-08-30 20:50:18 +00:00
|
|
|
|
boolean nonePrinted = true;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
boolean isFirst = true;
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
for (int q = 0; q < len; ++q) {
|
|
|
|
|
nonePrinted = false;
|
|
|
|
|
newPrimary.setLength(0);
|
|
|
|
|
newSecondary.setLength(0);
|
|
|
|
|
newTertiary.setLength(0);
|
|
|
|
|
|
|
|
|
|
int pri = UCA.getPrimary(ces[q]);
|
|
|
|
|
int sec = UCA.getSecondary(ces[q]);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
int ter = UCA.getTertiary(ces[q]);
|
|
|
|
|
|
|
|
|
|
oldStr.append(UCA.ceToString(ces[q]));// + "," + Integer.toString(ces[q],16);
|
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
// special treatment for unsupported!
|
2001-10-31 00:02:54 +00:00
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (UCA.isImplicitLeadPrimary(pri)) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
++q;
|
|
|
|
|
oldStr.append(UCA.ceToString(ces[q]));// + "," + Integer.toString(ces[q],16);
|
|
|
|
|
|
|
|
|
|
int pri2 = UCA.getPrimary(ces[q]);
|
|
|
|
|
// get old code point
|
2002-06-02 05:07:08 +00:00
|
|
|
|
|
|
|
|
|
int cp = UCA.ImplicitToCodePoint(pri, pri2);
|
|
|
|
|
|
|
|
|
|
// double check results!
|
|
|
|
|
|
|
|
|
|
int[] testImplicit = new int[2];
|
|
|
|
|
UCA.CodepointToImplicit(cp, testImplicit);
|
|
|
|
|
boolean gotError = pri != testImplicit[0] || pri2 != testImplicit[1];
|
|
|
|
|
if (gotError) {
|
|
|
|
|
System.out.println("ERROR");
|
|
|
|
|
}
|
|
|
|
|
if (DEBUG || gotError) {
|
|
|
|
|
System.out.println("Computing Unsupported CP as: "
|
|
|
|
|
+ Utility.hex(pri)
|
|
|
|
|
+ ", " + Utility.hex(pri2)
|
|
|
|
|
+ " => " + Utility.hex(cp)
|
|
|
|
|
+ " => " + Utility.hex(testImplicit[0])
|
|
|
|
|
+ ", " + Utility.hex(testImplicit[1])
|
|
|
|
|
// + ", " + Utility.hex(fixPrimary(pri) & 0xFFFFFFFFL)
|
2001-10-31 00:02:54 +00:00
|
|
|
|
);
|
2002-06-02 05:07:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pri = cp | MARK_CODE_POINT;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
}
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
if (sec != 0x20) {
|
|
|
|
|
boolean changed = secEq.add(new Integer(sec), new Integer(pri));
|
|
|
|
|
}
|
|
|
|
|
if (ter != 0x2) {
|
|
|
|
|
boolean changed = terEq.add(new Integer(ter), new Integer((pri << 16) | sec));
|
|
|
|
|
}
|
|
|
|
|
if (sampleEq[sec] == null) sampleEq[sec] = chr;
|
|
|
|
|
if (sampleEq[ter] == null) sampleEq[ter] = chr;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
|
|
|
|
|
// int oldPrimaryValue = UCA.getPrimary(ces[q]);
|
|
|
|
|
int np = fixPrimary(pri);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2002-05-29 23:18:15 +00:00
|
|
|
|
try {
|
|
|
|
|
hexBytes(np, newPrimary);
|
|
|
|
|
hexBytes(fixSecondary(sec), newSecondary);
|
|
|
|
|
hexBytes(fixTertiary(ter), newTertiary);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
throw new ChainException("Character is {0}", new String[] {Utility.hex(chr)}, e);
|
|
|
|
|
}
|
2001-10-31 00:02:54 +00:00
|
|
|
|
if (isFirst) {
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (!sameTopByte(np, lastNp)) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
summary.println("Last: " + Utility.hex(lastNp & 0xFFFFFFFFL) + " " + ucd.getName(UTF16.charAt(lastChr,0)));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
summary.println();
|
|
|
|
|
if (doVariable) {
|
|
|
|
|
doVariable = false;
|
|
|
|
|
summary.println("[variable top = " + Utility.hex(primaryDelta[firstPrimary]) + "] # END OF VARIABLE SECTION!!!");
|
|
|
|
|
summary.println();
|
|
|
|
|
}
|
2001-10-31 00:02:54 +00:00
|
|
|
|
summary.println("First: " + Utility.hex(np & 0xFFFFFFFFL) + " " + ucd.getName(UTF16.charAt(chr,0)));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
lastNp = np;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
isFirst = false;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
log.print("[" + newPrimary
|
|
|
|
|
+ ", " + newSecondary
|
|
|
|
|
+ ", " + newTertiary
|
|
|
|
|
+ "]");
|
|
|
|
|
}
|
|
|
|
|
if (nonePrinted) {
|
|
|
|
|
log.print("[,,]");
|
|
|
|
|
oldStr.append(UCA.ceToString(0));
|
|
|
|
|
}
|
2001-10-31 00:02:54 +00:00
|
|
|
|
longLog.print(" # " + oldStr + " # " + ucd.getName(UTF16.charAt(chr, 0)));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
log.println();
|
|
|
|
|
lastChr = chr;
|
|
|
|
|
}
|
2001-10-31 00:02:54 +00:00
|
|
|
|
summary.println("Last: " + Utility.hex(lastNp) + " " + ucd.getName(UTF16.charAt(lastChr, 0)));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
String sample = "\u3400\u3401\u4DB4\u4DB5\u4E00\u4E01\u9FA4\u9FA5\uAC00\uAC01\uD7A2\uD7A3";
|
|
|
|
|
for (int i = 0; i < sample.length(); ++i) {
|
|
|
|
|
char ch = sample.charAt(i);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
log.println(Utility.hex(ch) + " => " + Utility.hex(fixHan(ch))
|
2001-08-30 20:50:18 +00:00
|
|
|
|
+ " " + ucd.getName(ch));
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
summary.println();
|
|
|
|
|
summary.println("# First Implicit: " + Utility.hex(0xFFFFFFFFL & getImplicitPrimary(0)));
|
|
|
|
|
summary.println("# Last Implicit: " + Utility.hex(0xFFFFFFFFL & getImplicitPrimary(0x10FFFF)));
|
2002-06-02 05:07:08 +00:00
|
|
|
|
summary.println("# First CJK: " + Utility.hex(0xFFFFFFFFL & getImplicitPrimary(0x4E00)));
|
|
|
|
|
summary.println("# Last CJK: " + Utility.hex(0xFFFFFFFFL & getImplicitPrimary(0xFA2F)));
|
|
|
|
|
summary.println("# First CJK_A: " + Utility.hex(0xFFFFFFFFL & getImplicitPrimary(0x3400)));
|
|
|
|
|
summary.println("# Last CJK: " + Utility.hex(0xFFFFFFFFL & getImplicitPrimary(0x4DBF)));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
boolean lastOne = false;
|
|
|
|
|
for (int i = 0; i < 0x10FFFF; ++i) {
|
2002-06-02 05:07:08 +00:00
|
|
|
|
boolean thisOne = UCA.isCJK(i) || UCA.isCJK_AB(i);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (thisOne != lastOne) {
|
|
|
|
|
summary.println("# Implicit Cusp: CJK=" + lastOne + ": " + Utility.hex(i-1) + " => " + Utility.hex(0xFFFFFFFFL & getImplicitPrimary(i-1)));
|
|
|
|
|
summary.println("# Implicit Cusp: CJK=" + thisOne + ": " + Utility.hex(i) + " => " + Utility.hex(0xFFFFFFFFL & getImplicitPrimary(i)));
|
|
|
|
|
lastOne = thisOne;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
summary.println("Compact Secondary 153: " + compactSecondary[0x153]);
|
|
|
|
|
summary.println("Compact Secondary 157: " + compactSecondary[0x157]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
summary.println();
|
|
|
|
|
summary.println("# Disjoint classes for Secondaries");
|
|
|
|
|
summary.println("#" + secEq.toString());
|
|
|
|
|
|
|
|
|
|
summary.println();
|
|
|
|
|
summary.println("# Disjoint classes for Tertiaries");
|
|
|
|
|
summary.println("#" + terEq.toString());
|
|
|
|
|
|
|
|
|
|
summary.println();
|
|
|
|
|
summary.println("# Example characters for each TERTIARY value");
|
|
|
|
|
summary.println();
|
|
|
|
|
summary.println("# UCA : (FRAC) CODE [ UCA CE ] Name");
|
|
|
|
|
summary.println();
|
|
|
|
|
for (int i = 0; i < sampleEq.length; ++i) {
|
|
|
|
|
if (sampleEq[i] == null) continue;
|
|
|
|
|
if (i == 0x20) {
|
|
|
|
|
summary.println();
|
|
|
|
|
summary.println("# Example characters for each SECONDARY value");
|
|
|
|
|
summary.println();
|
|
|
|
|
summary.println("# UCA : (FRAC) CODE [ UCA CE ] Name");
|
|
|
|
|
summary.println();
|
|
|
|
|
}
|
|
|
|
|
int len = collator.getCEs(sampleEq[i], true, ces);
|
|
|
|
|
int newval = i < 0x20 ? fixTertiary(i) : fixSecondary(i);
|
|
|
|
|
summary.print("# " + Utility.hex(i) + ": (" + Utility.hex(newval) + ") "
|
|
|
|
|
+ Utility.hex(sampleEq[i]) + " ");
|
|
|
|
|
for (int q = 0; q < len; ++q) {
|
|
|
|
|
summary.print(UCA.ceToString(ces[q]));
|
|
|
|
|
}
|
|
|
|
|
summary.println(" " + ucd.getName(sampleEq[i]));
|
|
|
|
|
}
|
|
|
|
|
log.close();
|
|
|
|
|
summary.close();
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
/*
|
2001-08-30 20:50:18 +00:00
|
|
|
|
static boolean isFixedIdeograph(int cp) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
return (0x3400 <= cp && cp <= 0x4DB5
|
|
|
|
|
|| 0x4E00 <= cp && cp <= 0x9FA5
|
|
|
|
|
|| 0xF900 <= cp && cp <= 0xFA2D // compat: most of these decompose anyway
|
|
|
|
|
|| 0x20000 <= cp && cp <= 0x2A6D6
|
|
|
|
|
|| 0x2F800 <= cp && cp <= 0x2FA1D // compat: most of these decompose anyway
|
|
|
|
|
);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
2002-06-02 05:07:08 +00:00
|
|
|
|
*/
|
2001-10-31 00:02:54 +00:00
|
|
|
|
/*
|
|
|
|
|
3400;<CJK Ideograph Extension A, First>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
4DB5;<CJK Ideograph Extension A, Last>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
4E00;<CJK Ideograph, First>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
9FA5;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
20000;<CJK Ideograph Extension B, First>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
2A6D6;<CJK Ideograph Extension B, Last>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
2F800;CJK COMPATIBILITY IDEOGRAPH-2F800;Lo;0;L;4E3D;;;;N;;;;;
|
|
|
|
|
...
|
|
|
|
|
2FA1D;CJK COMPATIBILITY IDEOGRAPH-2FA1D;Lo;0;L;2A600;;;;N;;;;;
|
|
|
|
|
*/
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
/*
|
2001-08-30 20:50:18 +00:00
|
|
|
|
static int remapUCA_CompatibilityIdeographToCp(int cp) {
|
|
|
|
|
switch (cp) {
|
|
|
|
|
case 0x9FA6: return 0xFA0E; // FA0E ; [.9FA6.0020.0002.FA0E] # CJK COMPATIBILITY IDEOGRAPH-FA0E
|
|
|
|
|
case 0x9FA7: return 0xFA0F; // FA0F ; [.9FA7.0020.0002.FA0F] # CJK COMPATIBILITY IDEOGRAPH-FA0F
|
|
|
|
|
case 0x9FA8: return 0xFA11; // FA11 ; [.9FA8.0020.0002.FA11] # CJK COMPATIBILITY IDEOGRAPH-FA11
|
|
|
|
|
case 0x9FA9: return 0xFA13; // FA13 ; [.9FA9.0020.0002.FA13] # CJK COMPATIBILITY IDEOGRAPH-FA13
|
|
|
|
|
case 0x9FAA: return 0xFA14; // FA14 ; [.9FAA.0020.0002.FA14] # CJK COMPATIBILITY IDEOGRAPH-FA14
|
|
|
|
|
case 0x9FAB: return 0xFA1F; // FA1F ; [.9FAB.0020.0002.FA1F] # CJK COMPATIBILITY IDEOGRAPH-FA1F
|
|
|
|
|
case 0x9FAC: return 0xFA21; // FA21 ; [.9FAC.0020.0002.FA21] # CJK COMPATIBILITY IDEOGRAPH-FA21
|
|
|
|
|
case 0x9FAD: return 0xFA23; // FA23 ; [.9FAD.0020.0002.FA23] # CJK COMPATIBILITY IDEOGRAPH-FA23
|
|
|
|
|
case 0x9FAE: return 0xFA24; // FA24 ; [.9FAE.0020.0002.FA24] # CJK COMPATIBILITY IDEOGRAPH-FA24
|
|
|
|
|
case 0x9FAF: return 0xFA27; // FA27 ; [.9FAF.0020.0002.FA27] # CJK COMPATIBILITY IDEOGRAPH-FA27
|
|
|
|
|
case 0x9FB0: return 0xFA28; // FA28 ; [.9FB0.0020.0002.FA28] # CJK COMPATIBILITY IDEOGRAPH-FA28
|
|
|
|
|
case 0x9FB1: return 0xFA29; // FA29 ; [.9FB1.0020.0002.FA29] # CJK COMPATIBILITY IDEOGRAPH-FA29
|
|
|
|
|
}
|
|
|
|
|
return cp;
|
|
|
|
|
}
|
2002-06-02 05:07:08 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Function used to collapse the two different Han blocks from UCA into one.
|
|
|
|
|
* It does this by reversing the order of the two groups A and B below.
|
|
|
|
|
* A:
|
|
|
|
|
* 4E00..9FFF; CJK Unified Ideographs
|
|
|
|
|
* F900..FAFF; CJK Compatibility Ideographs
|
|
|
|
|
* B:
|
|
|
|
|
* 3400..4DBF; CJK Unified Ideographs Extension A
|
|
|
|
|
* As long as
|
|
|
|
|
* no new B characters are allocated between 4E00 and FAFF, and
|
|
|
|
|
* no new A characters are outside of this range,
|
|
|
|
|
* (very high probability) this simple code will work.
|
|
|
|
|
*/
|
|
|
|
|
static int swapCJK(int i) {
|
|
|
|
|
if (i >= UCA.CJK_LIMIT_COMPAT_USED) return i;
|
|
|
|
|
if (i >= UCA.CJK_BASE) return i - UCA.CJK_BASE;
|
|
|
|
|
return i + (UCA.CJK_LIMIT_COMPAT_USED - UCA.CJK_BASE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CONSTANTS
|
|
|
|
|
|
|
|
|
|
static final int
|
|
|
|
|
BYTES_TO_AVOID = 3,
|
|
|
|
|
OTHER_COUNT = 256 - BYTES_TO_AVOID,
|
|
|
|
|
LAST_COUNT = OTHER_COUNT / 2,
|
|
|
|
|
LAST_COUNT2 = OTHER_COUNT / 16, // room for intervening, without expanding to 5 bytes
|
|
|
|
|
IMPLICIT_3BYTE_COUNT = 1,
|
|
|
|
|
IMPLICIT_BASE_BYTE = 0xE0,
|
|
|
|
|
|
|
|
|
|
IMPLICIT_LIMIT_BYTE = IMPLICIT_BASE_BYTE + 4, // leave room for 1 3-byte and 2 4-byte forms
|
|
|
|
|
|
|
|
|
|
IMPLICIT_4BYTE_BOUNDARY = IMPLICIT_3BYTE_COUNT * OTHER_COUNT * LAST_COUNT,
|
|
|
|
|
LAST_MULTIPLIER = OTHER_COUNT / LAST_COUNT,
|
|
|
|
|
LAST2_MULTIPLIER = OTHER_COUNT / LAST_COUNT2,
|
|
|
|
|
IMPLICIT_BASE_3BYTE = (IMPLICIT_BASE_BYTE << 24) + 0x030300,
|
|
|
|
|
IMPLICIT_BASE_4BYTE = ((IMPLICIT_BASE_BYTE + IMPLICIT_3BYTE_COUNT) << 24) + 0x030303
|
|
|
|
|
;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
// GET IMPLICIT PRIMARY WEIGHTS
|
|
|
|
|
// Return value is left justified primary key
|
|
|
|
|
|
|
|
|
|
static int getImplicitPrimary(int cp) {
|
|
|
|
|
// we must skip all 00, 01, 02 bytes, so most bytes have 253 values
|
|
|
|
|
// we must leave a gap of 01 between all values of the last byte, so the last byte has 126 values (3 byte case)
|
|
|
|
|
// we shift so that HAN all has the same first primary, for compression.
|
|
|
|
|
// for the 4 byte case, we make the gap as large as we can fit.
|
|
|
|
|
// Three byte forms are EC xx xx, ED xx xx, EE xx xx (with a gap of 1)
|
|
|
|
|
// Four byte forms (most supplementaries) are EF xx xx xx (with a gap of LAST2_MULTIPLIER == 14)
|
|
|
|
|
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if (DEBUG) System.out.println("Incoming: " + Utility.hex(cp));
|
|
|
|
|
|
|
|
|
|
if (!UCA.isCJK(cp) && !UCA.isCJK_AB(cp)) cp += 0x10FFFF; // space everything else after CJK
|
|
|
|
|
|
|
|
|
|
if (DEBUG) System.out.println("Remapped: " + Utility.hex(cp));
|
|
|
|
|
|
|
|
|
|
cp = swapCJK(cp);
|
|
|
|
|
|
|
|
|
|
if (DEBUG) System.out.println("CJK swapped: " + Utility.hex(cp));
|
|
|
|
|
// we now have a range of numbers from 0 to 21FFFF.
|
|
|
|
|
|
|
|
|
|
int last0 = cp - IMPLICIT_4BYTE_BOUNDARY;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
if (last0 < 0) {
|
|
|
|
|
int last1 = cp / LAST_COUNT;
|
|
|
|
|
last0 = cp % LAST_COUNT;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int last2 = last1 / OTHER_COUNT;
|
|
|
|
|
last1 %= OTHER_COUNT;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
|
|
|
|
|
if (DEBUG || last2 > 0xFF-BYTES_TO_AVOID) System.out.println("3B: " + Utility.hex(cp) + " => "
|
|
|
|
|
+ Utility.hex(last2) + ", "
|
|
|
|
|
+ Utility.hex(last1) + ", "
|
|
|
|
|
+ Utility.hex(last0) + ", "
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return IMPLICIT_BASE_3BYTE + (last2 << 24) + (last1 << 16) + ((last0*LAST_MULTIPLIER) << 8);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
} else {
|
|
|
|
|
int last1 = last0 / LAST_COUNT2;
|
|
|
|
|
last0 %= LAST_COUNT2;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int last2 = last1 / OTHER_COUNT;
|
|
|
|
|
last1 %= OTHER_COUNT;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
|
|
|
|
|
int last3 = last2 / OTHER_COUNT;
|
|
|
|
|
last2 %= OTHER_COUNT;
|
|
|
|
|
|
|
|
|
|
if (DEBUG || last3 > 0xFF-BYTES_TO_AVOID) System.out.println("4B: " + Utility.hex(cp) + " => "
|
|
|
|
|
+ Utility.hex(last3) + ", "
|
|
|
|
|
+ Utility.hex(last2) + ", "
|
|
|
|
|
+ Utility.hex(last1) + ", "
|
|
|
|
|
+ Utility.hex(last0 * LAST2_MULTIPLIER) + ", "
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return IMPLICIT_BASE_4BYTE + (last3 << 24) + (last2 << 16) + (last1 << 8) + (last0 * LAST2_MULTIPLIER);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void showImplicit(String title, int cp) {
|
|
|
|
|
if (DEBUG) {
|
|
|
|
|
System.out.println(title + "-1: " + Utility.hex(cp-1) + " => "
|
|
|
|
|
+ Utility.hex(0xFFFFFFFFL & getImplicitPrimary(cp-1)));
|
|
|
|
|
System.out.println(title + ": " + Utility.hex(cp) + " => "
|
|
|
|
|
+ Utility.hex(0xFFFFFFFFL & getImplicitPrimary(cp)));
|
|
|
|
|
System.out.println(title + "+1: " + Utility.hex(cp+1) + " => "
|
|
|
|
|
+ Utility.hex(0xFFFFFFFFL & getImplicitPrimary(cp+1)));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TEST PROGRAM
|
|
|
|
|
|
|
|
|
|
static void checkImplicit() {
|
|
|
|
|
long oldPrimary = 0;
|
|
|
|
|
System.out.println("Starting Implicit Check");
|
2002-06-02 05:07:08 +00:00
|
|
|
|
|
|
|
|
|
showImplicit("# First CJK", UCA.CJK_BASE);
|
|
|
|
|
showImplicit("# Last CJK", UCA.CJK_LIMIT-1);
|
|
|
|
|
showImplicit("# First CJK-compat", UCA.CJK_BASE_COMPAT_USED);
|
|
|
|
|
showImplicit("# Last CJK-compat", UCA.CJK_LIMIT_COMPAT_USED-1);
|
|
|
|
|
showImplicit("# First CJK_A", UCA.CJK_A_BASE);
|
|
|
|
|
showImplicit("# Last CJK_A", UCA.CJK_A_LIMIT-1);
|
|
|
|
|
showImplicit("# First CJK_B", UCA.CJK_B_BASE);
|
|
|
|
|
showImplicit("# Last CJK_B", UCA.CJK_B_LIMIT-1);
|
|
|
|
|
showImplicit("# First Other Implicit", 0);
|
|
|
|
|
showImplicit("# Last Other Implicit", 0x10FFFF);
|
|
|
|
|
showImplicit("# Boundary", IMPLICIT_4BYTE_BOUNDARY);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int oldChar = -1;
|
|
|
|
|
for (int batch = 0; batch < 3; ++batch) {
|
|
|
|
|
for (int i = 0; i <= 0x10FFFF; ++i) {
|
|
|
|
|
|
|
|
|
|
// separate the three groups
|
|
|
|
|
|
|
|
|
|
if (UCA.isCJK(i)) {
|
|
|
|
|
if (batch != 0) continue;
|
|
|
|
|
} else if (UCA.isCJK_AB(i)) {
|
|
|
|
|
if (batch != 1) continue;
|
|
|
|
|
} else if (batch != 2) continue;
|
|
|
|
|
|
|
|
|
|
long newPrimary = 0xFFFFFFFFL & getImplicitPrimary(i);
|
|
|
|
|
|
|
|
|
|
// test correct values
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((newPrimary) < (oldPrimary)) {
|
|
|
|
|
throw new IllegalArgumentException(Utility.hex(i) + ": overlap: "
|
|
|
|
|
+ Utility.hex(oldChar) + ", " + Utility.hex(oldPrimary)
|
|
|
|
|
+ Utility.hex(i) + ", " + " > " + Utility.hex(newPrimary));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
long b0 = (newPrimary >> 24) & 0xFF;
|
|
|
|
|
long b1 = (newPrimary >> 16) & 0xFF;
|
|
|
|
|
long b2 = (newPrimary >> 8) & 0xFF;
|
|
|
|
|
long b3 = newPrimary & 0xFF;
|
|
|
|
|
|
|
|
|
|
if (b0 < IMPLICIT_BASE_BYTE || b0 >= IMPLICIT_LIMIT_BYTE || b1 < 3 || b2 < 3 || b3 == 1 || b3 == 2) {
|
|
|
|
|
throw new IllegalArgumentException(Utility.hex(i) + ": illegal byte value: " + Utility.hex(newPrimary)
|
|
|
|
|
+ ", " + Utility.hex(b1) + ", " + Utility.hex(b2) + ", " + Utility.hex(b3));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// print range to look at
|
|
|
|
|
|
|
|
|
|
if (false) {
|
|
|
|
|
int b = i & 0xFF;
|
|
|
|
|
if (b == 255 || b == 0 || b == 1) {
|
|
|
|
|
System.out.println(Utility.hex(i) + " => " + Utility.hex(newPrimary));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
oldPrimary = newPrimary;
|
|
|
|
|
oldChar = i;
|
|
|
|
|
}
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
System.out.println("Successful Implicit Check!!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static boolean sameTopByte(int x, int y) {
|
|
|
|
|
int x1 = x & 0xFF0000;
|
|
|
|
|
int y1 = y & 0xFF0000;
|
|
|
|
|
if (x1 != 0 || y1 != 0) return x1 == y1;
|
|
|
|
|
x1 = x & 0xFF00;
|
|
|
|
|
y1 = y & 0xFF00;
|
|
|
|
|
return x1 == y1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// return true if either:
|
|
|
|
|
// a. toLower(NFKD(x)) != x (using FULL case mappings), OR
|
|
|
|
|
// b. toSmallKana(NFKD(x)) != x.
|
|
|
|
|
|
|
|
|
|
static final boolean needsCaseBit(String x) {
|
|
|
|
|
String s = NFKD.normalize(x);
|
|
|
|
|
if (!ucd.getCase(s, FULL, LOWER).equals(s)) return true;
|
|
|
|
|
if (!toSmallKana(s).equals(s)) return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static final StringBuffer toSmallKanaBuffer = new StringBuffer();
|
|
|
|
|
|
|
|
|
|
static final String toSmallKana(String s) {
|
|
|
|
|
// note: don't need to do surrogates; none exist
|
|
|
|
|
boolean gotOne = false;
|
|
|
|
|
toSmallKanaBuffer.setLength(0);
|
|
|
|
|
for (int i = 0; i < s.length(); ++i) {
|
|
|
|
|
char c = s.charAt(i);
|
|
|
|
|
if ('\u3042' <= c && c <= '\u30EF') {
|
|
|
|
|
switch(c - 0x3000) {
|
|
|
|
|
case 0x42: case 0x44: case 0x46: case 0x48: case 0x4A: case 0x64: case 0x84: case 0x86: case 0x8F:
|
|
|
|
|
case 0xA2: case 0xA4: case 0xA6: case 0xA8: case 0xAA: case 0xC4: case 0xE4: case 0xE6: case 0xEF:
|
|
|
|
|
--c; // maps to previous char
|
|
|
|
|
gotOne = true;
|
|
|
|
|
break;
|
|
|
|
|
case 0xAB:
|
|
|
|
|
c = '\u30F5';
|
|
|
|
|
gotOne = true;
|
|
|
|
|
break;
|
|
|
|
|
case 0xB1:
|
|
|
|
|
c = '\u30F6';
|
|
|
|
|
gotOne = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
toSmallKanaBuffer.append(c);
|
|
|
|
|
}
|
|
|
|
|
if (gotOne) return toSmallKanaBuffer.toString();
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
30F5;KATAKANA LETTER SMALL KA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30AB;KATAKANA LETTER KA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30F6;KATAKANA LETTER SMALL KE;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30B1;KATAKANA LETTER KE;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
|
|
|
|
|
30A1;KATAKANA LETTER SMALL A;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30A2;KATAKANA LETTER A;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30A3;KATAKANA LETTER SMALL I;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30A4;KATAKANA LETTER I;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30A5;KATAKANA LETTER SMALL U;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30A6;KATAKANA LETTER U;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30A7;KATAKANA LETTER SMALL E;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30A8;KATAKANA LETTER E;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30A9;KATAKANA LETTER SMALL O;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30AA;KATAKANA LETTER O;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30C3;KATAKANA LETTER SMALL TU;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30C4;KATAKANA LETTER TU;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30E3;KATAKANA LETTER SMALL YA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30E4;KATAKANA LETTER YA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30E5;KATAKANA LETTER SMALL YU;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30E6;KATAKANA LETTER YU;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30E7;KATAKANA LETTER SMALL YO;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30E8;KATAKANA LETTER YO;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30EE;KATAKANA LETTER SMALL WA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
30EF;KATAKANA LETTER WA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
|
|
|
|
|
3041;HIRAGANA LETTER SMALL A;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3042;HIRAGANA LETTER A;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3043;HIRAGANA LETTER SMALL I;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3044;HIRAGANA LETTER I;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3045;HIRAGANA LETTER SMALL U;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3046;HIRAGANA LETTER U;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
|
|
|
|
|
3047;HIRAGANA LETTER SMALL E;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3048;HIRAGANA LETTER E;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3049;HIRAGANA LETTER SMALL O;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
304A;HIRAGANA LETTER O;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3063;HIRAGANA LETTER SMALL TU;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3064;HIRAGANA LETTER TU;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3083;HIRAGANA LETTER SMALL YA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3084;HIRAGANA LETTER YA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3085;HIRAGANA LETTER SMALL YU;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3086;HIRAGANA LETTER YU;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3087;HIRAGANA LETTER SMALL YO;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
3088;HIRAGANA LETTER YO;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
308E;HIRAGANA LETTER SMALL WA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
308F;HIRAGANA LETTER WA;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static final int secondaryDoubleStart = 0xD0;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
static final int MARK_CODE_POINT = 0x40000000;
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
2001-10-31 00:02:54 +00:00
|
|
|
|
static int fixPrimary(int x) {
|
|
|
|
|
int result = 0;
|
2002-06-02 05:07:08 +00:00
|
|
|
|
if ((x & MARK_CODE_POINT) != 0) result = getImplicitPrimary(x & ~MARK_CODE_POINT);
|
|
|
|
|
else result = primaryDelta[x];
|
2001-10-31 00:02:54 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-30 20:50:18 +00:00
|
|
|
|
static int fixSecondary(int x) {
|
|
|
|
|
x = compactSecondary[x];
|
|
|
|
|
return fixSecondary2(x, compactSecondary[0x153], compactSecondary[0x157]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int fixSecondary2(int x, int gap1, int gap2) {
|
|
|
|
|
int top = x;
|
|
|
|
|
int bottom = 0;
|
|
|
|
|
if (top == 0) {
|
|
|
|
|
// ok, zero
|
|
|
|
|
} else if (top == 1) {
|
|
|
|
|
top = COMMON;
|
|
|
|
|
} else {
|
|
|
|
|
top *= 2; // create gap between elements. top is now 4 or more
|
|
|
|
|
top += 0x80 + COMMON - 2; // insert gap to make top at least 87
|
|
|
|
|
|
|
|
|
|
// lowest values are singletons. Others are 2 bytes
|
|
|
|
|
if (top > secondaryDoubleStart) {
|
|
|
|
|
top -= secondaryDoubleStart;
|
|
|
|
|
top *= 4; // leave bigger gap just in case
|
|
|
|
|
if (x > gap1) {
|
|
|
|
|
top += 256; // leave gap after COMBINING ENCLOSING KEYCAP (see below)
|
|
|
|
|
}
|
|
|
|
|
if (x > gap2) {
|
|
|
|
|
top += 64; // leave gap after RUNIC LETTER SHORT-TWIG-AR A (see below)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bottom = (top % LAST_COUNT) * 2 + COMMON;
|
|
|
|
|
top = (top / LAST_COUNT) + secondaryDoubleStart;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (top << 8) | bottom;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
# 0153: (EE3D) 20E3 [0000.0153.0002] COMBINING ENCLOSING KEYCAP
|
|
|
|
|
# 0154: (EE41) 0153 [0997.0154.0004][08B1.0020.0004] LATIN SMALL LIGATURE OE
|
|
|
|
|
# 0155: (EE45) 017F [09F3.0155.0004] LATIN SMALL LETTER LONG S
|
|
|
|
|
# 0157: (EE49) 16C6 [1656.0157.0004] RUNIC LETTER SHORT-TWIG-AR A
|
|
|
|
|
# 0158: (EE4D) 2776 [0858.0158.0006] DINGBAT NEGATIVE CIRCLED DIGIT ONE
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static int fixTertiary(int x) {
|
|
|
|
|
if (x == 0) return x;
|
2002-05-29 23:18:15 +00:00
|
|
|
|
if (x == 1 || x == 7) throw new IllegalArgumentException("Tertiary illegal: " + x);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
// 2 => COMMON, 1 is unused
|
2002-05-29 23:18:15 +00:00
|
|
|
|
int y = x < 7 ? x : x - 1; // we now use 1F = MAX. Causes a problem so we shift everything to fill a gap at 7 (unused).
|
|
|
|
|
|
|
|
|
|
int result = 2 * (y - 2) + COMMON;
|
|
|
|
|
|
|
|
|
|
if (result >= 0x3E) throw new IllegalArgumentException("Tertiary too large: "
|
|
|
|
|
+ Utility.hex(x) + " => " + Utility.hex(result));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
|
|
|
|
|
// get case bits. 00 is low, 01 is mixed (never happens), 10 is high
|
|
|
|
|
if (isUpperTertiary[x]) result |= 0x80;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static final boolean[] isUpperTertiary = new boolean[32];
|
|
|
|
|
static {
|
|
|
|
|
isUpperTertiary[0x8] = true;
|
|
|
|
|
isUpperTertiary[0x9] = true;
|
|
|
|
|
isUpperTertiary[0xa] = true;
|
|
|
|
|
isUpperTertiary[0xb] = true;
|
|
|
|
|
isUpperTertiary[0xc] = true;
|
|
|
|
|
isUpperTertiary[0xe] = true;
|
|
|
|
|
isUpperTertiary[0x11] = true;
|
|
|
|
|
isUpperTertiary[0x12] = true;
|
|
|
|
|
isUpperTertiary[0x1D] = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void checkFixes() {
|
|
|
|
|
System.out.println("Checking Secondary/Tertiary Fixes");
|
|
|
|
|
int lastVal = -1;
|
|
|
|
|
for (int i = 0; i <= 0x16E; ++i) {
|
|
|
|
|
if (i == 0x153) {
|
|
|
|
|
System.out.println("debug");
|
|
|
|
|
}
|
|
|
|
|
int val = fixSecondary2(i, 999, 999); // HACK for UCA
|
|
|
|
|
if (val <= lastVal) throw new IllegalArgumentException(
|
|
|
|
|
"Unordered: " + Utility.hex(val) + " => " + Utility.hex(lastVal));
|
|
|
|
|
int top = val >>> 8;
|
|
|
|
|
int bottom = val & 0xFF;
|
|
|
|
|
if (top != 0 && (top < COMMON || top > 0xEF)
|
|
|
|
|
|| (top > COMMON && top < 0x87)
|
|
|
|
|
|| (bottom != 0 && (isEven(bottom) || bottom < COMMON || bottom > 0xFD))
|
|
|
|
|
|| (bottom == 0 && top != 0 && isEven(top))) {
|
|
|
|
|
throw new IllegalArgumentException("Secondary out of range: " + Utility.hex(i) + " => "
|
|
|
|
|
+ Utility.hex(top) + ", " + Utility.hex(bottom));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lastVal = -1;
|
|
|
|
|
for (int i = 0; i <= 0x1E; ++i) {
|
2002-05-29 23:18:15 +00:00
|
|
|
|
if (i == 1 || i == 7) continue; // never occurs
|
2001-08-30 20:50:18 +00:00
|
|
|
|
int val = fixTertiary(i);
|
|
|
|
|
val &= 0x7F; // mask off case bits
|
|
|
|
|
if (val <= lastVal) throw new IllegalArgumentException(
|
|
|
|
|
"Unordered: " + Utility.hex(val) + " => " + Utility.hex(lastVal));
|
|
|
|
|
if (val != 0 && (isEven(val) || val < COMMON || val > 0x3D)) {
|
|
|
|
|
throw new IllegalArgumentException("Tertiary out of range: " + Utility.hex(i) + " => "
|
|
|
|
|
+ Utility.hex(val));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
System.out.println("END Checking Secondary/Tertiary Fixes");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static boolean isEven(int x) {
|
|
|
|
|
return (x & 1) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* static String ceToString(int primary, int secondary, int tertiary) {
|
|
|
|
|
return "[" + hexBytes(primary) + ", "
|
|
|
|
|
+ hexBytes(secondary) + ", "
|
|
|
|
|
+ hexBytes(tertiary) + "]";
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static String hexBytes(long x) {
|
|
|
|
|
StringBuffer temp = new StringBuffer();
|
|
|
|
|
hexBytes(x, temp);
|
|
|
|
|
return temp.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void hexBytes(long x, StringBuffer result) {
|
|
|
|
|
byte lastb = 1;
|
|
|
|
|
for (int shift = 24; shift >= 0; shift -= 8) {
|
|
|
|
|
byte b = (byte)(x >>> shift);
|
|
|
|
|
if (b != 0) {
|
|
|
|
|
if (result.length() != 0) result.append(" ");
|
2001-10-31 00:02:54 +00:00
|
|
|
|
result.append(Utility.hex(b));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
//if (lastb == 0) System.err.println(" bad zero byte: " + result);
|
|
|
|
|
}
|
|
|
|
|
lastb = b;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int fixHan(char ch) { // BUMP HANGUL, HAN
|
|
|
|
|
if (ch < 0x3400 || ch > 0xD7A3) return -1;
|
|
|
|
|
|
|
|
|
|
char ch2 = ch;
|
|
|
|
|
if (ch >= 0xAC00) ch2 -= (0xAC00 - 0x9FA5 - 1);
|
|
|
|
|
if (ch >= 0x4E00) ch2 -= (0x4E00 - 0x4DB5 - 1);
|
|
|
|
|
|
|
|
|
|
return 0x6000 + (ch2-0x3400); // room to interleave
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static BitSet bumps = new BitSet();
|
|
|
|
|
static BitSet singles = new BitSet();
|
|
|
|
|
|
|
|
|
|
static void findBumps(char[] representatives) {
|
|
|
|
|
int[] ces = new int[100];
|
|
|
|
|
int[] scripts = new int[100];
|
|
|
|
|
char[] scriptChar = new char[100];
|
|
|
|
|
|
|
|
|
|
// find representatives
|
|
|
|
|
|
|
|
|
|
for (char ch = 0; ch < 0xFFFF; ++ch) {
|
|
|
|
|
byte type = collator.getCEType(ch);
|
|
|
|
|
if (type < UCA.FIXED_CE) {
|
|
|
|
|
int len = collator.getCEs(String.valueOf(ch), true, ces);
|
|
|
|
|
int primary = UCA.getPrimary(ces[0]);
|
|
|
|
|
if (primary < variableHigh) continue;
|
|
|
|
|
/*
|
|
|
|
|
if (ch == 0x1160 || ch == 0x11A8) { // set bumps within Hangul L, V, T
|
|
|
|
|
bumps.set(primary);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
byte script = ucd.getScript(ch);
|
|
|
|
|
// HACK
|
|
|
|
|
if (ch == 0x0F7E || ch == 0x0F7F) script = TIBETAN_SCRIPT;
|
|
|
|
|
//if (script == ucd.GREEK_SCRIPT) System.out.println(ucd.getName(ch));
|
|
|
|
|
// get least primary for script
|
|
|
|
|
if (scripts[script] == 0 || scripts[script] > primary) {
|
|
|
|
|
byte cat = ucd.getCategory(ch);
|
|
|
|
|
// HACK
|
|
|
|
|
if (ch == 0x0F7E || ch == 0x0F7F) cat = ucd.OTHER_LETTER;
|
|
|
|
|
if (cat <= ucd.OTHER_LETTER && cat != ucd.Lm) {
|
|
|
|
|
scripts[script] = primary;
|
|
|
|
|
scriptChar[script] = ch;
|
2001-10-31 00:02:54 +00:00
|
|
|
|
if (script == ucd.GREEK_SCRIPT) System.out.println("*" + Utility.hex(primary) + ucd.getName(ch));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// get representative char for primary
|
|
|
|
|
if (representatives[primary] == 0 || representatives[primary] > ch) {
|
|
|
|
|
representatives[primary] = ch;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// set bumps
|
|
|
|
|
for (int i = 0; i < scripts.length; ++i) {
|
|
|
|
|
if (scripts[i] > 0) {
|
|
|
|
|
bumps.set(scripts[i]);
|
|
|
|
|
System.out.println(Utility.hex(scripts[i]) + " " + UCD.getScriptID_fromIndex((byte)i)
|
|
|
|
|
+ " " + Utility.hex(scriptChar[i]) + " " + ucd.getName(scriptChar[i]));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char[][] singlePairs = {{'a','z'}, {' ', ' '}}; // , {'\u3041', '\u30F3'}
|
|
|
|
|
for (int j = 0; j < singlePairs.length; ++j) {
|
|
|
|
|
for (char k = singlePairs[j][0]; k <= singlePairs[j][1]; ++k) {
|
|
|
|
|
setSingle(k, ces);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*setSingle('\u0300', ces);
|
|
|
|
|
setSingle('\u0301', ces);
|
|
|
|
|
setSingle('\u0302', ces);
|
|
|
|
|
setSingle('\u0303', ces);
|
|
|
|
|
setSingle('\u0308', ces);
|
|
|
|
|
setSingle('\u030C', ces);
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
bumps.set(0x089A); // lowest non-variable
|
|
|
|
|
bumps.set(0x4E00); // lowest Kangxi
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void setSingle(char ch, int[] ces) {
|
|
|
|
|
collator.getCEs(String.valueOf(ch), true, ces);
|
|
|
|
|
singles.set(UCA.getPrimary(ces[0]));
|
|
|
|
|
if (ch == 'a') gapForA = UCA.getPrimary(ces[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void copyFile(PrintWriter log, String fileName) throws IOException {
|
|
|
|
|
BufferedReader input = new BufferedReader(new FileReader(fileName));
|
|
|
|
|
while (true) {
|
|
|
|
|
String line = input.readLine();
|
|
|
|
|
if (line == null) break;
|
|
|
|
|
log.println(line);
|
|
|
|
|
}
|
|
|
|
|
input.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void writeCollationValidityLog() throws IOException {
|
|
|
|
|
log = new PrintWriter(new FileOutputStream("CheckCollationValidity.html"));
|
|
|
|
|
log.println("<html><body>");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//collator = new UCA(null);
|
|
|
|
|
if (false){
|
|
|
|
|
String key = collator.getSortKey("\u0308\u0301", UCA.SHIFTED, false);
|
|
|
|
|
String look = printableKey(key);
|
|
|
|
|
System.out.println(look);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
System.out.println("Sorting");
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i <= 0xFFFF; ++i) {
|
|
|
|
|
if (EXCLUDE_UNSUPPORTED && !collator.found.get(i)) continue;
|
|
|
|
|
if (0xD800 <= i && i <= 0xF8FF) continue; // skip surrogates and private use
|
|
|
|
|
//if (0xA000 <= c && c <= 0xA48F) continue; // skip YI
|
|
|
|
|
addString(UTF32.valueOf32(i), option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Hashtable multiTable = collator.getContracting();
|
|
|
|
|
Enumeration enum = multiTable.keys();
|
|
|
|
|
while (enum.hasMoreElements()) {
|
|
|
|
|
addString((String)enum.nextElement(), option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < extraConformanceTests.length; ++i) { // put in sample non-characters
|
|
|
|
|
addString(extraConformanceTests[i], option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < extraConformanceRanges.length; ++i) {
|
|
|
|
|
int start = extraConformanceRanges[i][0];
|
|
|
|
|
int end = extraConformanceRanges[i][1];
|
|
|
|
|
int increment = ((end - start + 1) / 303) + 1;
|
|
|
|
|
//System.out.println("Range: " + start + ", " + end + ", " + increment);
|
|
|
|
|
addString(start, option);
|
|
|
|
|
for (int j = start+1; j < end-1; j += increment) {
|
|
|
|
|
addString(j, option);
|
|
|
|
|
addString(j+1, option);
|
|
|
|
|
}
|
|
|
|
|
addString(end-1, option);
|
|
|
|
|
addString(end, option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
System.out.println("Total: " + sortedD.size());
|
|
|
|
|
Iterator it;
|
|
|
|
|
|
|
|
|
|
//ucd.init();
|
|
|
|
|
|
|
|
|
|
if (false) {
|
|
|
|
|
System.out.println("Listing Mismatches");
|
|
|
|
|
it = duplicates.keySet().iterator();
|
|
|
|
|
//String lastSortKey = "";
|
|
|
|
|
//String lastSource = "";
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
String source = (String)it.next();
|
|
|
|
|
String sortKey = (String)duplicates.get(source);
|
|
|
|
|
char endMark = source.charAt(source.length()-1);
|
|
|
|
|
source = source.substring(0,source.length()-1);
|
|
|
|
|
if (endMark == MARK1) {
|
|
|
|
|
log.println("<br>");
|
2001-10-31 00:02:54 +00:00
|
|
|
|
log.println("Mismatch: " + Utility.hex(source, " ")
|
2001-08-30 20:50:18 +00:00
|
|
|
|
+ ", " + ucd.getName(source) + "<br>");
|
|
|
|
|
log.print(" NFD:");
|
|
|
|
|
} else {
|
|
|
|
|
log.print(" NFC:");
|
|
|
|
|
}
|
|
|
|
|
log.println(UCA.toString(sortKey) + "<br>");
|
|
|
|
|
|
|
|
|
|
/*if (source.equals(lastSource)) {
|
|
|
|
|
it.remove();
|
|
|
|
|
--duplicateCount;
|
|
|
|
|
}
|
|
|
|
|
//lastSortKey = sortKey;
|
|
|
|
|
lastSource = lastSource;
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
System.out.println("Total: " + sortedD.size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
System.out.println("Writing");
|
|
|
|
|
String version = collator.getDataVersion();
|
|
|
|
|
|
|
|
|
|
if (GENERATED_NFC_MISMATCHES) showMismatches();
|
|
|
|
|
removeAdjacentDuplicates2();
|
|
|
|
|
checkBadDecomps(1, false); // if decomposition is off, all primaries should be identical
|
|
|
|
|
checkBadDecomps(2, true); // if decomposition is ON, all primaries and secondaries should be identical
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (DO_CHARTS) for (int j = 0; j < 2; ++j) { // with and without key
|
|
|
|
|
|
|
|
|
|
String name = "Collation";
|
|
|
|
|
String other = "CollationKey";
|
|
|
|
|
boolean SHOW_CE = false;
|
|
|
|
|
|
|
|
|
|
if (j == 1) {
|
|
|
|
|
SHOW_CE = true;
|
|
|
|
|
name = "CollationKey";
|
|
|
|
|
other = "Collation";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
it = sortedD.keySet().iterator();
|
|
|
|
|
|
|
|
|
|
int end = sortedD.size() >> 7;
|
|
|
|
|
|
|
|
|
|
PrintWriter out = writeHead(0, end, name, other, version, SHOW_CE);
|
|
|
|
|
|
|
|
|
|
String lastCol = "";
|
|
|
|
|
String lastChar = "";
|
|
|
|
|
boolean firstRow = true;
|
|
|
|
|
int page = 0;
|
|
|
|
|
for (int count = 0; it.hasNext(); count++) {
|
|
|
|
|
page = count >> 7;
|
|
|
|
|
if (count > 0 && (count & 0xf) == 0) {
|
|
|
|
|
if ((count & 0x7F) == 0) {
|
|
|
|
|
writeTail(out, page-1, name, other, SHOW_CE);
|
|
|
|
|
out = writeHead(page, end, name, other, version, SHOW_CE);
|
|
|
|
|
System.out.println("Block: " + page);
|
|
|
|
|
firstRow = true;
|
|
|
|
|
} else {
|
|
|
|
|
out.println("</tr><tr>");
|
|
|
|
|
firstRow = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
String col2 = (String)it.next();
|
|
|
|
|
String ch2 = (String)sortedD.get(col2);
|
|
|
|
|
|
|
|
|
|
// remove mark
|
|
|
|
|
col2 = col2.substring(0,col2.length()-1);
|
|
|
|
|
|
|
|
|
|
int strength = getStrengthDifference(lastCol, col2);
|
|
|
|
|
lastCol = col2;
|
|
|
|
|
|
|
|
|
|
out.print("<td");
|
|
|
|
|
int color = 0xFFFFFF;
|
|
|
|
|
switch (strength) {
|
|
|
|
|
// case 4: color = 0xFFFFFF; break; // white
|
|
|
|
|
case 3: color = 0xCCCCFF; break;
|
|
|
|
|
case 2: color = 0x9999FF; break;
|
|
|
|
|
case 1: color = 0x6666FF; break;
|
|
|
|
|
case 0: color = 0x3333FF; break;
|
|
|
|
|
}
|
|
|
|
|
/*if (mark == MARK2) {
|
|
|
|
|
color = color & 0xFF00FF;
|
|
|
|
|
}*/
|
|
|
|
|
if (color != 0xFFFFFF) out.print(" bgcolor='#" + Integer.toString(color,16) + "'");
|
|
|
|
|
//if (firstRow) out.print(" width='6%'");
|
|
|
|
|
out.print(">");
|
|
|
|
|
|
2001-10-31 00:02:54 +00:00
|
|
|
|
//log.println(Utility.hex(ch2.charAt(0)));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
boolean ignorable = col2.charAt(0) == 0;
|
|
|
|
|
out.print(HTMLString(ch2) + "<br><tt>"
|
|
|
|
|
+ (ignorable ? "<u>" : "")
|
2001-10-31 00:02:54 +00:00
|
|
|
|
+ Utility.hex(ch2, " ")
|
2001-08-30 20:50:18 +00:00
|
|
|
|
+ (ignorable ? "</u>" : "")
|
|
|
|
|
);
|
|
|
|
|
if (SHOW_CE) out.print("</tt><br><tt><b>" + UCA.toString(col2) + "</b>");
|
|
|
|
|
out.println("</tt></td>");
|
|
|
|
|
|
|
|
|
|
// remember
|
|
|
|
|
lastCol = col2;
|
|
|
|
|
lastChar = ch2;
|
|
|
|
|
}
|
|
|
|
|
writeTail(out, page-1, name, other, SHOW_CE);
|
|
|
|
|
}
|
|
|
|
|
log.println("</body></html>");
|
|
|
|
|
log.close();
|
|
|
|
|
sortedD.clear();
|
|
|
|
|
System.out.println("Done");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
3400;<CJK Ideograph Extension A, First>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
4DB5;<CJK Ideograph Extension A, Last>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
4E00;<CJK Ideograph, First>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
9FA5;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
AC00;<Hangul Syllable, First>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
D7A3;<Hangul Syllable, Last>;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
A000;YI SYLLABLE IT;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
A001;YI SYLLABLE IX;Lo;0;L;;;;;N;;;;;
|
|
|
|
|
A4C4;YI RADICAL ZZIET;So;0;ON;;;;;N;;;;;
|
|
|
|
|
A4C6;YI RADICAL KE;So;0;ON;;;;;N;;;;;
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static final int[][] extraConformanceRanges = {
|
|
|
|
|
{0x3400, 0x4DB5}, {0x4E00, 0x9FA5}, {0xAC00, 0xD7A3}, {0xA000, 0xA48C}, {0xE000, 0xF8FF},
|
|
|
|
|
{0xFDD0, 0xFDEF},
|
|
|
|
|
{0x20000, 0x2A6D6},
|
|
|
|
|
{0x2F800, 0x2FA1D},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static final int[] extraConformanceTests = {
|
|
|
|
|
//0xD800, 0xDBFF, 0xDC00, 0xDFFF,
|
|
|
|
|
0xFDD0, 0xFDEF, 0xFFF8,
|
|
|
|
|
0xFFFE, 0xFFFF,
|
|
|
|
|
0x10000, 0x1FFFD, 0x1FFFE, 0x1FFFF,
|
|
|
|
|
0x20000, 0x2FFFD, 0x2FFFE, 0x2FFFF,
|
|
|
|
|
0xE0000, 0xEFFFD, 0xEFFFE, 0xEFFFF,
|
|
|
|
|
0xF0000, 0xFFFFD, 0xFFFFE, 0xFFFFF,
|
|
|
|
|
0x100000, 0x10FFFD, 0x10FFFE, 0x10FFFF,
|
2002-06-02 05:07:08 +00:00
|
|
|
|
IMPLICIT_4BYTE_BOUNDARY, IMPLICIT_4BYTE_BOUNDARY-1, IMPLICIT_4BYTE_BOUNDARY+1,
|
2001-08-30 20:50:18 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static final int MARK = 1;
|
|
|
|
|
static final char MARK1 = '\u0001';
|
|
|
|
|
static final char MARK2 = '\u0002';
|
|
|
|
|
//Normalizer normalizer = new Normalizer(Normalizer.NFC, true);
|
|
|
|
|
|
2002-03-15 01:57:01 +00:00
|
|
|
|
static Normalizer toC = new Normalizer(Normalizer.NFC, UNICODE_VERSION);
|
|
|
|
|
static Normalizer toD = new Normalizer(Normalizer.NFD, UNICODE_VERSION);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
static TreeMap MismatchedC = new TreeMap();
|
|
|
|
|
static TreeMap MismatchedN = new TreeMap();
|
|
|
|
|
static TreeMap MismatchedD = new TreeMap();
|
|
|
|
|
|
|
|
|
|
static final byte option = UCA.NON_IGNORABLE; // SHIFTED
|
|
|
|
|
|
|
|
|
|
static void addString(int ch, byte option) {
|
|
|
|
|
addString(UTF32.valueOf32(ch), option);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void addString(String ch, byte option) {
|
|
|
|
|
String colDbase = collator.getSortKey(ch, option, true);
|
|
|
|
|
String colNbase = collator.getSortKey(ch, option, false);
|
|
|
|
|
String colCbase = collator.getSortKey(toC.normalize(ch), option, false);
|
|
|
|
|
if (!colNbase.equals(colCbase)) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
/*System.out.println(Utility.hex(ch));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println(printableKey(colNbase));
|
|
|
|
|
System.out.println(printableKey(colNbase));
|
|
|
|
|
System.out.println(printableKey(colNbase));*/
|
|
|
|
|
MismatchedN.put(ch,colNbase);
|
|
|
|
|
MismatchedC.put(ch,colCbase);
|
|
|
|
|
MismatchedD.put(ch,colDbase);
|
|
|
|
|
}
|
|
|
|
|
String colD = colDbase + "\u0000" + ch; // UCA.NON_IGNORABLE
|
|
|
|
|
String colN = colNbase + "\u0000" + ch;
|
|
|
|
|
String colC = colCbase + "\u0000" + ch;
|
|
|
|
|
sortedD.put(colD, ch);
|
|
|
|
|
backD.put(ch, colD);
|
|
|
|
|
sortedN.put(colN, ch);
|
|
|
|
|
backN.put(ch, colN);
|
|
|
|
|
/*
|
|
|
|
|
if (strength > 4) {
|
|
|
|
|
duplicateCount++;
|
|
|
|
|
duplicates.put(ch+MARK1, col);
|
|
|
|
|
duplicates.put(ch+MARK2, col2);
|
|
|
|
|
} else if (strength != 0) {
|
|
|
|
|
sorted.put(col2 + MARK2, ch);
|
|
|
|
|
}
|
|
|
|
|
unique += 2;
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void removeAdjacentDuplicates() {
|
|
|
|
|
String lastChar = "";
|
|
|
|
|
int countRem = 0;
|
|
|
|
|
int countDups = 0;
|
|
|
|
|
Iterator it1 = sortedD.keySet().iterator();
|
|
|
|
|
Iterator it2 = sortedN.keySet().iterator();
|
|
|
|
|
Differ differ = new Differ(250,3);
|
|
|
|
|
log.println("<h1>2. Differences in Ordering</h1>");
|
|
|
|
|
log.println("<p>Codes and names are in the white rows: bold means that the NO-NFD sort key differs from UCA key.</p>");
|
|
|
|
|
log.println("<p>Keys are in the light blue rows: green is the bad key, blue is UCA, black is where they equal.</p>");
|
|
|
|
|
log.println("<table border='1'>");
|
|
|
|
|
log.println("<tr><th>File Order</th><th>Code and Decomp</th><th>Key and Decomp-Key</th></tr>");
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
boolean gotOne = false;
|
|
|
|
|
if (it1.hasNext()) {
|
|
|
|
|
String col1 = (String)it1.next();
|
|
|
|
|
String ch1 = (String)sortedD.get(col1);
|
|
|
|
|
differ.addA(ch1);
|
|
|
|
|
gotOne = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (it2.hasNext()) {
|
|
|
|
|
String col2 = (String)it2.next();
|
|
|
|
|
String ch2 = (String)sortedN.get(col2);
|
|
|
|
|
differ.addB(ch2);
|
|
|
|
|
gotOne = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
differ.checkMatch(!gotOne);
|
|
|
|
|
|
|
|
|
|
if (differ.getACount() != 0 || differ.getBCount() != 0) {
|
|
|
|
|
for (int q = 0; q < 2; ++q) {
|
|
|
|
|
String cell = "<td valign='top'" + (q!=0 ? "bgcolor='#C0C0C0'" : "") + ">" + (q!=0 ? "<tt>" : "");
|
|
|
|
|
|
|
|
|
|
log.print("<tr>" + cell);
|
|
|
|
|
for (int i = -1; i < differ.getACount()+1; ++i) {
|
|
|
|
|
showDiff(q==0, true, differ.getALine(i), differ.getA(i));
|
|
|
|
|
log.println("<br>");
|
|
|
|
|
++countDups;
|
|
|
|
|
}
|
|
|
|
|
countDups -= 2; // to make up for extra line above and below
|
|
|
|
|
if (false) {
|
|
|
|
|
log.print("</td>" + cell);
|
|
|
|
|
|
|
|
|
|
for (int i = -1; i < differ.getBCount()+1; ++i) {
|
|
|
|
|
showDiff(q==0, false, differ.getBLine(i), differ.getB(i));
|
|
|
|
|
log.println("<br>");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
log.println("</td></tr>");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//differ.flush();
|
|
|
|
|
|
|
|
|
|
if (!gotOne) break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log.println("</table>");
|
|
|
|
|
|
|
|
|
|
//log.println("Removed " + countRem + " adjacent duplicates.<br>");
|
|
|
|
|
System.out.println("Left " + countDups + " conflicts.<br>");
|
|
|
|
|
log.println("Left " + countDups + " conflicts.<br>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void removeAdjacentDuplicates2() {
|
|
|
|
|
String lastChar = "";
|
|
|
|
|
int countRem = 0;
|
|
|
|
|
int countDups = 0;
|
|
|
|
|
Iterator it = sortedD.keySet().iterator();
|
|
|
|
|
log.println("<h1>2. Differences in Ordering</h1>");
|
|
|
|
|
log.println("<p>Codes and names are in the white rows: bold means that the NO-NFD sort key differs from UCA key.</p>");
|
|
|
|
|
log.println("<p>Keys are in the light blue rows: green is the bad key, blue is UCA, black is where they equal.</p>");
|
|
|
|
|
log.println("<table border='1'>");
|
|
|
|
|
log.println("<tr><th>File Order</th><th>Code and Decomp</th><th>Key and Decomp-Key</th></tr>");
|
|
|
|
|
|
|
|
|
|
String lastCol = "a";
|
|
|
|
|
String lastColN = "a";
|
|
|
|
|
String lastCh = "";
|
|
|
|
|
boolean showedLast = true;
|
|
|
|
|
int count = 0;
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
count++;
|
|
|
|
|
String col = (String)it.next();
|
|
|
|
|
String ch = (String)sortedD.get(col);
|
|
|
|
|
String colN = (String)backN.get(ch);
|
|
|
|
|
if (colN == null || colN.length() < 1) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
System.out.println("Missing colN value for " + Utility.hex(ch, " ") + ": " + printableKey(colN));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
if (col == null || col.length() < 1) {
|
2001-10-31 00:02:54 +00:00
|
|
|
|
System.out.println("Missing col value for " + Utility.hex(ch, " ") + ": " + printableKey(col));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (compareMinusLast(col, lastCol) == compareMinusLast(colN, lastColN)) {
|
|
|
|
|
showedLast = false;
|
|
|
|
|
} else {
|
|
|
|
|
if (true && count < 200) {
|
|
|
|
|
System.out.println();
|
2001-10-31 00:02:54 +00:00
|
|
|
|
System.out.println(Utility.hex(ch, " ") + ", " + Utility.hex(lastCh, " "));
|
|
|
|
|
System.out.println(" col: " + Utility.hex(col, " "));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println(compareMinusLast(col, lastCol));
|
2001-10-31 00:02:54 +00:00
|
|
|
|
System.out.println(" lastCol: " + Utility.hex(lastCol, " "));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println();
|
2001-10-31 00:02:54 +00:00
|
|
|
|
System.out.println(" colN: " + Utility.hex(colN, " "));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
System.out.println(compareMinusLast(colN, lastColN));
|
2001-10-31 00:02:54 +00:00
|
|
|
|
System.out.println(" lastColN: " + Utility.hex(lastColN, " "));
|
2001-08-30 20:50:18 +00:00
|
|
|
|
}
|
|
|
|
|
if (!showedLast) {
|
|
|
|
|
log.println("<tr><td colspan='3'></td><tr>");
|
|
|
|
|
showLine(count-1, lastCh, lastCol, lastColN);
|
|
|
|
|
}
|
|
|
|
|
showedLast = true;
|
|
|
|
|
showLine(count,ch, col, colN);
|
|
|
|
|
}
|
|
|
|
|
lastCol = col;
|
|
|
|
|
lastColN = colN;
|
|
|
|
|
lastCh = ch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log.println("</table>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int compareMinusLast(String a, String b) {
|
|
|
|
|
String am = a.substring(0,a.length()-1);
|
|
|
|
|
String bm = b.substring(0,b.length()-1);
|
|
|
|
|
int result = am.compareTo(b);
|
|
|
|
|
return (result < 0 ? -1 : result > 0 ? 1 : 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void showLine(int count, String ch, String keyD, String keyN) {
|
|
|
|
|
String decomp = toD.normalize(ch);
|
2001-10-31 00:02:54 +00:00
|
|
|
|
if (decomp.equals(ch)) decomp = ""; else decomp = "<br><" + Utility.hex(decomp, " ") + "> ";
|
2001-08-30 20:50:18 +00:00
|
|
|
|
log.println("<tr><td>" + count + "</td><td>"
|
2001-10-31 00:02:54 +00:00
|
|
|
|
+ Utility.hex(ch, " ")
|
2001-08-30 20:50:18 +00:00
|
|
|
|
+ " " + ucd.getName(ch)
|
|
|
|
|
+ decomp
|
|
|
|
|
+ "</td><td>");
|
|
|
|
|
|
|
|
|
|
if (keyD.equals(keyN)) {
|
|
|
|
|
log.println(printableKey(keyN));
|
|
|
|
|
} else {
|
|
|
|
|
log.println("<font color='#009900'>" + printableKey(keyN)
|
|
|
|
|
+ "</font><br><font color='#000099'>" + printableKey(keyD) + "</font>"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
log.println("</td></tr>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TreeSet foo;
|
|
|
|
|
|
|
|
|
|
static final String[] alternateName = {"SHIFTED", "ZEROED", "NON_IGNORABLE", "SHIFTED_TRIMMED"};
|
|
|
|
|
|
|
|
|
|
static void showMismatches() {
|
|
|
|
|
MLStreamWriter out = new MLStreamWriter(log);
|
|
|
|
|
out.el("h1").tx("1. Mismatches when NFD is OFF").cl();
|
|
|
|
|
out.el("h2").tx("Date:" + new Date()).cl();
|
|
|
|
|
out.el("h2").tx("File Version:" + UCA.VERSION).cl();
|
|
|
|
|
out.el("p").tx("Alternate Handling = " + alternateName[option]).cl();
|
|
|
|
|
out.el("table").at("border",1);
|
|
|
|
|
out.el("caption").tx("Mismatches in UCA-NOD: Plain vs NFC: ").tx(MismatchedC.size()).cl("caption");
|
|
|
|
|
out.el("tr");
|
|
|
|
|
out.el("th").tx("Code").cl();
|
|
|
|
|
out.el("th").tx("Type").cl();
|
|
|
|
|
out.el("th").tx("CC?").cl();
|
|
|
|
|
out.el("th").tx("Key").cl();
|
|
|
|
|
out.cl("tr");
|
|
|
|
|
Iterator it = MismatchedC.keySet().iterator();
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
String ch = (String)it.next();
|
|
|
|
|
String MN = (String)MismatchedN.get(ch);
|
|
|
|
|
String MC = (String)MismatchedC.get(ch);
|
|
|
|
|
String chInC = toC.normalize(ch);
|
|
|
|
|
out.el("tr");
|
|
|
|
|
out.el("th").at("rowSpan",2).at("align","right").tx16(ch).tx(' ').tx(ucd.getName(ch));
|
|
|
|
|
out.el("br").cl().tx("NFC=").tx16(chInC).cl();
|
|
|
|
|
out.el("th").tx("Plain").cl();
|
|
|
|
|
out.el("th").tx(containsCombining(ch) ? "y" : "n").cl();
|
|
|
|
|
out.el("td").tx(printableKey(MN)).cl();
|
|
|
|
|
out.cl("tr");
|
|
|
|
|
out.el("tr");
|
|
|
|
|
out.el("th").tx("NFC").cl();
|
|
|
|
|
out.el("th").tx(containsCombining(chInC) ? "Y" : "ERROR").cl();
|
|
|
|
|
out.el("td").tx(printableKey(MC)).cl();
|
|
|
|
|
out.cl("tr");
|
|
|
|
|
}
|
|
|
|
|
out.closeAllElements();
|
|
|
|
|
log.println("<br>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static boolean containsCombining(String s) {
|
|
|
|
|
for (int i = 0; i < s.length(); ++i) {
|
|
|
|
|
if ((ucd.getCategoryMask(s.charAt(i)) & ucd.MARK_MASK) != 0) return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void showDiff(boolean showName, boolean firstColumn, int line, Object chobj) {
|
|
|
|
|
String ch = chobj.toString();
|
|
|
|
|
String decomp = toD.normalize(ch);
|
|
|
|
|
if (showName) {
|
|
|
|
|
if (ch.equals(decomp)) {
|
|
|
|
|
log.println(//title + counter + " "
|
2001-10-31 00:02:54 +00:00
|
|
|
|
Utility.hex(ch, " ")
|
2001-08-30 20:50:18 +00:00
|
|
|
|
+ " " + ucd.getName(ch)
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
log.println(//title + counter + " "
|
2001-10-31 00:02:54 +00:00
|
|
|
|
"<b>" + Utility.hex(ch, " ")
|
2001-08-30 20:50:18 +00:00
|
|
|
|
+ " " + ucd.getName(ch) + "</b>"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
String keyD = printableKey(backD.get(chobj));
|
|
|
|
|
String keyN = printableKey(backN.get(chobj));
|
|
|
|
|
if (keyD.equals(keyN)) {
|
|
|
|
|
log.println(//title + counter + " "
|
2001-10-31 00:02:54 +00:00
|
|
|
|
Utility.hex(ch, " ") + " " + keyN);
|
2001-08-30 20:50:18 +00:00
|
|
|
|
} else {
|
|
|
|
|
log.println(//title + counter + " "
|
2001-10-31 00:02:54 +00:00
|
|
|
|
"<font color='#009900'>" + Utility.hex(ch, " ") + " " + keyN
|
|
|
|
|
+ "</font><br><font color='#000099'>" + Utility.hex(decomp, " ") + " " + keyD + "</font>"
|
2001-08-30 20:50:18 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static String printableKey(Object keyobj) {
|
|
|
|
|
String sortKey;
|
|
|
|
|
if (keyobj == null) {
|
|
|
|
|
sortKey = "NULL!!";
|
|
|
|
|
} else {
|
|
|
|
|
sortKey = keyobj.toString();
|
|
|
|
|
sortKey = sortKey.substring(0,sortKey.length()-1);
|
|
|
|
|
sortKey = UCA.toString(sortKey);
|
|
|
|
|
}
|
|
|
|
|
return sortKey;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
LINKS</td></tr><tr><td><blockquote>
|
|
|
|
|
CONTENTS
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void writeTail(PrintWriter out, int counter, String title, String other, boolean show) throws IOException {
|
|
|
|
|
copyFile(out, "HTML-Part2.txt");
|
|
|
|
|
/*
|
|
|
|
|
out.println("</tr></table></center></div>");
|
|
|
|
|
out.println("</body></html>");
|
|
|
|
|
*/
|
|
|
|
|
out.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static String pad (int number) {
|
|
|
|
|
String num = Integer.toString(number);
|
|
|
|
|
if (num.length() < 2) num = "0" + number;
|
|
|
|
|
return num;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PrintWriter writeHead(int counter, int end, String title, String other, String version, boolean show) throws IOException {
|
|
|
|
|
|
|
|
|
|
PrintWriter out = Utility.openPrintWriter(title + pad(counter) + ".html");
|
|
|
|
|
|
|
|
|
|
copyFile(out, "HTML-Part1.txt");
|
|
|
|
|
/*
|
|
|
|
|
out.println("<html><head>");
|
|
|
|
|
out.println("<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>");
|
|
|
|
|
out.println("<title>" + HTMLString(title) + "</title>");
|
|
|
|
|
out.println("<style>");
|
|
|
|
|
out.println("<!--");
|
|
|
|
|
//out.println("td { font-size: 18pt; font-family: Bitstream Cyberbit, Arial Unicode MS; text-align: Center}");
|
|
|
|
|
out.println("td { font-size: 18pt; text-align: Center}");
|
|
|
|
|
out.println("td.right { font-size: 12pt; text-align: Right}");
|
|
|
|
|
out.println("td.title { font-size: 18pt; text-align: Center}");
|
|
|
|
|
out.println("td.left { font-size: 12pt; text-align: Left}");
|
|
|
|
|
//out.println("th { background-color: #C0C0C0; font-size: 18pt; font-family: Arial Unicode MS, Bitstream Cyberbit; text-align: Center }");
|
|
|
|
|
out.println("tt { font-size: 8pt; }");
|
|
|
|
|
//out.println("code { font-size: 8pt; }");
|
|
|
|
|
out.println("-->");
|
|
|
|
|
out.println("</style></head><body bgcolor='#FFFFFF'>");
|
|
|
|
|
|
|
|
|
|
// header
|
|
|
|
|
out.print("<table width='100%'><tr>");
|
|
|
|
|
out.println("<td><p align='left'><font size='3'><a href='index.html'>Instructions</a></font></td>");
|
|
|
|
|
out.println("<td>" + HTMLString(title) + " Version" + version + "</td>");
|
|
|
|
|
out.println("<td><p align='right'><font size='3'><a href='" + other + pad(counter) + ".html'>"
|
|
|
|
|
+ (show ? "Hide" : "Show") + " Key</a></td>");
|
|
|
|
|
out.println("</tr></table>");
|
|
|
|
|
/*
|
|
|
|
|
<table width="100%">
|
|
|
|
|
<tr>
|
|
|
|
|
<td.left><a href="Collation.html">
|
|
|
|
|
<font size="3">Instructions</font></a>
|
|
|
|
|
<td>
|
|
|
|
|
<td.title>Collation Version-2.1.9d7
|
|
|
|
|
<td>
|
|
|
|
|
<p align="right"><a href="CollationKey24.html"><font size="3">Show Key</font></a>
|
|
|
|
|
</tr>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// index
|
|
|
|
|
out.print("<table width='100%'><tr>");
|
|
|
|
|
out.println("<td><p align='left'><font size='3'><a href='index.html'>Instructions</a></font></td>");
|
|
|
|
|
out.println("<td>" + HTMLString(title) + " Version" + version + "</td>");
|
|
|
|
|
out.println("<td><p align='right'><font size='3'><a href='" + other + pad(counter) + ".html'>"
|
|
|
|
|
+ (show ? "Hide" : "Show") + " Key</a></td>");
|
|
|
|
|
out.println("</tr></table>");
|
|
|
|
|
|
|
|
|
|
out.print("<table width='100%'><tr>");
|
|
|
|
|
out.print("<td width='1%'><p align='left'>");
|
|
|
|
|
if (counter > 0) {
|
|
|
|
|
out.print("<a href='" + title + pad(counter-1) + ".html'><<</a>");
|
|
|
|
|
} else {
|
|
|
|
|
out.print("<font color='#999999'><<</font>");
|
|
|
|
|
}
|
|
|
|
|
out.println("</td>");
|
|
|
|
|
out.println("<td><p align='center'>");
|
|
|
|
|
boolean lastFar = false;
|
|
|
|
|
for (int i = 0; i <= end; ++i) {
|
|
|
|
|
boolean far = (i < counter-2 || i > counter+2);
|
|
|
|
|
if (far && ((i % 5) != 0) && (i != end)) continue;
|
|
|
|
|
if (i != 0 && lastFar != far) out.print(" - ");
|
|
|
|
|
lastFar = far;
|
|
|
|
|
if (i != counter) {
|
|
|
|
|
out.print("<a href='" + title + pad(i) + ".html'>" + i + "</a>");
|
|
|
|
|
} else {
|
|
|
|
|
out.print("<font color='#FF0000'>" + i + "</font>");
|
|
|
|
|
}
|
|
|
|
|
out.println();
|
|
|
|
|
}
|
|
|
|
|
out.println("</td>");
|
|
|
|
|
out.println("<td width='1%'><p align='right'>");
|
|
|
|
|
if (counter < end) {
|
|
|
|
|
out.print("<a href='" + title + pad(counter+1) + ".html'>>></a>");
|
|
|
|
|
} else {
|
|
|
|
|
out.print("<font color='#999999'>>></font>");
|
|
|
|
|
}
|
|
|
|
|
out.println("</td></tr></table>");
|
|
|
|
|
// standard template!!!
|
|
|
|
|
out.println("</td></tr><tr><td><blockquote>");
|
|
|
|
|
//out.println("<p><div align='center'><center><table border='1'><tr>");
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int getStrengthDifference(String old, String newStr) {
|
|
|
|
|
int result = 5;
|
|
|
|
|
int min = old.length();
|
|
|
|
|
if (newStr.length() < min) min = newStr.length();
|
|
|
|
|
for (int i = 0; i < min; ++i) {
|
|
|
|
|
char ch1 = old.charAt(i);
|
|
|
|
|
char ch2 = newStr.charAt(i);
|
|
|
|
|
if (ch1 != ch2) return result;
|
|
|
|
|
// see if we get difference before we get 0000.
|
|
|
|
|
if (ch1 == 0) --result;
|
|
|
|
|
}
|
|
|
|
|
if (newStr.length() != old.length()) return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static final boolean needsXMLQuote(String source, boolean quoteApos) {
|
|
|
|
|
for (int i = 0; i < source.length(); ++i) {
|
|
|
|
|
char ch = source.charAt(i);
|
|
|
|
|
if (ch < ' ' || ch == '<' || ch == '&' || ch == '>') return true;
|
|
|
|
|
if (quoteApos & ch == '\'') return true;
|
|
|
|
|
if (ch == '\"') return true;
|
|
|
|
|
if (ch >= '\uD800' && ch <= '\uDFFF') return true;
|
|
|
|
|
if (ch >= '\uFFFE') return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final String XMLString(int[] cps) {
|
|
|
|
|
return XMLBaseString(cps, cps.length, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final String XMLString(int[] cps, int len) {
|
|
|
|
|
return XMLBaseString(cps, len, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final String XMLString(String source) {
|
|
|
|
|
return XMLBaseString(source, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final String HTMLString(int[] cps) {
|
|
|
|
|
return XMLBaseString(cps, cps.length, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final String HTMLString(int[] cps, int len) {
|
|
|
|
|
return XMLBaseString(cps, len, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final String HTMLString(String source) {
|
|
|
|
|
return XMLBaseString(source, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final String XMLBaseString(int[] cps, int len, boolean quoteApos) {
|
|
|
|
|
StringBuffer temp = new StringBuffer();
|
|
|
|
|
for (int i = 0; i < len; ++i) {
|
|
|
|
|
temp.append((char)cps[i]);
|
|
|
|
|
}
|
|
|
|
|
return XMLBaseString(temp.toString(), quoteApos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final String XMLBaseString(String source, boolean quoteApos) {
|
|
|
|
|
if (!needsXMLQuote(source, quoteApos)) return source;
|
|
|
|
|
StringBuffer result = new StringBuffer();
|
|
|
|
|
for (int i = 0; i < source.length(); ++i) {
|
|
|
|
|
char ch = source.charAt(i);
|
|
|
|
|
if (ch < ' '
|
|
|
|
|
|| ch >= '\u007F' && ch <= '\u009F'
|
|
|
|
|
|| ch >= '\uD800' && ch <= '\uDFFF'
|
|
|
|
|
|| ch >= '\uFFFE') {
|
|
|
|
|
result.append('\uFFFD');
|
|
|
|
|
/*result.append("#x");
|
|
|
|
|
result.append(cpName(ch));
|
|
|
|
|
result.append(";");
|
|
|
|
|
*/
|
|
|
|
|
} else if (quoteApos && ch == '\'') {
|
|
|
|
|
result.append("'");
|
|
|
|
|
} else if (ch == '\"') {
|
|
|
|
|
result.append(""");
|
|
|
|
|
} else if (ch == '<') {
|
|
|
|
|
result.append("<");
|
|
|
|
|
} else if (ch == '&') {
|
|
|
|
|
result.append("&");
|
|
|
|
|
} else if (ch == '>') {
|
|
|
|
|
result.append(">");
|
|
|
|
|
} else {
|
|
|
|
|
result.append(ch);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int mapToStartOfRange(int ch) {
|
|
|
|
|
if (ch <= 0x3400) return ch; // CJK Ideograph Extension A
|
|
|
|
|
if (ch <= 0x4DB5) return 0x3400;
|
|
|
|
|
if (ch <= 0x4E00) return ch; // CJK Ideograph
|
|
|
|
|
if (ch <= 0x9FA5) return 0x4E00;
|
|
|
|
|
if (ch <= 0xAC00) return ch; // Hangul Syllable
|
|
|
|
|
if (ch <= 0xD7A3) return 0xAC00;
|
|
|
|
|
if (ch <= 0xD800) return ch; // Non Private Use High Surrogate
|
|
|
|
|
if (ch <= 0xDB7F) return 0xD800;
|
|
|
|
|
if (ch <= 0xDB80) return ch; // Private Use High Surrogate
|
|
|
|
|
if (ch <= 0xDBFF) return 0xDB80;
|
|
|
|
|
if (ch <= 0xDC00) return ch; // Low Surrogate
|
|
|
|
|
if (ch <= 0xDFFF) return 0xDC00;
|
|
|
|
|
if (ch <= 0xE000) return ch; // Private Use
|
|
|
|
|
if (ch <= 0xF8FF) return 0xE000;
|
|
|
|
|
if (ch <= 0xF0000) return ch; // Plane 15 Private Use
|
|
|
|
|
if (ch <= 0xFFFFD) return 0xF0000;
|
|
|
|
|
if (ch <= 0x100000) return ch; // Plane 16 Private Use
|
|
|
|
|
return 0x100000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|