org.jruby.ext.nkf.RubyNKF Maven / Gradle / Ivy
/***** BEGIN LICENSE BLOCK *****
* Version: EPL 1.0/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Eclipse Public
* 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 at http://www.eclipse.org/legal/epl-v10.html
*
* 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 language governing
* rights and limitations under the License.
*
* Copyright (C) 2007-2011 Koichiro Ohba
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the EPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the EPL, the GPL or the LGPL.
***** END LICENSE BLOCK *****/
package org.jruby.ext.nkf;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
import java.nio.charset.UnsupportedCharsetException;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import org.jcodings.Encoding;
import org.jcodings.specific.ASCIIEncoding;
import org.jruby.Ruby;
import org.jruby.RubyArray;
import org.jruby.RubyModule;
import org.jruby.RubyString;
import org.jruby.anno.JRubyMethod;
import org.jruby.anno.JRubyModule;
import org.jruby.runtime.Helpers;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import org.jruby.util.ByteList;
import org.jruby.util.KCode;
import org.jruby.util.Pack;
@JRubyModule(name="NKF")
public class RubyNKF {
public static enum NKFCharset {
AUTO(0, "x-JISAutoDetect"),
// no ISO-2022-JP in jcodings
JIS(1, "iso-2022-jp"),
EUC(2, "EUC-JP"),
SJIS(3, "Windows-31J"),
BINARY(4, null),
NOCONV(4, null),
UNKNOWN(0, null),
ASCII(5, "iso-8859-1"),
UTF8(6, "UTF-8"),
UTF16(8, "UTF-16"),
UTF32(12, "UTF-32"),
OTHER(16, null),
BASE64(20, "base64"),
QENCODE(21, "qencode"),
MIME_DETECT(22, "MimeAutoDetect");
private NKFCharset(int value, String charset) {
this.value = value;
this.charset = charset;
}
public int getValue() {
return value;
}
public String getCharset() {
return charset;
}
private final int value;
private final String charset;
}
private static final ByteList BEGIN_MIME_STRING = new ByteList(ByteList.plain("=?"));
private static final ByteList END_MIME_STRING = new ByteList(ByteList.plain("?="));
private static final ByteList PACK_BASE64 = new ByteList(ByteList.plain("m"));
private static final ByteList PACK_QENCODE = new ByteList(ByteList.plain("M"));
public static final Map NKFCharsetMap = new HashMap(20, 1);
public static void createNKF(Ruby runtime) {
final RubyModule NKF = runtime.defineModule("NKF");
if (runtime.is1_8()) {
final String version = "2.0.8";
final String relDate = "2008-11-08";
NKF.defineConstant("NKF_VERSION", runtime.newString(version));
NKF.defineConstant("NKF_RELEASE_DATE", runtime.newString(relDate));
NKF.defineConstant("VERSION", runtime.newString(version + ' ' + '(' + "JRuby" + '_' + relDate + ')'));
}
else {
final String version = "2.1.2";
final String relDate = "2011-09-08";
NKF.defineConstant("NKF_VERSION", runtime.newString(version));
NKF.defineConstant("NKF_RELEASE_DATE", runtime.newString(relDate));
NKF.defineConstant("VERSION", runtime.newString(version + ' ' + '(' + "JRuby" + '_' + relDate + ')'));
}
for ( NKFCharset charset : NKFCharset.values() ) {
NKFCharsetMap.put(charset.value, charset.name());
if ( ! runtime.is1_8() && charset.value > 12 ) continue;
NKF.defineConstant(charset.name(), charsetMappedValue(runtime, charset));
}
NKF.defineAnnotatedMethods(RubyNKF.class);
}
@JRubyMethod(name = "guess", required = 1, module = true)
public static IRubyObject guess(ThreadContext context, IRubyObject recv, IRubyObject s) {
// TODO: Fix charset usage for JRUBY-4553
Ruby runtime = context.runtime;
if (!s.respondsTo("to_str")) {
throw runtime.newTypeError("can't convert " + s.getMetaClass() + " into String");
}
ByteList bytes = s.convertToString().getByteList();
ByteBuffer buf = ByteBuffer.wrap(bytes.getUnsafeBytes(), bytes.begin(), bytes.length());
CharsetDecoder decoder;
try {
decoder = Charset.forName("x-JISAutoDetect").newDecoder();
} catch (UnsupportedCharsetException e) {
throw runtime.newStandardError("charsets.jar is required to use NKF#guess. Please install JRE which supports m17n.");
}
try {
decoder.decode(buf);
}
catch (CharacterCodingException e) {
return charsetMappedValue(runtime, UNKNOWN);
}
if ( ! decoder.isCharsetDetected() ) {
return charsetMappedValue(runtime, UNKNOWN);
}
Charset charset = decoder.detectedCharset();
String name = charset.name();
if ("Shift_JIS".equals(name)) {
return charsetMappedValue(runtime, SJIS);
}
if ("windows-31j".equals(name)) {
return charsetMappedValue(runtime, SJIS);
}
if ("EUC-JP".equals(name)) {
return charsetMappedValue(runtime, EUC);
}
if ("ISO-2022-JP".equals(name)) {
return charsetMappedValue(runtime, JIS);
}
return charsetMappedValue(runtime, UNKNOWN);
}
private static IRubyObject charsetMappedValue(final Ruby runtime, final NKFCharset charset) {
if (runtime.is1_8()) return runtime.newFixnum(charset.value);
final Encoding encoding;
switch (charset) {
case AUTO: case NOCONV: case UNKNOWN: return runtime.getNil();
case BINARY:
encoding = runtime.getEncodingService().getAscii8bitEncoding();
return runtime.getEncodingService().convertEncodingToRubyEncoding(encoding);
}
encoding = runtime.getEncodingService().getEncodingFromString(charset.getCharset());
return runtime.getEncodingService().convertEncodingToRubyEncoding(encoding);
}
@JRubyMethod(name = "guess1", required = 1, module = true)
public static IRubyObject guess1(ThreadContext context, IRubyObject recv, IRubyObject str) {
return guess(context, recv, str);
}
@JRubyMethod(name = "guess2", required = 1, module = true)
public static IRubyObject guess2(ThreadContext context, IRubyObject recv, IRubyObject str) {
return guess(context, recv, str);
}
@JRubyMethod(name = "nkf", required = 2, module = true)
public static IRubyObject nkf(ThreadContext context, IRubyObject recv, IRubyObject opt, IRubyObject str) {
Ruby runtime = context.runtime;
if (!opt.respondsTo("to_str")) {
throw runtime.newTypeError("can't convert " + opt.getMetaClass() + " into String");
}
if (!str.respondsTo("to_str")) {
throw runtime.newTypeError("can't convert " + str.getMetaClass() + " into String");
}
Map options = parseOpt(opt.convertToString().toString());
if (options.get("input").getValue() == AUTO.getValue()) {
KCode kcode = runtime.getKCode();
if (kcode == KCode.SJIS) {
options.put("input", SJIS);
} else if (kcode == KCode.EUC) {
options.put("input", EUC);
} else if (kcode == KCode.UTF8) {
options.put("input", UTF8);
}
}
ByteList bstr = str.convertToString().getByteList();
final Converter converter;
if (Converter.isMimeText(bstr, options)) {
converter = new MimeConverter(context, options);
} else {
converter = new DefaultConverter(context, options);
}
RubyString result = converter.convert(bstr);
if (options.get("mime-encode") == BASE64) {
result = Converter.encodeMimeString(runtime, result, PACK_BASE64);
} else if (options.get("mime-encode") == QENCODE) {
result = Converter.encodeMimeString(runtime, result, PACK_QENCODE);
}
return result;
}
public static Command parseOption(String s) {
Options options = new Options();
options.addOption("b");
options.addOption("u");
options.addOption("j", "jis");
options.addOption("s", "sjis");
options.addOption("e", "euc");
options.addOption("w", null, "[0-9][0-9]");
options.addOption("J", "jis-input");
options.addOption("S", "sjis-input");
options.addOption("E", "euc-input");
options.addOption("W", null, "[0-9][0-9]");
options.addOption("t");
options.addOption("i_");
options.addOption("o_");
options.addOption("r");
options.addOption("h1", "hiragana");
options.addOption("h2", "katakana");
options.addOption("h3", "katakana-hiragana");
options.addOption("T");
options.addOption("l");
options.addOption("f", null, "[0-9]+-[0-9]*");
options.addOption("F");
options.addOption("Z", null, "[0-3]");
options.addOption("X");
options.addOption("x");
options.addOption("B", null, "[0-2]");
options.addOption("I");
options.addOption("L", null, "[uwm]");
options.addOption("d");
options.addOption("c");
options.addOption("m", null, "[BQN0]");
options.addOption("M", null, "[BQ]");
options.addOption(null, "fj");
options.addOption(null, "unix");
options.addOption(null, "mac");
options.addOption(null, "msdos");
options.addOption(null, "windows");
options.addOption(null, "mime");
options.addOption(null, "base64");
options.addOption(null, "mime-input");
options.addOption(null, "base64-input");
options.addOption(null, "ic", "ic=(.*)");
options.addOption(null, "oc", "oc=(.*)");
options.addOption(null, "fb-skip");
options.addOption(null, "fb-html");
options.addOption(null, "fb-xml");
options.addOption(null, "fb-perl");
options.addOption(null, "fb-java");
options.addOption(null, "fb-subchar", "fb-subchar=(.*)");
options.addOption(null, "no-cp932ext");
options.addOption(null, "cap-input");
options.addOption(null, "url-input");
options.addOption(null, "numchar-input");
options.addOption(null, "no-best-fit-chars");
CommandParser parser = new CommandParser();
Command cmd = parser.parse(options, s);
return cmd;
}
private static Map parseOpt(String s) {
Map options = new HashMap();
// default options
options.put("input", AUTO);
options.put("output", JIS);
options.put("mime-decode", MIME_DETECT);
options.put("mime-encode", NOCONV);
Command cmd = parseOption(s);
if (cmd.hasOption("j")) {
options.put("output", JIS);
}
if (cmd.hasOption("s")) {
options.put("output", SJIS);
}
if (cmd.hasOption("e")) {
options.put("output", EUC);
}
if (cmd.hasOption("w")) {
Option opt = cmd.getOption("w");
if ("32".equals(opt.getValue())) {
options.put("output", UTF32);
} else if("16".equals(opt.getValue())) {
options.put("output", UTF16);
} else {
options.put("output", UTF8);
}
}
if (cmd.hasOption("J")) {
options.put("input", JIS);
}
if (cmd.hasOption("S")) {
options.put("input", SJIS);
}
if (cmd.hasOption("E")) {
options.put("input", EUC);
}
if (cmd.hasOption("W")) {
Option opt = cmd.getOption("W");
if ("32".equals(opt.getValue())) {
options.put("input", UTF32);
} else if("16".equals(opt.getValue())) {
options.put("input", UTF16);
} else {
options.put("input", UTF8);
}
}
if (cmd.hasOption("m")) {
Option opt = cmd.getOption("m");
if (opt.getValue() == null) {
options.put("mime-decode", MIME_DETECT);
} else if ("B".equals(opt.getValue())) {
options.put("mime-decode", BASE64);
} else if ("Q".equals(opt.getValue())) {
options.put("mime-decode", QENCODE);
} else if ("N".equals(opt.getValue())) {
// TODO: non-strict option
} else if ("0".equals(opt.getValue())) {
options.put("mime-decode", NOCONV);
}
}
if (cmd.hasOption("M")) {
Option opt = cmd.getOption("M");
if (opt.getValue() == null) {
options.put("mime-encode", NOCONV);
} else if ("B".equals(opt.getValue())) {
options.put("mime-encode", BASE64);
} else if ("Q".equals(opt.getValue())) {
options.put("mime-encode", QENCODE);
}
}
if (cmd.hasOption("base64")) {
options.put("mime-encode", BASE64);
}
if (cmd.hasOption("oc")) {
Option opt = cmd.getOption("oc");
if ("ISO-2022-JP".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", JIS);
} else if ("EUC-JP".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", EUC);
} else if ("CP932".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", SJIS);
} else if ("Shift_JIS".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", SJIS);
} else if ("UTF-8".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", UTF8);
} else if ("UTF-8N".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", UTF8);
} else if ("UTF-16".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", UTF16);
} else if ("UTF-16BE-BOM".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", UTF16);
} else if ("UTF-32".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", UTF32);
} else if ("UTF-32BE-BOM".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("output", UTF32);
}
}
if (cmd.hasOption("ic")) {
Option opt = cmd.getOption("ic");
if ("ISO-2022-JP".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", JIS);
} else if ("EUC-JP".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", EUC);
} else if ("CP932".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", SJIS);
} else if ("Shift_JIS".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", SJIS);
} else if ("UTF-8".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", UTF8);
} else if ("UTF-8N".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", UTF8);
} else if ("UTF-16".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", UTF16);
} else if ("UTF-16BE-BOM".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", UTF16);
} else if ("UTF-32".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", UTF32);
} else if ("UTF-32BE-BOM".compareToIgnoreCase(opt.getValue()) == 0) {
options.put("input", UTF32);
}
}
return options;
}
static abstract class Converter {
protected ThreadContext context;
protected Map options;
public Converter(ThreadContext ctx, Map opt) {
context = ctx;
options = opt;
}
static boolean isMimeText(ByteList str, Map options) {
if (str.length() <= 6) {
return false;
}
if (options.get("mime-decode") == NOCONV) {
return false;
}
if (str.indexOf(BEGIN_MIME_STRING) < 0) {
return false;
}
if (str.lastIndexOf(END_MIME_STRING) < 0) {
return false;
}
return true;
}
private static RubyString encodeMimeString(Ruby runtime, RubyString str, ByteList format) {
RubyArray array = RubyArray.newArray(runtime, str);
return Pack.pack(runtime, array, format).chomp(runtime.getCurrentContext());
}
abstract RubyString convert(ByteList str);
ByteList convert_byte(ByteList str, String inputCharset, NKFCharset output) {
String outputCharset = output.getCharset();
CharsetDecoder decoder;
CharsetEncoder encoder;
try {
decoder = Charset.forName(inputCharset).newDecoder();
encoder = Charset.forName(outputCharset).newEncoder();
} catch (UnsupportedCharsetException e) {
throw context.runtime.newArgumentError("invalid charset");
}
ByteBuffer buf = ByteBuffer.wrap(str.getUnsafeBytes(), str.begin(), str.length());
try {
CharBuffer cbuf = decoder.decode(buf);
encoder.onUnmappableCharacter(java.nio.charset.CodingErrorAction.IGNORE);
buf = encoder.encode(cbuf);
} catch (CharacterCodingException e) {
throw context.runtime.newArgumentError("invalid encoding");
}
byte[] arr = buf.array();
ByteList r = new ByteList(arr, 0, buf.limit());
if (outputCharset.equalsIgnoreCase("Windows-31J")) outputCharset = "Shift_JIS";
if (outputCharset.equalsIgnoreCase("UTF-16")) outputCharset = "UTF-16BE";
Ruby ruby = context.runtime;
Encoding enc = ruby.getEncodingService().findEncoding(ruby.newString(outputCharset));
if (enc != null) {
r.setEncoding(enc);
}
return r;
}
}
static class DefaultConverter extends Converter {
public DefaultConverter(ThreadContext ctx, Map opt) {
super(ctx, opt);
}
RubyString convert(ByteList str) {
NKFCharset input = options.get("input");
NKFCharset output = options.get("output");
ByteList b = convert_byte(str,
input.getCharset(),
output);
return context.runtime.newString(b);
}
}
static class MimeConverter extends Converter {
public MimeConverter(ThreadContext ctx, Map opt) {
super(ctx, opt);
}
private String detectCharset(String charset) {
if (charset.compareToIgnoreCase(UTF8.getCharset()) == 0) {
return UTF8.getCharset();
} else if (charset.compareToIgnoreCase(JIS.getCharset()) == 0) {
return JIS.getCharset();
} else if (charset.compareToIgnoreCase(EUC.getCharset()) == 0) {
return EUC.getCharset();
} else {
return ASCII.getCharset();
}
}
private ByteList decodeMimeString(String str) {
String[] mime = str.split("^=\\?|\\?|\\?=$");
String charset = detectCharset(mime[1]);
int encode = mime[2].charAt(0);
ByteList body = new ByteList(mime[3].getBytes(), ASCIIEncoding.INSTANCE);
final RubyArray array;
if ('B' == encode || 'b' == encode) { // BASE64
array = Pack.unpack(context.runtime, body, PACK_BASE64);
} else { // Qencode
array = Pack.unpack(context.runtime, body, PACK_QENCODE);
}
RubyString s = (RubyString) array.entry(0);
ByteList decodeStr = s.asString().getByteList();
return convert_byte(decodeStr, charset, options.get("output"));
}
RubyString makeRubyString(ArrayList list) {
ByteList r = new ByteList();
for (ByteList l : list) {
r.append(l);
}
return context.runtime.newString(r);
}
RubyString convert(ByteList str) {
String s = Helpers.decodeByteList(context.runtime, str);
String[] token = s.split("\\s");
ArrayList raw_data = new ArrayList();
for (int i = 0; i < token.length; i++) {
raw_data.add(decodeMimeString(token[i]));
}
return makeRubyString(raw_data);
}
}
@Deprecated
public static final NKFCharset AUTO = NKFCharset.AUTO;
// no ISO-2022-JP in jcodings
@Deprecated
public static final NKFCharset JIS = NKFCharset.JIS;
@Deprecated
public static final NKFCharset EUC = NKFCharset.EUC;
@Deprecated
public static final NKFCharset SJIS = NKFCharset.SJIS;
@Deprecated
public static final NKFCharset BINARY = NKFCharset.BINARY;
@Deprecated
public static final NKFCharset NOCONV = NKFCharset.NOCONV;
@Deprecated
public static final NKFCharset UNKNOWN = NKFCharset.UNKNOWN;
@Deprecated
public static final NKFCharset ASCII = NKFCharset.ASCII;
@Deprecated
public static final NKFCharset UTF8 = NKFCharset.UTF8;
@Deprecated
public static final NKFCharset UTF16 = NKFCharset.UTF16;
@Deprecated
public static final NKFCharset UTF32 = NKFCharset.UTF32;
@Deprecated
public static final NKFCharset OTHER = NKFCharset.OTHER;
@Deprecated
public static final NKFCharset BASE64 = NKFCharset.BASE64;
@Deprecated
public static final NKFCharset QENCODE = NKFCharset.QENCODE;
@Deprecated
public static final NKFCharset MIME_DETECT = NKFCharset.MIME_DETECT;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy