/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @author Tom Zhou
*/
{
private boolean shiftout = false;
private boolean SODesDefined = false;
private boolean SS2DesDefined = false;
private boolean SS3DesDefined = false;
private boolean newshiftout = false;
private boolean newSODesDefined = false;
private boolean newSS2DesDefined = false;
private boolean newSS3DesDefined = false;
throws MalformedInputException
{
reset();
return 0;
}
public void reset() {
shiftout = false;
SODesDefined = false;
SS2DesDefined = false;
SS3DesDefined = false;
}
{
if (ch<0x80)
return true;
}
{
int index = 0;
byte tmpByte[];
int converted;
try{
} catch(Exception e) {
return -1;
}
if (converted == 2) {
if (!SODesDefined) {
newSODesDefined = true;
}
if (!shiftout) {
newshiftout = true;
}
} else {
if (!SS2DesDefined) {
newSS2DesDefined = true;
}
}
{
if(!SS3DesDefined){
newSS3DesDefined = true;
}
}
}
return index;
}
/**
* Character conversion
*/
{
int outputSize;
byte [] tmpbuf = new byte[this.getMaxBytesPerChar()];
byte [] outputByte;
//Fixed 4122961 by bringing the charOff++ out to this
// loop where it belongs, changing the loop from
// while(){} to for(){}.
outputByte = tmpbuf;
if (shiftout){
newshiftout = false;
outputSize = 2;
} else {
outputSize = 1;
}
newSODesDefined = false;
newSS2DesDefined = false;
newSS3DesDefined = false;
}
} else {
}
if (outputSize == -1) {
if (subMode) {
if(!newSODesDefined){
outputSize = 2;
} else {
}
} else {
badInputLength = 1;
throw new UnknownCharacterException();
}
}
throw new ConversionBufferFullException();
for (int i = 0; i < outputSize; i++)
// Bug 4266772. Update statuses only when output buffer has been
// updated. When ConversionBufferFullException() has been throwed
// we want to keep old statuses for next call.
}
}
}