From 2596de4306d2354542533a0f2411354ebe589e0a Mon Sep 17 00:00:00 2001 From: wusheng Date: Tue, 17 Nov 2015 13:49:59 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=AE=8C=E6=88=90JDBC=E9=A9=B1=E5=8A=A8?= =?UTF-8?q?=E7=9A=84=E8=BF=BD=E8=B8=AA=E6=93=8D=E4=BD=9C=EF=BC=8C=E5=8C=85?= =?UTF-8?q?=E6=8B=ACconnection=E3=80=81statement=E3=80=81preparedStatement?= =?UTF-8?q?=E3=80=81CallableStatement=E7=9A=84JDBC=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E3=80=82=202.=E8=BF=BD=E8=B8=AAsql=E7=9A=84e?= =?UTF-8?q?xecute=E6=93=8D=E4=BD=9C=EF=BC=8C=E4=BB=A5=E5=8F=8Acommit/rollb?= =?UTF-8?q?ack=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../plugin/jdbc/SWCallableStatement.java | 736 ++++++++---------- .../plugin/jdbc/SWPreparedStatement.java | 30 +- ...ing.java => PreparedStatementTracing.java} | 2 +- 3 files changed, 328 insertions(+), 440 deletions(-) rename skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/tracing/{PreaparedStatementTracing.java => PreparedStatementTracing.java} (96%) diff --git a/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/SWCallableStatement.java b/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/SWCallableStatement.java index 940ba24dc..65b3d5045 100644 --- a/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/SWCallableStatement.java +++ b/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/SWCallableStatement.java @@ -24,6 +24,9 @@ import java.sql.Timestamp; import java.util.Calendar; import java.util.Map; +import com.ai.cloud.skywalking.plugin.jdbc.tracing.CallableStatementTracing; +import com.ai.cloud.skywalking.plugin.jdbc.tracing.CallableStatementTracing.Executable; + public class SWCallableStatement implements CallableStatement { private SWConnection realConnection; private java.sql.CallableStatement realStatement; @@ -40,13 +43,25 @@ public class SWCallableStatement implements CallableStatement { } public ResultSet executeQuery() throws SQLException { - // TODO Auto-generated method stub - return null; + return CallableStatementTracing.execute(realStatement, connectInfo, + "executeQuery", sql, new Executable() { + public ResultSet exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.executeQuery(); + } + }); } public int executeUpdate() throws SQLException { - // TODO Auto-generated method stub - return 0; + return CallableStatementTracing.execute(realStatement, connectInfo, + "executeUpdate", sql, new Executable() { + public Integer exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.executeUpdate(); + } + }); } public void setNull(int parameterIndex, int sqlType) throws SQLException { @@ -62,1109 +77,982 @@ public class SWCallableStatement implements CallableStatement { } public void setShort(int parameterIndex, short x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setShort(parameterIndex, x); } public void setInt(int parameterIndex, int x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setInt(parameterIndex, x); } public void setLong(int parameterIndex, long x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setLong(parameterIndex, x); } public void setFloat(int parameterIndex, float x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setFloat(parameterIndex, x); } public void setDouble(int parameterIndex, double x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setDouble(parameterIndex, x); } public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBigDecimal(parameterIndex, x); } public void setString(int parameterIndex, String x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setString(parameterIndex, x); } public void setBytes(int parameterIndex, byte[] x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBytes(parameterIndex, x); } public void setDate(int parameterIndex, Date x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setDate(parameterIndex, x); } public void setTime(int parameterIndex, Time x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setTime(parameterIndex, x); } public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setTimestamp(parameterIndex, x); } public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setAsciiStream(parameterIndex, x, length); } + @Deprecated public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setUnicodeStream(parameterIndex, x, length); } public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBinaryStream(parameterIndex, x, length); } public void clearParameters() throws SQLException { - // TODO Auto-generated method stub - + realStatement.clearParameters(); } public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setObject(parameterIndex, x, targetSqlType); } public void setObject(int parameterIndex, Object x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setObject(parameterIndex, x); } public boolean execute() throws SQLException { - // TODO Auto-generated method stub - return false; + return CallableStatementTracing.execute(realStatement, connectInfo, + "execute", sql, new Executable() { + public Boolean exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.execute(); + } + }); } public void addBatch() throws SQLException { - // TODO Auto-generated method stub - + realStatement.addBatch(); } public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setCharacterStream(parameterIndex, reader, length); } public void setRef(int parameterIndex, Ref x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setRef(parameterIndex, x); } public void setBlob(int parameterIndex, Blob x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBlob(parameterIndex, x); } public void setClob(int parameterIndex, Clob x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setClob(parameterIndex, x); } public void setArray(int parameterIndex, Array x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setArray(parameterIndex, x); } public ResultSetMetaData getMetaData() throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getMetaData(); } public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setDate(parameterIndex, x, cal); } public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setTime(parameterIndex, x, cal); } public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setTimestamp(parameterIndex, x, cal); } public void setNull(int parameterIndex, int sqlType, String typeName) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNull(parameterIndex, sqlType, typeName); } public void setURL(int parameterIndex, URL x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setURL(parameterIndex, x); } public ParameterMetaData getParameterMetaData() throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getParameterMetaData(); } public void setRowId(int parameterIndex, RowId x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setRowId(parameterIndex, x); } public void setNString(int parameterIndex, String value) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNString(parameterIndex, value); } public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNCharacterStream(parameterIndex, value, length); } public void setNClob(int parameterIndex, NClob value) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNClob(parameterIndex, value); } public void setClob(int parameterIndex, Reader reader, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setClob(parameterIndex, reader, length); } public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBlob(parameterIndex, inputStream, length); } public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNClob(parameterIndex, reader, length); } public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setSQLXML(parameterIndex, xmlObject); } public void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException { - // TODO Auto-generated method stub - + realStatement + .setObject(parameterIndex, x, targetSqlType, scaleOrLength); } public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setAsciiStream(parameterIndex, x, length); } public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBinaryStream(parameterIndex, x, length); } public void setCharacterStream(int parameterIndex, Reader reader, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setCharacterStream(parameterIndex, reader, length); } public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setAsciiStream(parameterIndex, x); } public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBinaryStream(parameterIndex, x); } public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setCharacterStream(parameterIndex, reader); } public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNCharacterStream(parameterIndex, value); } public void setClob(int parameterIndex, Reader reader) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setClob(parameterIndex, reader); } public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBlob(parameterIndex, inputStream); } public void setNClob(int parameterIndex, Reader reader) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNClob(parameterIndex, reader); } public ResultSet executeQuery(String sql) throws SQLException { - // TODO Auto-generated method stub - return null; + return CallableStatementTracing.execute(realStatement, connectInfo, + "executeQuery", sql, new Executable() { + public ResultSet exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.executeQuery(sql); + } + }); } public int executeUpdate(String sql) throws SQLException { - // TODO Auto-generated method stub - return 0; + return CallableStatementTracing.execute(realStatement, connectInfo, + "executeUpdate", sql, new Executable() { + public Integer exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.executeUpdate(sql); + } + }); } public void close() throws SQLException { - // TODO Auto-generated method stub - + realStatement.close(); } public int getMaxFieldSize() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getMaxFieldSize(); } public void setMaxFieldSize(int max) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setMaxFieldSize(max); } public int getMaxRows() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getMaxRows(); } public void setMaxRows(int max) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setMaxRows(max); } public void setEscapeProcessing(boolean enable) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setEscapeProcessing(enable); } public int getQueryTimeout() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getQueryTimeout(); } public void setQueryTimeout(int seconds) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setQueryTimeout(seconds); } public void cancel() throws SQLException { - // TODO Auto-generated method stub - + realStatement.cancel(); } public SQLWarning getWarnings() throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getWarnings(); } public void clearWarnings() throws SQLException { - // TODO Auto-generated method stub - + realStatement.clearWarnings(); } public void setCursorName(String name) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setCursorName(name); } public boolean execute(String sql) throws SQLException { - // TODO Auto-generated method stub - return false; + return CallableStatementTracing.execute(realStatement, connectInfo, + "execute", sql, new Executable() { + public Boolean exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.execute(sql); + } + }); } public ResultSet getResultSet() throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getResultSet(); } public int getUpdateCount() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getUpdateCount(); } public boolean getMoreResults() throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.getMoreResults(); } public void setFetchDirection(int direction) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setFetchDirection(direction); } public int getFetchDirection() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getFetchDirection(); } public void setFetchSize(int rows) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setFetchSize(rows); } public int getFetchSize() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getFetchSize(); } public int getResultSetConcurrency() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getResultSetConcurrency(); } public int getResultSetType() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getResultSetType(); } public void addBatch(String sql) throws SQLException { - // TODO Auto-generated method stub - + realStatement.addBatch(); } public void clearBatch() throws SQLException { - // TODO Auto-generated method stub - + realStatement.clearBatch(); } public int[] executeBatch() throws SQLException { - // TODO Auto-generated method stub - return null; + return CallableStatementTracing.execute(realStatement, connectInfo, + "executeBatch", "", new Executable() { + public int[] exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.executeBatch(); + } + }); } public Connection getConnection() throws SQLException { - // TODO Auto-generated method stub - return null; + return this.realConnection; } public boolean getMoreResults(int current) throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.getMoreResults(current); } public ResultSet getGeneratedKeys() throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getGeneratedKeys(); } - public int executeUpdate(String sql, int autoGeneratedKeys) + public int executeUpdate(String sql, final int autoGeneratedKeys) throws SQLException { - // TODO Auto-generated method stub - return 0; + return CallableStatementTracing.execute(realStatement, connectInfo, + "executeUpdate", sql, new Executable() { + public Integer exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.executeUpdate(sql, autoGeneratedKeys); + } + }); } - public int executeUpdate(String sql, int[] columnIndexes) + public int executeUpdate(String sql, final int[] columnIndexes) throws SQLException { - // TODO Auto-generated method stub - return 0; + return CallableStatementTracing.execute(realStatement, connectInfo, + "executeUpdate", sql, new Executable() { + public Integer exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.executeUpdate(sql, columnIndexes); + } + }); } - public int executeUpdate(String sql, String[] columnNames) + public int executeUpdate(String sql, final String[] columnNames) throws SQLException { - // TODO Auto-generated method stub - return 0; + return CallableStatementTracing.execute(realStatement, connectInfo, + "executeUpdate", sql, new Executable() { + public Integer exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.executeUpdate(sql, columnNames); + } + }); } - public boolean execute(String sql, int autoGeneratedKeys) + public boolean execute(String sql, final int autoGeneratedKeys) throws SQLException { - // TODO Auto-generated method stub - return false; + return CallableStatementTracing.execute(realStatement, connectInfo, + "execute", sql, new Executable() { + public Boolean exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.execute(sql, autoGeneratedKeys); + } + }); } - public boolean execute(String sql, int[] columnIndexes) throws SQLException { - // TODO Auto-generated method stub - return false; + public boolean execute(String sql, final int[] columnIndexes) throws SQLException { + return CallableStatementTracing.execute(realStatement, connectInfo, + "execute", sql, new Executable() { + public Boolean exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.execute(sql, columnIndexes); + } + }); } - public boolean execute(String sql, String[] columnNames) + public boolean execute(String sql, final String[] columnNames) throws SQLException { - // TODO Auto-generated method stub - return false; + return CallableStatementTracing.execute(realStatement, connectInfo, + "execute", sql, new Executable() { + public Boolean exe( + java.sql.CallableStatement realStatement, String sql) + throws SQLException { + return realStatement.execute(sql, columnNames); + } + }); } public int getResultSetHoldability() throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getResultSetHoldability(); } public boolean isClosed() throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.isClosed(); } public void setPoolable(boolean poolable) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setPoolable(poolable); } public boolean isPoolable() throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.isPoolable(); } public void closeOnCompletion() throws SQLException { - // TODO Auto-generated method stub - + realStatement.closeOnCompletion(); } public boolean isCloseOnCompletion() throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.isCloseOnCompletion(); } public T unwrap(Class iface) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.unwrap(iface); } public boolean isWrapperFor(Class iface) throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.isWrapperFor(iface); } public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException { - // TODO Auto-generated method stub - + realStatement.registerOutParameter(parameterIndex, sqlType); } public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException { - // TODO Auto-generated method stub - + realStatement.registerOutParameter(parameterIndex, sqlType, scale); } public boolean wasNull() throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.wasNull(); } public String getString(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getString(parameterIndex); } public boolean getBoolean(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.getBoolean(parameterIndex); } public byte getByte(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getByte(parameterIndex); } public short getShort(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getShort(parameterIndex); } public int getInt(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getInt(parameterIndex); } public long getLong(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getLong(parameterIndex); } public float getFloat(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getFloat(parameterIndex); } public double getDouble(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getDouble(parameterIndex); } + @Deprecated public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getBigDecimal(parameterIndex, scale); } public byte[] getBytes(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getBytes(parameterIndex); } public Date getDate(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getDate(parameterIndex); } public Time getTime(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getTime(parameterIndex); } public Timestamp getTimestamp(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getTimestamp(parameterIndex); } public Object getObject(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getObject(parameterIndex); } public BigDecimal getBigDecimal(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getBigDecimal(parameterIndex); } public Object getObject(int parameterIndex, Map> map) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getObject(parameterIndex, map); } public Ref getRef(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getRef(parameterIndex); } public Blob getBlob(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getBlob(parameterIndex); } public Clob getClob(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getClob(parameterIndex); } public Array getArray(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getArray(parameterIndex); } public Date getDate(int parameterIndex, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getDate(parameterIndex, cal); } public Time getTime(int parameterIndex, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getTime(parameterIndex, cal); } public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getTimestamp(parameterIndex, cal); } public void registerOutParameter(int parameterIndex, int sqlType, String typeName) throws SQLException { - // TODO Auto-generated method stub - + realStatement.registerOutParameter(parameterIndex, sqlType, typeName); } public void registerOutParameter(String parameterName, int sqlType) throws SQLException { - // TODO Auto-generated method stub - + realStatement.registerOutParameter(parameterName, sqlType); } public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException { - // TODO Auto-generated method stub - + realStatement.registerOutParameter(parameterName, sqlType, scale); } public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException { - // TODO Auto-generated method stub - + realStatement.registerOutParameter(parameterName, sqlType, typeName); } public URL getURL(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getURL(parameterIndex); } public void setURL(String parameterName, URL val) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setURL(parameterName, val); } public void setNull(String parameterName, int sqlType) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNull(parameterName, sqlType); } public void setBoolean(String parameterName, boolean x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBoolean(parameterName, x); } public void setByte(String parameterName, byte x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setByte(parameterName, x); } public void setShort(String parameterName, short x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setShort(parameterName, x); } public void setInt(String parameterName, int x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setInt(parameterName, x); } public void setLong(String parameterName, long x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setLong(parameterName, x); } public void setFloat(String parameterName, float x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setFloat(parameterName, x); } public void setDouble(String parameterName, double x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setDouble(parameterName, x); } public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBigDecimal(parameterName, x); } public void setString(String parameterName, String x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setString(parameterName, x); } public void setBytes(String parameterName, byte[] x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBytes(parameterName, x); } public void setDate(String parameterName, Date x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setDate(parameterName, x); } public void setTime(String parameterName, Time x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setTime(parameterName, x); } public void setTimestamp(String parameterName, Timestamp x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setTimestamp(parameterName, x); } public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setAsciiStream(parameterName, x, length); } public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBinaryStream(parameterName, x, length); } public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setObject(parameterName, x, targetSqlType, scale); } public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setObject(parameterName, x, targetSqlType); } public void setObject(String parameterName, Object x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setObject(parameterName, x); } public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setCharacterStream(parameterName, reader, length); } public void setDate(String parameterName, Date x, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setDate(parameterName, x, cal); } public void setTime(String parameterName, Time x, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setTime(parameterName, x, cal); } public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setTimestamp(parameterName, x, cal); } public void setNull(String parameterName, int sqlType, String typeName) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNull(parameterName, sqlType, typeName); } public String getString(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getString(parameterName); } public boolean getBoolean(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return false; + return realStatement.getBoolean(parameterName); } public byte getByte(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getByte(parameterName); } public short getShort(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getShort(parameterName); } public int getInt(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getInt(parameterName); } public long getLong(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getLong(parameterName); } public float getFloat(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getFloat(parameterName); } public double getDouble(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return 0; + return realStatement.getDouble(parameterName); } public byte[] getBytes(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getBytes(parameterName); } public Date getDate(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getDate(parameterName); } public Time getTime(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getTime(parameterName); } public Timestamp getTimestamp(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getTimestamp(parameterName); } public Object getObject(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getObject(parameterName); } public BigDecimal getBigDecimal(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getBigDecimal(parameterName); } public Object getObject(String parameterName, Map> map) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getObject(parameterName, map); } public Ref getRef(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getRef(parameterName); } public Blob getBlob(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getBlob(parameterName); } public Clob getClob(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getClob(parameterName); } public Array getArray(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getArray(parameterName); } public Date getDate(String parameterName, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getDate(parameterName, cal); } public Time getTime(String parameterName, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getTime(parameterName, cal); } public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getTimestamp(parameterName, cal); } public URL getURL(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getURL(parameterName); } public RowId getRowId(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getRowId(parameterIndex); } public RowId getRowId(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getRowId(parameterName); } public void setRowId(String parameterName, RowId x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setRowId(parameterName, x); } public void setNString(String parameterName, String value) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNString(parameterName, value); } public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNCharacterStream(parameterName, value, length); } public void setNClob(String parameterName, NClob value) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNClob(parameterName, value); } public void setClob(String parameterName, Reader reader, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setClob(parameterName, reader, length); } public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBlob(parameterName, inputStream, length); } public void setNClob(String parameterName, Reader reader, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNClob(parameterName, reader, length); } public NClob getNClob(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getNClob(parameterIndex); } public NClob getNClob(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getNClob(parameterName); } public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setSQLXML(parameterName, xmlObject); } public SQLXML getSQLXML(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getSQLXML(parameterIndex); } public SQLXML getSQLXML(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getSQLXML(parameterName); } public String getNString(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getNString(parameterIndex); } public String getNString(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getNString(parameterName); } public Reader getNCharacterStream(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getNCharacterStream(parameterIndex); } public Reader getNCharacterStream(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getNCharacterStream(parameterName); } public Reader getCharacterStream(int parameterIndex) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getCharacterStream(parameterIndex); } public Reader getCharacterStream(String parameterName) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getCharacterStream(parameterName); } public void setBlob(String parameterName, Blob x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBlob(parameterName, x); } public void setClob(String parameterName, Clob x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setClob(parameterName, x); } public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setAsciiStream(parameterName, x, length); } public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBinaryStream(parameterName, x, length); } public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setCharacterStream(parameterName, reader, length); } public void setAsciiStream(String parameterName, InputStream x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setAsciiStream(parameterName, x); } public void setBinaryStream(String parameterName, InputStream x) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBinaryStream(parameterName, x); } public void setCharacterStream(String parameterName, Reader reader) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setCharacterStream(parameterName, reader); } public void setNCharacterStream(String parameterName, Reader value) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNCharacterStream(parameterName, value); } public void setClob(String parameterName, Reader reader) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setClob(parameterName, reader); } public void setBlob(String parameterName, InputStream inputStream) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setBlob(parameterName, inputStream); } public void setNClob(String parameterName, Reader reader) throws SQLException { - // TODO Auto-generated method stub - + realStatement.setNClob(parameterName, reader); } public T getObject(int parameterIndex, Class type) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getObject(parameterIndex, type); } public T getObject(String parameterName, Class type) throws SQLException { - // TODO Auto-generated method stub - return null; + return realStatement.getObject(parameterName, type); } } diff --git a/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/SWPreparedStatement.java b/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/SWPreparedStatement.java index 7f7cfa5eb..7f9febd4e 100644 --- a/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/SWPreparedStatement.java +++ b/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/SWPreparedStatement.java @@ -23,8 +23,8 @@ import java.sql.Time; import java.sql.Timestamp; import java.util.Calendar; -import com.ai.cloud.skywalking.plugin.jdbc.tracing.PreaparedStatementTracing; -import com.ai.cloud.skywalking.plugin.jdbc.tracing.PreaparedStatementTracing.Executable; +import com.ai.cloud.skywalking.plugin.jdbc.tracing.PreparedStatementTracing; +import com.ai.cloud.skywalking.plugin.jdbc.tracing.PreparedStatementTracing.Executable; public class SWPreparedStatement implements PreparedStatement { private SWConnection realConnection; @@ -42,7 +42,7 @@ public class SWPreparedStatement implements PreparedStatement { } public ResultSet executeQuery(String sql) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeQuery", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeQuery", sql, new Executable() { public ResultSet exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.executeQuery(sql); @@ -51,7 +51,7 @@ public class SWPreparedStatement implements PreparedStatement { } public int executeUpdate(String sql) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { public Integer exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.executeUpdate(sql); @@ -108,7 +108,7 @@ public class SWPreparedStatement implements PreparedStatement { } public boolean execute(String sql) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "execute", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql, new Executable() { public Boolean exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.execute(sql); @@ -161,7 +161,7 @@ public class SWPreparedStatement implements PreparedStatement { } public int[] executeBatch() throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeBatch", "", new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeBatch", "", new Executable() { public int[] exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.executeBatch(); @@ -183,7 +183,7 @@ public class SWPreparedStatement implements PreparedStatement { public int executeUpdate(String sql, final int autoGeneratedKeys) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { public Integer exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.executeUpdate(sql, autoGeneratedKeys); @@ -193,7 +193,7 @@ public class SWPreparedStatement implements PreparedStatement { public int executeUpdate(String sql, final int[] columnIndexes) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { public Integer exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.executeUpdate(sql, columnIndexes); @@ -203,7 +203,7 @@ public class SWPreparedStatement implements PreparedStatement { public int executeUpdate(String sql, final String[] columnNames) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { public Integer exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.executeUpdate(sql, columnNames); @@ -213,7 +213,7 @@ public class SWPreparedStatement implements PreparedStatement { public boolean execute(String sql, final int autoGeneratedKeys) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "execute", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql, new Executable() { public Boolean exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.execute(sql, autoGeneratedKeys); @@ -222,7 +222,7 @@ public class SWPreparedStatement implements PreparedStatement { } public boolean execute(String sql, final int[] columnIndexes) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "execute", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql, new Executable() { public Boolean exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.execute(sql, columnIndexes); @@ -232,7 +232,7 @@ public class SWPreparedStatement implements PreparedStatement { public boolean execute(String sql, final String[] columnNames) throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "execute", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql, new Executable() { public Boolean exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.execute(sql, columnNames); @@ -273,7 +273,7 @@ public class SWPreparedStatement implements PreparedStatement { } public ResultSet executeQuery() throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeQuery", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeQuery", sql, new Executable() { public ResultSet exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.executeQuery(); @@ -282,7 +282,7 @@ public class SWPreparedStatement implements PreparedStatement { } public int executeUpdate() throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { public Integer exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.executeUpdate(); @@ -378,7 +378,7 @@ public class SWPreparedStatement implements PreparedStatement { } public boolean execute() throws SQLException { - return PreaparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { + return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql, new Executable() { public Boolean exe(java.sql.PreparedStatement realStatement, String sql) throws SQLException { return realStatement.execute(); diff --git a/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/tracing/PreaparedStatementTracing.java b/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/tracing/PreparedStatementTracing.java similarity index 96% rename from skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/tracing/PreaparedStatementTracing.java rename to skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/tracing/PreparedStatementTracing.java index 5a3c552ab..974da70ab 100644 --- a/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/tracing/PreaparedStatementTracing.java +++ b/skywalking-sdk-plugin/jdbc-plugin/src/main/java/com/ai/cloud/skywalking/plugin/jdbc/tracing/PreparedStatementTracing.java @@ -11,7 +11,7 @@ import com.ai.cloud.skywalking.model.Identification; * @author wusheng * */ -public class PreaparedStatementTracing { +public class PreparedStatementTracing { private static RPCBuriedPointSender sender = new RPCBuriedPointSender(); public static R execute(java.sql.PreparedStatement realStatement,