com.caucho.vfs.i18n.ISO8859_1Writer Maven / Gradle / Ivy
/*
* Copyright (c) 1998-2018 Caucho Technology -- all rights reserved
*
* This file is part of Resin(R) Open Source
*
* Each copy or derived work must preserve the copyright notice and this
* notice unmodified.
*
* Resin Open Source 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
* (at your option) any later version.
*
* Resin Open Source 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, or any warranty
* of NON-INFRINGEMENT. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with Resin Open Source; if not, write to the
*
* Free SoftwareFoundation, Inc.
* 59 Temple Place, Suite 330
* Boston, MA 02111-1307 USA
*
* @author Scott Ferguson
*/
package com.caucho.vfs.i18n;
import com.caucho.util.ByteAppendable;
import com.caucho.vfs.OutputStreamWithBuffer;
import java.io.IOException;
/**
* Implements the ISO-8859-1 EncodingWriter factory.
*/
public final class ISO8859_1Writer extends EncodingWriter {
private final static ISO8859_1Writer _writer = new ISO8859_1Writer();
/**
* Null-arg constructor for instantiation by com.caucho.vfs.Encoding only.
*/
public ISO8859_1Writer()
{
}
/**
* Returns the Java encoding for the writer.
*/
public String getJavaEncoding()
{
return "ISO8859_1";
}
/**
* Returns null, since WriteStream handles ISO-8859-1 directly.
*
* @return null for ISO-8859-1
*/
public EncodingWriter create(String javaEncoding)
{
return _writer;
}
/**
* Returns null, since WriteStream handles ISO-8859-1 directly.
*
* @return null for ISO-8859-1
*/
public EncodingWriter create()
{
return _writer;
}
/**
* Returns the writer.
*/
public static EncodingWriter getStaticWriter()
{
return _writer;
}
/**
* Writes a character to the output stream with the correct encoding.
*
* @param ch the character to write.
*/
public void write(ByteAppendable os, char ch)
throws IOException
{
os.write(ch);
}
/**
* Writes a character buffer using the correct encoding.
*
* @param os output stream for data.
* @param cBuf data.
* @param cOffset starting offset into the buffer.
* @param cLength number of characters to write
*/
@Override
public int write(OutputStreamWithBuffer os,
char []cBuf, int cOffset, int cLength)
throws IOException
{
byte []bBuf = os.getBuffer();
int bOffset = os.getBufferOffset();
int bEnd = bBuf.length;
int cEnd = cOffset + cLength;
// int cEnd = cOffset + cLength;
while (cOffset < cEnd) {
int sublen = Math.min(bEnd - bOffset, cEnd - cOffset);
for (int i = sublen - 1; i >= 0; i--) {
char ch = cBuf[cOffset + i];
if (ch < 0x100) {
bBuf[bOffset + i] = (byte) ch;
}
else {
bBuf[bOffset + i] = 0x3f;
}
}
bOffset += sublen;
cOffset += sublen;
if (bOffset == bEnd && cLength > 0) {
bBuf = os.nextBuffer(bOffset);
bOffset = os.getBufferOffset();
bEnd = bBuf.length;
}
}
os.setBufferOffset(bOffset);
return cLength;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy