/* * :tabSize=4:indentSize=4:noTabs=false: * :folding=explicit:collapseFolds=1: * * Copyright (C) 2007 Kazutoshi Satoda * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package org.gjt.sp.jedit.io; //{{{ Imports import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.Reader; import java.io.SequenceInputStream; import java.io.Writer; import java.nio.charset.MalformedInputException; import java.nio.charset.UnsupportedCharsetException; import java.util.Arrays; import java.util.HashMap; import java.util.Map; import javax.annotation.Nonnull; //}}} /** * Encodings which have BOM at the beginning of byte stream. * * @since 4.3pre10 * @author Kazutoshi Satoda */ public class EncodingWithBOM implements Encoding { //{{{ Constructor public EncodingWithBOM(String plain) { byte[] bom = bomMap.get(plain); if (bom == null) { throw new UnsupportedCharsetException(plain + " with BOM"); } this.plain = new CharsetEncoding(plain); this.bom = bom; } //}}} //{{{ implements Encoding @Nonnull public Reader getTextReader(@Nonnull InputStream in) throws IOException { byte[] actualMark = new byte[bom.length]; int count = in.read(actualMark); if (count < bom.length || !Arrays.equals(actualMark, bom)) { throw new MalformedInputException(0); } return plain.getTextReader(in); } @Nonnull public Writer getTextWriter(@Nonnull OutputStream out) throws IOException { out.write(bom); return plain.getTextWriter(out); } @Nonnull public Reader getPermissiveTextReader(@Nonnull InputStream in) throws IOException { byte[] actualMark = new byte[bom.length]; int count = in.read(actualMark); if (count < bom.length || !Arrays.equals(actualMark, bom)) { // Concatenate the non-BOM bytes and the rest of // input so that the non-BOM bytes are reinterepreted // as some characters. in = new SequenceInputStream( new ByteArrayInputStream(actualMark, 0, count), in); } return plain.getPermissiveTextReader(in); } //}}} //{{{ class Detector public static class Detector implements EncodingDetector { public String detectEncoding(InputStream sample) throws IOException { byte[] mark = new byte[4]; int count = sample.read(mark); byte low = (byte)(BOM16 & 0xff); byte high = (byte)((BOM16 >> 8) & 0xff); if (count >= 4) { if (mark[0] == low && mark[1] == high && mark[2] == 0x00 && mark[3] == 0x00) { return "X-UTF-32LE-BOM"; } else if (mark[0] == 0x00 && mark[1] == 0x00 && mark[2] == high && mark[3] == low) { return "X-UTF-32BE-BOM"; } } if (count >= 2) { if (mark[0] == low && mark[1] == high) { return "x-UTF-16LE-BOM"; } else if (mark[0] == high && mark[1] == low) { // "x-UTF-16BE-BOM" does not available. // But an encoder for "UTF-16" actually uses // big endian with corresponding BOM. It just // works as "UTF-16BE with BOM". return "UTF-16"; } } if (count >= UTF8BOM.length) { int i = 0; while (i < UTF8BOM.length) { if (mark[i] != UTF8BOM[i]) { break; } ++i; } if (i == UTF8BOM.length) { return "UTF-8Y"; } } return null; } } //}}} //{{{ Private members //{{{ Statics private static final int BOM16 = 0xfeff; private static final byte[] UTF8BOM = { (byte)0xef, (byte)0xbb, (byte)0xbf }; private static final Map<String, byte[]> bomMap = new HashMap<String, byte[]>(); static { bomMap.put("UTF-8", UTF8BOM); byte low = (byte)(BOM16 & 0xff); byte high = (byte)((BOM16 >> 8) & 0xff); bomMap.put("UTF-16LE", new byte[] { low, high }); bomMap.put("UTF-16BE", new byte[] { high, low }); bomMap.put("UTF-32LE", new byte[] { low, high, 0x00, 0x00 }); bomMap.put("UTF-32BE", new byte[] { 0x00, 0x00, high, low }); } //}}} //{{{ Instance variables private final CharsetEncoding plain; private final byte[] bom; //}}} //}}} }