blob: af03c78fb71f7f8b8b45020aba26c51bb855128e [file] [log] [blame]
/*
* 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.axis2.context.externalize;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import java.io.IOException;
import java.io.ObjectOutput;
import java.io.ObjectStreamConstants;
/**
* DebugObjectOutputStream delegates to an ObjectOutput object.
* Each method logs in/out trace information
*/
public class DebugObjectOutputStream implements ObjectStreamConstants, ObjectOutput {
private static final Log log = LogFactory.getLog(DebugObjectOutputStream.class);
private static final boolean isDebug = log.isDebugEnabled();
ObjectOutput out;
DebugObjectOutputStream(ObjectOutput out) throws IOException {
super();
if (log.isDebugEnabled()) {
log.debug("--START DebugOutputStream--");
}
this.out = out;
}
public void close() throws IOException {
if (log.isDebugEnabled()) {
log.debug("--CLOSE DebugOutputStream--");
}
out.close();
}
public void flush() throws IOException {
if (log.isDebugEnabled()) {
log.debug("start flush()");
}
out.flush();
if (log.isDebugEnabled()) {
log.debug("end flush()");
}
}
public void write(byte[] b, int off, int len) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start write(b, off, len) off=" + off + " len=" + len);
}
if (len > 4) {
if (log.isDebugEnabled()) {
log.debug(" first four bytes = '" +
b[off] + "' '" +
b[off + 1] + "' '" +
b[off + 2] + "' '" +
b[off + 3] + "'");
}
}
out.write(b, off, len);
if (log.isDebugEnabled()) {
log.debug("end write(b, off, len)");
}
}
public void write(byte[] b) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start write byte[]");
}
out.write(b);
if (log.isDebugEnabled()) {
log.debug("end write(b)");
}
}
public void write(int b) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start write(int) int=" + b);
}
out.write(b);
if (log.isDebugEnabled()) {
log.debug("end write(int)");
}
}
public void writeBoolean(boolean v) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeBoolean(v) v=" + v);
}
out.writeBoolean(v);
if (log.isDebugEnabled()) {
log.debug("end writeBoolean(v)");
}
}
public void writeByte(int v) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeByte(v) v=" + v);
}
out.writeByte(v);
if (log.isDebugEnabled()) {
log.debug("end writeByte(v)");
}
}
public void writeBytes(String s) throws IOException {
log.debug("start writeBytes(s) s=" + s);
out.writeBytes(s);
log.debug("end writeBytes(s)");
}
public void writeChar(int v) throws IOException {
log.debug("start writeChar(v) v=" + v);
out.writeChar(v);
log.debug("end writeChar(v)");
}
public void writeChars(String s) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeChars(s) s=" + s);
}
out.writeChars(s);
if (log.isDebugEnabled()) {
log.debug("end writeChars(s)");
}
}
public void writeDouble(double v) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeDouble(v) v=" + v);
}
out.writeDouble(v);
if (log.isDebugEnabled()) {
log.debug("end writeDouble(v)");
}
}
public void writeFloat(float v) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeFloat(v) v=" + v);
}
out.writeFloat(v);
if (log.isDebugEnabled()) {
log.debug("end writeFloat(v)");
}
}
public void writeInt(int v) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeInt(v) v=" + v);
}
out.writeInt(v);
if (log.isDebugEnabled()) {
log.debug("end writeInt(v)");
}
}
public void writeLong(long v) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeLong(v) v=" + v);
}
out.writeLong(v);
if (log.isDebugEnabled()) {
log.debug("end writeLong(v)");
}
}
public void writeObject(Object obj) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeObject(v) v=" + valueName(obj));
}
out.writeObject(obj);
if (log.isDebugEnabled()) {
log.debug("end writeObject(v)");
}
}
public void writeShort(int v) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeShort(v) v=" + v);
}
out.writeShort(v);
if (log.isDebugEnabled()) {
log.debug("end writeShort(v)");
}
}
public void writeUTF(String str) throws IOException {
if (log.isDebugEnabled()) {
log.debug("start writeUTF(v) v=" + str);
}
out.writeUTF(str);
if (log.isDebugEnabled()) {
log.debug("end writeUTF(v)");
}
}
private String valueName(Object obj) {
if (obj == null) {
return "null";
} else if (obj instanceof String) {
return (String) obj;
} else {
return "Object of class = " + obj.getClass().getName();
}
}
}