
net.sf.okapi.common.encoder.DTDEncoder Maven / Gradle / Ivy
/*===========================================================================
Copyright (C) 2008-2010 by the Okapi Framework contributors
-----------------------------------------------------------------------------
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
===========================================================================*/
package net.sf.okapi.common.encoder;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
import net.sf.okapi.common.IParameters;
/**
* Implements {@link IEncoder} for DTD text.
*/
public class DTDEncoder implements IEncoder {
private CharsetEncoder chsEnc;
private String lineBreak;
private String encoding;
@Override
public void reset() { }
/**
* Sets the options for this encoder. This encoder supports the following
* @param params the parameters object with all the configuration information
* specific to this encoder.
* @param encoding the name of the charset encoding to use.
* @param lineBreak the type of line break to use.
*/
@Override
public void setOptions (IParameters params,
String encoding,
String lineBreak)
{
this.lineBreak = lineBreak;
this.encoding = encoding;
// Use an encoder only if the output is not UTF-8/16
// since those support all characters
if ( "utf-8".equalsIgnoreCase(encoding) || "utf-16".equalsIgnoreCase(encoding) ) {
chsEnc = null;
}
else {
chsEnc = Charset.forName(encoding).newEncoder();
}
}
@Override
public String encode (String text,
EncoderContext context)
{
if ( text == null ) return "";
StringBuilder sbTmp = new StringBuilder(text.length());
char ch;
for ( int i=0; i 127 ) { // Extended chars
if ( Character.isHighSurrogate(ch) ) {
int cp = text.codePointAt(i++);
String tmp = new String(Character.toChars(cp));
if (( chsEnc != null ) && !chsEnc.canEncode(tmp) ) {
sbTmp.append(String.format("%x;", cp));
}
else {
sbTmp.append(tmp);
}
}
else { // Should be able to fold to char, supplementary case will be treated
if (( chsEnc != null ) && !chsEnc.canEncode(ch) ) {
sbTmp.append(String.format("%04x;", (int)ch));
}
else { // No encoder or char is supported
sbTmp.append(ch);
}
}
}
else { // ASCII chars
sbTmp.append(ch);
}
}
}
return sbTmp.toString();
}
@Override
public String encode (char value,
EncoderContext context)
{
switch ( value ) {
case '<':
return "<";
case '\"':
return """;
case '%':
return "%";
case '&':
return "&";
case '\n':
return lineBreak;
default:
if ( value > 127 ) { // Extended chars
if (( chsEnc != null ) && ( !chsEnc.canEncode(value) )) {
return String.format("%04x;", (int)value);
}
else { // No encoder or char is supported
return String.valueOf(value);
}
}
else { // ASCII chars
return String.valueOf(value);
}
}
}
@Override
public String encode (int value,
EncoderContext context)
{
switch ( value ) {
case '<':
return "<";
case '\"':
return """;
case '%':
return "%";
case '&':
return "&";
case '>':
return ">";
case '\n':
return lineBreak;
default:
if ( value > 127 ) { // Extended chars
if ( Character.isSupplementaryCodePoint(value) ) {
String tmp = new String(Character.toChars(value));
if (( chsEnc != null ) && !chsEnc.canEncode(tmp) ) {
return String.format("%x;", value);
}
return tmp;
}
// Should be able to fold to char, supplementary case will be treated
if (( chsEnc != null ) && !chsEnc.canEncode((char)value) ) {
return String.format("%04x;", value);
}
else { // No encoder or char is supported
return String.valueOf((char)value);
}
}
else { // ASCII chars
return String.valueOf((char)value);
}
}
}
@Override
public String toNative (String propertyName,
String value)
{
// PROP_ENCODING: Same value in native
// PROP_LANGUAGE: Same value in native
return value;
}
@Override
public String getLineBreak () {
return this.lineBreak;
}
@Override
public CharsetEncoder getCharsetEncoder () {
return chsEnc;
}
@Override
public IParameters getParameters() {
return null;
}
@Override
public String getEncoding() {
return encoding;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy