All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.log4jdbc.CallableStatementSpy Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2007-2010 Arthur Blake
 *
 * Licensed 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 net.sf.log4jdbc;

import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.CallableStatement;
import java.sql.Clob;
import java.sql.Date;
import java.sql.NClob;
import java.sql.PreparedStatement;
import java.sql.Ref;
import java.sql.RowId;
import java.sql.SQLException;
import java.sql.SQLXML;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;

/**
 * Wraps a CallableStatement and reports method calls, returns and exceptions.
 *
 * @author Arthur Blake
 * @author Tim Azzopardi minor changes for supporting result set tracing
 */
public class CallableStatementSpy extends PreparedStatementSpy implements CallableStatement
{
  protected void reportAllReturns(String methodCall, String msg)
  {
    log.methodReturned(this, methodCall, msg, getRealStatement(), (Object[])null);
  }

  /**
   * The real underlying CallableStatement that this CallableStatementSpy wraps.
   */
  private CallableStatement realCallableStatement;

  /**
   * Get the real underlying CallableStatement that this CallableStatementSpy wraps.
   *
   * @return the real underlying CallableStatement.
   */
  public CallableStatement getRealCallableStatement()
  {
    return realCallableStatement;
  }

  /**
   * Create a CallableStatementSpy (JDBC 4 version) to spy upon a CallableStatement.
   *
   * @param sql                   The SQL used for this CallableStatement
   * @param connectionSpy         The ConnectionSpy which produced this CallableStatementSpy
   * @param realCallableStatement The real CallableStatement that is being spied upon
   */
  public CallableStatementSpy(String sql, ConnectionSpy connectionSpy, CallableStatement realCallableStatement)
  {
    super(sql, connectionSpy, realCallableStatement);
    this.realCallableStatement = realCallableStatement;
  }

  public String getClassType()
  {
    return "CallableStatement";
  }

  // forwarding methods

  public Date getDate(int parameterIndex) throws SQLException
  {
    String methodCall = "getDate(" + parameterIndex + ")";
    try
    {
      return (Date) reportReturn(methodCall, realCallableStatement.getDate(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Date getDate(int parameterIndex, Calendar cal) throws SQLException
  {
    String methodCall = "getDate(" + parameterIndex + ", " + cal + ")";
    try
    {
      return (Date) reportReturn(methodCall, realCallableStatement.getDate(parameterIndex, cal));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Ref getRef(String parameterName) throws SQLException
  {
    String methodCall = "getRef(" + parameterName + ")";
    try
    {
      return (Ref) reportReturn(methodCall, realCallableStatement.getRef(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Time getTime(String parameterName) throws SQLException
  {
    String methodCall = "getTime(" + parameterName + ")";
    try
    {
      return (Time) reportReturn(methodCall, realCallableStatement.getTime(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setTime(String parameterName, Time x) throws SQLException
  {
    String methodCall = "setTime(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setTime(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public Blob getBlob(int i) throws SQLException
  {
    String methodCall = "getBlob(" + i + ")";
    try
    {
      return (Blob) reportReturn(methodCall, realCallableStatement.getBlob(i));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Clob getClob(int i) throws SQLException
  {
    String methodCall = "getClob(" + i + ")";
    try
    {
      return (Clob) reportReturn(methodCall, realCallableStatement.getClob(i));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Array getArray(int i) throws SQLException
  {
    String methodCall = "getArray(" + i + ")";
    try
    {
      return (Array) reportReturn(methodCall, realCallableStatement.getArray(i));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public byte[] getBytes(int parameterIndex) throws SQLException
  {
    String methodCall = "getBytes(" + parameterIndex + ")";
    try
    {
      return (byte[]) reportReturn(methodCall, realCallableStatement.getBytes(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public double getDouble(int parameterIndex) throws SQLException
  {
    String methodCall = "getDouble(" + parameterIndex + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getDouble(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public int getInt(int parameterIndex) throws SQLException
  {
    String methodCall = "getInt(" + parameterIndex + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getInt(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public boolean wasNull() throws SQLException
  {
    String methodCall = "wasNull()";
    try
    {
      return reportReturn(methodCall, realCallableStatement.wasNull());
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Time getTime(int parameterIndex) throws SQLException
  {
    String methodCall = "getTime(" + parameterIndex + ")";
    try
    {
      return (Time) reportReturn(methodCall, realCallableStatement.getTime(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Time getTime(int parameterIndex, Calendar cal) throws SQLException
  {
    String methodCall = "getTime(" + parameterIndex + ", " + cal + ")";
    try
    {
      return (Time) reportReturn(methodCall, realCallableStatement.getTime(parameterIndex, cal));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Timestamp getTimestamp(String parameterName) throws SQLException
  {
    String methodCall = "getTimestamp(" + parameterName + ")";
    try
    {
      return (Timestamp) reportReturn(methodCall, realCallableStatement.getTimestamp(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setTimestamp(String parameterName, Timestamp x) throws SQLException
  {
    String methodCall = "setTimestamp(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setTimestamp(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public String getString(int parameterIndex) throws SQLException
  {
    String methodCall = "getString(" + parameterIndex + ")";
    try
    {
      return (String) reportReturn(methodCall, realCallableStatement.getString(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException
  {
    String methodCall = "registerOutParameter(" + parameterIndex + ", " + sqlType + ")";
    argTraceSet(parameterIndex, null, "");
    try
    {
      realCallableStatement.registerOutParameter(parameterIndex, sqlType);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException
  {
    String methodCall = "registerOutParameter(" + parameterIndex + ", " + sqlType + ", " + scale + ")";
    argTraceSet(parameterIndex, null, "");
    try
    {
      realCallableStatement.registerOutParameter(parameterIndex, sqlType, scale);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void registerOutParameter(int paramIndex, int sqlType, String typeName) throws SQLException
  {
    String methodCall = "registerOutParameter(" + paramIndex + ", " + sqlType + ", " + typeName + ")";
    argTraceSet(paramIndex, null, "");
    try
    {
      realCallableStatement.registerOutParameter(paramIndex, sqlType, typeName);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public byte getByte(String parameterName) throws SQLException
  {
    String methodCall = "getByte(" + parameterName + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getByte(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public double getDouble(String parameterName) throws SQLException
  {
    String methodCall = "getDouble(" + parameterName + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getDouble(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public float getFloat(String parameterName) throws SQLException
  {
    String methodCall = "getFloat(" + parameterName + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getFloat(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public int getInt(String parameterName) throws SQLException
  {
    String methodCall = "getInt(" + parameterName + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getInt(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public long getLong(String parameterName) throws SQLException
  {
    String methodCall = "getLong(" + parameterName + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getLong(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public short getShort(String parameterName) throws SQLException
  {
    String methodCall = "getShort(" + parameterName + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getShort(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public boolean getBoolean(String parameterName) throws SQLException
  {
    String methodCall = "getBoolean(" + parameterName + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getBoolean(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public byte[] getBytes(String parameterName) throws SQLException
  {
    String methodCall = "getBytes(" + parameterName + ")";
    try
    {
      return (byte[]) reportReturn(methodCall, realCallableStatement.getBytes(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setByte(String parameterName, byte x) throws SQLException
  {
    String methodCall = "setByte(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setByte(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setDouble(String parameterName, double x) throws SQLException
  {
    String methodCall = "setDouble(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setDouble(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setFloat(String parameterName, float x) throws SQLException
  {
    String methodCall = "setFloat(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setFloat(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void registerOutParameter(String parameterName, int sqlType) throws SQLException
  {
    String methodCall = "registerOutParameter(" + parameterName + ", " + sqlType + ")";
    try
    {
      realCallableStatement.registerOutParameter(parameterName, sqlType);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setInt(String parameterName, int x) throws SQLException
  {
    String methodCall = "setInt(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setInt(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setNull(String parameterName, int sqlType) throws SQLException
  {
    String methodCall = "setNull(" + parameterName + ", " + sqlType + ")";
    try
    {
      realCallableStatement.setNull(parameterName, sqlType);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException
  {
    String methodCall = "registerOutParameter(" + parameterName + ", " + sqlType + ", " + scale + ")";
    try
    {
      realCallableStatement.registerOutParameter(parameterName, sqlType, scale);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setLong(String parameterName, long x) throws SQLException
  {
    String methodCall = "setLong(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setLong(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setShort(String parameterName, short x) throws SQLException
  {
    String methodCall = "setShort(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setShort(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setBoolean(String parameterName, boolean x) throws SQLException
  {
    String methodCall = "setBoolean(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setBoolean(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setBytes(String parameterName, byte[] x) throws SQLException
  {
    //todo: dump byte array?
    String methodCall = "setBytes(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setBytes(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public boolean getBoolean(int parameterIndex) throws SQLException
  {
    String methodCall = "getBoolean(" + parameterIndex + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getBoolean(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Timestamp getTimestamp(int parameterIndex) throws SQLException
  {
    String methodCall = "getTimestamp(" + parameterIndex + ")";
    try
    {
      return (Timestamp) reportReturn(methodCall, realCallableStatement.getTimestamp(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException
  {
    String methodCall = "setAsciiStream(" + parameterName + ", " + x + ", " + length + ")";
    try
    {
      realCallableStatement.setAsciiStream(parameterName, x, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException
  {
    String methodCall = "setBinaryStream(" + parameterName + ", " + x + ", " + length + ")";
    try
    {
      realCallableStatement.setBinaryStream(parameterName, x, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException
  {
    String methodCall = "setCharacterStream(" + parameterName + ", " + reader + ", " + length + ")";
    try
    {
      realCallableStatement.setCharacterStream(parameterName, reader, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public Object getObject(String parameterName) throws SQLException
  {
    String methodCall = "getObject(" + parameterName + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getObject(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setObject(String parameterName, Object x) throws SQLException
  {
    String methodCall = "setObject(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setObject(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException
  {
    String methodCall = "setObject(" + parameterName + ", " + x + ", " + targetSqlType + ")";
    try
    {
      realCallableStatement.setObject(parameterName, x, targetSqlType);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException
  {
    String methodCall = "setObject(" + parameterName + ", " + x + ", " + targetSqlType + ", " + scale + ")";
    try
    {
      realCallableStatement.setObject(parameterName, x, targetSqlType, scale);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException
  {
    String methodCall = "getTimestamp(" + parameterIndex + ", " + cal + ")";
    try
    {
      return (Timestamp) reportReturn(methodCall, realCallableStatement.getTimestamp(parameterIndex, cal));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Date getDate(String parameterName, Calendar cal) throws SQLException
  {
    String methodCall = "getDate(" + parameterName + ", " + cal + ")";
    try
    {
      return (Date) reportReturn(methodCall, realCallableStatement.getDate(parameterName, cal));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Time getTime(String parameterName, Calendar cal) throws SQLException
  {
    String methodCall = "getTime(" + parameterName + ", " + cal + ")";
    try
    {
      return (Time) reportReturn(methodCall, realCallableStatement.getTime(parameterName, cal));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException
  {
    String methodCall = "getTimestamp(" + parameterName + ", " + cal + ")";
    try
    {
      return (Timestamp) reportReturn(methodCall, realCallableStatement.getTimestamp(parameterName, cal));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setDate(String parameterName, Date x, Calendar cal) throws SQLException
  {
    String methodCall = "setDate(" + parameterName + ", " + x + ", " + cal + ")";
    try
    {
      realCallableStatement.setDate(parameterName, x, cal);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setTime(String parameterName, Time x, Calendar cal) throws SQLException
  {
    String methodCall = "setTime(" + parameterName + ", " + x + ", " + cal + ")";
    try
    {
      realCallableStatement.setTime(parameterName, x, cal);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException
  {
    String methodCall = "setTimestamp(" + parameterName + ", " + x + ", " + cal + ")";
    try
    {
      realCallableStatement.setTimestamp(parameterName, x, cal);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public short getShort(int parameterIndex) throws SQLException
  {
    String methodCall = "getShort(" + parameterIndex + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getShort(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public long getLong(int parameterIndex) throws SQLException
  {
    String methodCall = "getLong(" + parameterIndex + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getLong(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public float getFloat(int parameterIndex) throws SQLException
  {
    String methodCall = "getFloat(" + parameterIndex + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getFloat(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Ref getRef(int i) throws SQLException
  {
    String methodCall = "getRef(" + i + ")";
    try
    {
      return (Ref) reportReturn(methodCall, realCallableStatement.getRef(i));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  /**
   * @deprecated
   */
  public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException
  {
    String methodCall = "getBigDecimal(" + parameterIndex + ", " + scale + ")";
    try
    {
      return (BigDecimal) reportReturn(methodCall, realCallableStatement.getBigDecimal(parameterIndex, scale));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public URL getURL(int parameterIndex) throws SQLException
  {
    String methodCall = "getURL(" + parameterIndex + ")";
    try
    {
      return (URL) reportReturn(methodCall, realCallableStatement.getURL(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }

  }

  public BigDecimal getBigDecimal(int parameterIndex) throws SQLException
  {
    String methodCall = "getBigDecimal(" + parameterIndex + ")";
    try
    {
      return (BigDecimal) reportReturn(methodCall, realCallableStatement.getBigDecimal(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public byte getByte(int parameterIndex) throws SQLException
  {
    String methodCall = "getByte(" + parameterIndex + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getByte(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Object getObject(int parameterIndex) throws SQLException
  {
    String methodCall = "getObject(" + parameterIndex + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getObject(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Object getObject(int i, Map map) throws SQLException
  {
    String methodCall = "getObject(" + i + ", " + map + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getObject(i, map));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public String getString(String parameterName) throws SQLException
  {
    String methodCall = "getString(" + parameterName + ")";
    try
    {
      return (String) reportReturn(methodCall, realCallableStatement.getString(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException
  {
    String methodCall = "registerOutParameter(" + parameterName + ", " + sqlType + ", " + typeName + ")";
    try
    {
      realCallableStatement.registerOutParameter(parameterName, sqlType, typeName);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setNull(String parameterName, int sqlType, String typeName) throws SQLException
  {
    String methodCall = "setNull(" + parameterName + ", " + sqlType + ", " + typeName + ")";
    try
    {
      realCallableStatement.setNull(parameterName, sqlType, typeName);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setString(String parameterName, String x) throws SQLException
  {
    String methodCall = "setString(" + parameterName + ", " + x + ")";

    try
    {
      realCallableStatement.setString(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public BigDecimal getBigDecimal(String parameterName) throws SQLException
  {
    String methodCall = "getBigDecimal(" + parameterName + ")";
    try
    {
      return (BigDecimal) reportReturn(methodCall, realCallableStatement.getBigDecimal(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Object getObject(String parameterName, Map> map) throws SQLException {
    String methodCall = "getObject(" + parameterName + ", " + map + ")";
    try
    {
      return reportReturn(methodCall, realCallableStatement.getObject(parameterName, map));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException
  {
    String methodCall = "setBigDecimal(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setBigDecimal(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public URL getURL(String parameterName) throws SQLException
  {
    String methodCall = "getURL(" + parameterName + ")";
    try
    {
      return (URL) reportReturn(methodCall, realCallableStatement.getURL(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public RowId getRowId(int parameterIndex) throws SQLException {
    String methodCall = "getRowId(" + parameterIndex + ")";
    try
    {
      return (RowId) reportReturn(methodCall, realCallableStatement.getRowId(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public RowId getRowId(String parameterName) throws SQLException {
    String methodCall = "getRowId(" + parameterName + ")";
    try
    {
      return (RowId) reportReturn(methodCall, realCallableStatement.getRowId(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setRowId(String parameterName, RowId x) throws SQLException {
    String methodCall = "setRowId(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setRowId(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setNString(String parameterName, String value) throws SQLException {
    String methodCall = "setNString(" + parameterName + ", " + value + ")";
    try
    {
      realCallableStatement.setNString(parameterName, value);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setNCharacterStream(String parameterName, Reader reader, long length) throws SQLException {
    String methodCall = "setNCharacterStream(" + parameterName + ", " + reader + ", " + length + ")";
    try
    {
      realCallableStatement.setNCharacterStream(parameterName, reader, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setNClob(String parameterName, NClob value) throws SQLException {
    String methodCall = "setNClob(" + parameterName + ", " + value + ")";
    try
    {
      realCallableStatement.setNClob(parameterName, value);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setClob(String parameterName, Reader reader, long length) throws SQLException {
    String methodCall = "setClob(" + parameterName + ", " + reader + ", " + length + ")";
    try
    {
      realCallableStatement.setClob(parameterName, reader, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {
    String methodCall = "setBlob(" + parameterName + ", " + inputStream + ", " + length + ")";
    try
    {
      realCallableStatement.setBlob(parameterName, inputStream, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
    String methodCall = "setNClob(" + parameterName + ", " + reader + ", " + length + ")";
    try
    {
      realCallableStatement.setNClob(parameterName, reader, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public NClob getNClob(int parameterIndex) throws SQLException {
    String methodCall = "getNClob(" + parameterIndex + ")";
    try
    {
      return (NClob) reportReturn(methodCall, realCallableStatement.getNClob(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public NClob getNClob(String parameterName) throws SQLException {
    String methodCall = "getNClob(" + parameterName + ")";
    try
    {
      return (NClob) reportReturn(methodCall, realCallableStatement.getNClob(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
    String methodCall = "setSQLXML(" + parameterName + ", " + xmlObject + ")";
    try
    {
      realCallableStatement.setSQLXML(parameterName, xmlObject);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public SQLXML getSQLXML(int parameterIndex) throws SQLException {
    String methodCall = "getSQLXML(" + parameterIndex + ")";
    try
    {
      return (SQLXML) reportReturn(methodCall, realCallableStatement.getSQLXML(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public SQLXML getSQLXML(String parameterName) throws SQLException {
    String methodCall = "getSQLXML(" + parameterName + ")";
    try
    {
      return (SQLXML) reportReturn(methodCall, realCallableStatement.getSQLXML(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }

  }

  public String getNString(int parameterIndex) throws SQLException {
    String methodCall = "getNString(" + parameterIndex + ")";
    try
    {
      return (String) reportReturn(methodCall, realCallableStatement.getNString(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public String getNString(String parameterName) throws SQLException {
    String methodCall = "getNString(" + parameterName + ")";
    try
    {
      return (String) reportReturn(methodCall, realCallableStatement.getNString(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Reader getNCharacterStream(int parameterIndex) throws SQLException {
    String methodCall = "getNCharacterStream(" + parameterIndex + ")";
    try
    {
      return (Reader) reportReturn(methodCall, realCallableStatement.getNCharacterStream(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Reader getNCharacterStream(String parameterName) throws SQLException {
    String methodCall = "getNCharacterStream(" + parameterName + ")";
    try
    {
      return (Reader) reportReturn(methodCall, realCallableStatement.getNCharacterStream(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Reader getCharacterStream(int parameterIndex) throws SQLException {
    String methodCall = "getCharacterStream(" + parameterIndex + ")";
    try
    {
      return (Reader) reportReturn(methodCall, realCallableStatement.getCharacterStream(parameterIndex));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Reader getCharacterStream(String parameterName) throws SQLException {
    String methodCall = "getCharacterStream(" + parameterName + ")";
    try
    {
      return (Reader) reportReturn(methodCall, realCallableStatement.getCharacterStream(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setBlob(String parameterName, Blob x) throws SQLException {
    String methodCall = "setBlob(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setBlob(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setClob(String parameterName, Clob x) throws SQLException {
    String methodCall = "setClob(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setClob(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException {
    String methodCall = "setAsciiStream(" + parameterName + ", " + x + ", " + length + ")";
    try
    {
      realCallableStatement.setAsciiStream(parameterName, x, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException {
    String methodCall = "setBinaryStream(" + parameterName + ", " + x + ", " + length + ")";
    try
    {
      realCallableStatement.setBinaryStream(parameterName, x, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException {
    String methodCall = "setCharacterStream(" + parameterName + ", " + reader + ", " + length + ")";
    try
    {
      realCallableStatement.setCharacterStream(parameterName, reader, length);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setAsciiStream(String parameterName, InputStream x) throws SQLException {
    String methodCall = "setAsciiStream(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setAsciiStream(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setBinaryStream(String parameterName, InputStream x) throws SQLException {
    String methodCall = "setBinaryStream(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setBinaryStream(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setCharacterStream(String parameterName, Reader reader) throws SQLException {
    String methodCall = "setCharacterStream(" + parameterName + ", " + reader + ")";
    try
    {
      realCallableStatement.setCharacterStream(parameterName, reader);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setNCharacterStream(String parameterName, Reader reader) throws SQLException {
    String methodCall = "setNCharacterStream(" + parameterName + ", " + reader + ")";
    try
    {
      realCallableStatement.setNCharacterStream(parameterName, reader);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setClob(String parameterName, Reader reader) throws SQLException {
    String methodCall = "setClob(" + parameterName + ", " + reader + ")";
    try
    {
      realCallableStatement.setClob(parameterName, reader);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setBlob(String parameterName, InputStream inputStream) throws SQLException {
    String methodCall = "setBlob(" + parameterName + ", " + inputStream + ")";
    try
    {
      realCallableStatement.setBlob(parameterName, inputStream);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setNClob(String parameterName, Reader reader) throws SQLException {
    String methodCall = "setNClob(" + parameterName + ", " + reader + ")";
    try
    {
      realCallableStatement.setNClob(parameterName, reader);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public void setURL(String parameterName, URL val) throws SQLException
  {
    String methodCall = "setURL(" + parameterName + ", " + val + ")";
    try
    {
      realCallableStatement.setURL(parameterName, val);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public Array getArray(String parameterName) throws SQLException
  {
    String methodCall = "getURL(" + parameterName + ")";
    try
    {
      return (Array) reportReturn(methodCall, realCallableStatement.getArray(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Blob getBlob(String parameterName) throws SQLException
  {
    String methodCall = "getBlob(" + parameterName + ")";
    try
    {
      return (Blob) reportReturn(methodCall, realCallableStatement.getBlob(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Clob getClob(String parameterName) throws SQLException
  {
    String methodCall = "getClob(" + parameterName + ")";
    try
    {
      return (Clob) reportReturn(methodCall, realCallableStatement.getClob(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public Date getDate(String parameterName) throws SQLException
  {
    String methodCall = "getDate(" + parameterName + ")";
    try
    {
      return (Date) reportReturn(methodCall, realCallableStatement.getDate(parameterName));
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
  }

  public void setDate(String parameterName, Date x) throws SQLException
  {
    String methodCall = "setDate(" + parameterName + ", " + x + ")";
    try
    {
      realCallableStatement.setDate(parameterName, x);
    }
    catch (SQLException s)
    {
      reportException(methodCall, s);
      throw s;
    }
    reportReturn(methodCall);
  }

  public  T unwrap(Class iface) throws SQLException {
    String methodCall = "unwrap(" + (iface==null?"null":iface.getName()) + ")";
    try
    {
      //todo: double check this logic
      //NOTE: could call super.isWrapperFor to simplify this logic, but it would result in extra log output
      //because the super classes would be invoked, thus executing their logging methods too...
      return (T)reportReturn(methodCall,
        (iface != null && (iface == CallableStatement.class||iface==PreparedStatement.class||
          iface==Statement.class||iface==Spy.class))?
          (T)this:
          realCallableStatement.unwrap(iface));
    }
    catch (SQLException s)
    {
      reportException(methodCall,s);
      throw s;
    }
  }

  public boolean isWrapperFor(Class iface) throws SQLException
  {
    String methodCall = "isWrapperFor(" + (iface==null?"null":iface.getName()) + ")";
    try
    {
      //NOTE: could call super.isWrapperFor to simplify this logic, but it would result in extra log output
      //when the super classes would be invoked..
      return reportReturn(methodCall,
        (iface != null && (iface == CallableStatement.class||iface==PreparedStatement.class||iface==Statement.class||iface==Spy.class)) ||
        realCallableStatement.isWrapperFor(iface));
    }
    catch (SQLException s)
    {
      reportException(methodCall,s);
      throw s;
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy