The scaffolding for a Unicode->EWTS reverter. No guts yet.
This commit is contained in:
parent
ebc11a3425
commit
00afd75362
9 changed files with 282 additions and 16 deletions
38
source/org/thdl/tib/text/reverter/Converter.java
Normal file
38
source/org/thdl/tib/text/reverter/Converter.java
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
The contents of this file are subject to the THDL Open Community License
|
||||
Version 1.0 (the "License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License on the THDL web site
|
||||
(http://www.thdl.org/).
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific terms governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Initial Developer of this software is the Tibetan and Himalayan Digital
|
||||
Library (THDL). Portions created by the THDL are Copyright 2005 THDL.
|
||||
All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
*/
|
||||
|
||||
package org.thdl.tib.text.reverter;
|
||||
|
||||
/** Static methods for converting Unicode to EWTS and
|
||||
* (TODO(dchandler): ACIP).
|
||||
* @author David Chandler
|
||||
*/
|
||||
public class Converter {
|
||||
/** Static methods provide all the fun! */
|
||||
private Converter() {
|
||||
throw new Error("There's no point in instantiating this class.");
|
||||
}
|
||||
|
||||
/** Converts Tibetan Unicode to EWTS transliteration. If errors
|
||||
* is non-null, error messages are appended to it. (Errors are
|
||||
* always inline.) */
|
||||
public static String convertToEwts(String unicode,
|
||||
StringBuffer errors /* DLC: use it */) {
|
||||
throw new Error("DLC not yet");
|
||||
}
|
||||
}
|
55
source/org/thdl/tib/text/reverter/ConverterTest.java
Normal file
55
source/org/thdl/tib/text/reverter/ConverterTest.java
Normal file
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
The contents of this file are subject to the THDL Open Community License
|
||||
Version 1.0 (the "License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License on the THDL web site
|
||||
(http://www.thdl.org/).
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific terms governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Initial Developer of this software is the Tibetan and Himalayan Digital
|
||||
Library (THDL). Portions created by the THDL are Copyright 2005 THDL.
|
||||
All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
*/
|
||||
|
||||
package org.thdl.tib.text.reverter;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.thdl.util.ThdlOptions;
|
||||
import org.thdl.tib.text.ttt.ErrorsAndWarnings;
|
||||
|
||||
/** Tests the Converter class.
|
||||
*
|
||||
* @author David Chandler */
|
||||
public class ConverterTest extends TestCase {
|
||||
|
||||
/** Invokes a text UI and runs all this class's tests. */
|
||||
public static void main(String[] args) {
|
||||
junit.textui.TestRunner.run(ConverterTest.class);
|
||||
}
|
||||
|
||||
protected void setUp() {
|
||||
// We don't want to use options.txt:
|
||||
ThdlOptions.forTestingOnlyInitializeWithoutDefaultOptionsFile();
|
||||
|
||||
ThdlOptions.setUserPreference("thdl.acip.to.tibetan.warning.and.error.severities.are.built.in.defaults", "true");
|
||||
ThdlOptions.setUserPreference("thdl.acip.to.tibetan.warning.severity.507", "Most");
|
||||
ErrorsAndWarnings.setupSeverityMap();
|
||||
|
||||
// We don't want to load the TM or TMW font files ourselves:
|
||||
ThdlOptions.setUserPreference("thdl.rely.on.system.tmw.fonts", true);
|
||||
ThdlOptions.setUserPreference("thdl.rely.on.system.tm.fonts", true);
|
||||
ThdlOptions.setUserPreference("thdl.debug", true);
|
||||
}
|
||||
|
||||
public ConverterTest() { }
|
||||
|
||||
public void testUnicodeToEwts() {
|
||||
assertEquals(Converter.convertToEwts("\u0f40", null), "ka");
|
||||
}
|
||||
}
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
The contents of this file are subject to the THDL Open Community License
|
||||
Version 1.0 (the "License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License on the THDL web site
|
||||
(http://www.thdl.org/).
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific terms governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Initial Developer of this software is the Tibetan and Himalayan Digital
|
||||
Library (THDL). Portions created by the THDL are Copyright 2005 THDL.
|
||||
All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
*/
|
||||
|
||||
package org.thdl.tib.text.reverter;
|
||||
|
||||
/** A class for use in XSL transformations that converts Unicode to
|
||||
* EWTS or ACIP transliteration. Note that the syntax for calling
|
||||
* Java extensions from XSL is vendor-specific; for more details,
|
||||
* please consult the documentation for the XSLT processor you use,
|
||||
* for example Saxon or Xalan-Java.
|
||||
* @author David Chandler
|
||||
*/
|
||||
public class UnicodeToTranslitForXslt {
|
||||
/** Static methods provide all the fun! */
|
||||
private UnicodeToTranslitForXslt() {
|
||||
throw new Error("There's no point in instantiating this class.");
|
||||
}
|
||||
|
||||
/** Converts Tibetan Unicode to EWTS transliteration. */
|
||||
public static String unicodeToEwts(String unicode) {
|
||||
return Converter.convertToEwts(unicode, null);
|
||||
}
|
||||
/** Converts Tibetan Unicode to ACIP transliteration. */
|
||||
public static String unicodeToAcip(String unicode) {
|
||||
throw new Error("DLC: not yet");
|
||||
}
|
||||
}
|
|
@ -0,0 +1,61 @@
|
|||
/*
|
||||
The contents of this file are subject to the THDL Open Community License
|
||||
Version 1.0 (the "License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License on the THDL web site
|
||||
(http://www.thdl.org/).
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific terms governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Initial Developer of this software is the Tibetan and Himalayan Digital
|
||||
Library (THDL). Portions created by the THDL are Copyright 2005 THDL.
|
||||
All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
*/
|
||||
|
||||
package org.thdl.tib.text.reverter;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.thdl.util.ThdlOptions;
|
||||
import org.thdl.tib.text.ttt.ErrorsAndWarnings;
|
||||
|
||||
/** Tests the UnicodeToTranslitForXslt class.
|
||||
*
|
||||
* @author David Chandler */
|
||||
public class UnicodeToTranslitForXsltTest extends TestCase {
|
||||
|
||||
/** Invokes a text UI and runs all this class's tests. */
|
||||
public static void main(String[] args) {
|
||||
junit.textui.TestRunner.run(UnicodeToTranslitForXsltTest.class);
|
||||
}
|
||||
|
||||
protected void setUp() {
|
||||
// We don't want to use options.txt:
|
||||
ThdlOptions.forTestingOnlyInitializeWithoutDefaultOptionsFile();
|
||||
|
||||
ThdlOptions.setUserPreference("thdl.acip.to.tibetan.warning.and.error.severities.are.built.in.defaults", "true");
|
||||
ThdlOptions.setUserPreference("thdl.acip.to.tibetan.warning.severity.507", "Most");
|
||||
ErrorsAndWarnings.setupSeverityMap();
|
||||
|
||||
// We don't want to load the TM or TMW font files ourselves:
|
||||
ThdlOptions.setUserPreference("thdl.rely.on.system.tmw.fonts", true);
|
||||
ThdlOptions.setUserPreference("thdl.rely.on.system.tm.fonts", true);
|
||||
ThdlOptions.setUserPreference("thdl.debug", true);
|
||||
}
|
||||
|
||||
public UnicodeToTranslitForXsltTest() { }
|
||||
|
||||
public void testUnicodeToEwts() {
|
||||
assertEquals(UnicodeToTranslitForXslt.unicodeToEwts("\u0f40"), "ka");
|
||||
assertEquals(UnicodeToTranslitForXslt.unicodeToEwts("\u0f56\u0f62\u0f4f\u0f42\u0f66\u0f0b"), "brtags ");
|
||||
}
|
||||
|
||||
public void testUnicodeToAcip() {
|
||||
assertEquals(UnicodeToTranslitForXslt.unicodeToEwts("\u0f40"), "KA");
|
||||
assertEquals(UnicodeToTranslitForXslt.unicodeToEwts("\u0f56\u0f62\u0f4f\u0f42\u0f66\u0f0b"), "BRTAGS ");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue