/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.commons.imaging.common; import java.io.IOException; import java.io.OutputStream; public class BinaryOutputStream extends OutputStream { private final OutputStream os; // default byte order for Java, many file formats. private ByteOrder byteOrder = ByteOrder.BIG_ENDIAN; protected boolean debug = false; private int count = 0; public final void setDebug(final boolean b) { debug = b; } public final boolean getDebug() { return debug; } public BinaryOutputStream(final OutputStream os, final ByteOrder byteOrder) { this.byteOrder = byteOrder; this.os = os; } public BinaryOutputStream(final OutputStream os) { this.os = os; } protected void setByteOrder(final ByteOrder byteOrder) { this.byteOrder = byteOrder; } public ByteOrder getByteOrder() { return byteOrder; } @Override public void write(final int i) throws IOException { os.write(i); count++; } @Override public final void write(final byte bytes[]) throws IOException { os.write(bytes, 0, bytes.length); count += bytes.length; } @Override public final void write(final byte bytes[], final int offset, final int length) throws IOException { os.write(bytes, offset, length); count += length; } @Override public void flush() throws IOException { os.flush(); } @Override public void close() throws IOException { os.close(); } public int getByteCount() { return count; } public final void write4Bytes(final int value) throws IOException { if (byteOrder == ByteOrder.MOTOROLA) { write(0xff & (value >> 24)); write(0xff & (value >> 16)); write(0xff & (value >> 8)); write(0xff & value); } else { write(0xff & value); write(0xff & (value >> 8)); write(0xff & (value >> 16)); write(0xff & (value >> 24)); } } public final void write3Bytes(final int value) throws IOException { if (byteOrder == ByteOrder.MOTOROLA) { write(0xff & (value >> 16)); write(0xff & (value >> 8)); write(0xff & value); } else { write(0xff & value); write(0xff & (value >> 8)); write(0xff & (value >> 16)); } } public final void write2Bytes(final int value) throws IOException { if (byteOrder == ByteOrder.MOTOROLA) { write(0xff & (value >> 8)); write(0xff & value); } else { write(0xff & value); write(0xff & (value >> 8)); } } }