jodd.db.debug.LoggableAdvice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jodd-all Show documentation
Show all versions of jodd-all Show documentation
Jodd bundle - all classes in one jar
// Copyright (c) 2003-present, Jodd Team (http://jodd.org)
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
package jodd.db.debug;
import jodd.proxetta.ProxyAdvice;
import jodd.proxetta.ProxyTarget;
import jodd.typeconverter.Converter;
import java.util.ArrayList;
import java.util.Date;
import java.util.StringTokenizer;
/**
* Loggable advice over java.sql.PreparedStatement
.
*/
public class LoggableAdvice implements ProxyAdvice {
/**
* Used for storing parameter values needed for producing log.
*/
protected ArrayList parameterValues;
public String sqlTemplate;
@Override
public Object execute() {
int position = ((Integer) ProxyTarget.argument(1)).intValue();
if (ProxyTarget.targetMethodName().equals("setNull")) {
saveQueryParamValue(position, null);
} else {
saveQueryParamValue(position, ProxyTarget.argument(2));
}
return ProxyTarget.invoke();
}
// ---------------------------------------------------------------- additional methods
/**
* Returns the query string.
*/
public String getQueryString() {
if (sqlTemplate == null) {
return toString();
}
if (parameterValues == null) {
return sqlTemplate;
}
StringBuilder sb = new StringBuilder();
int qMarkCount = 0;
StringTokenizer tok = new StringTokenizer(sqlTemplate + ' ', "?");
while (tok.hasMoreTokens()) {
String oneChunk = tok.nextToken();
sb.append(oneChunk);
try {
Object value = null;
if (parameterValues.size() > 1 + qMarkCount) {
value = parameterValues.get(1 + qMarkCount);
qMarkCount++;
} else {
if (!tok.hasMoreTokens()) {
value = "";
}
}
if (value == null) {
value = "?";
}
sb.append(value);
} catch (Throwable th) {
sb.append("--- Building query failed: ").append(th.toString());
}
}
return sb.toString().trim();
}
/**
* Saves the parameter value obj
for the specified position
* for use in logging output.
*
* @param position position (starting at 1) of the parameter to save
* @param obj java.lang.Object the parameter value to save
*/
private void saveQueryParamValue(final int position, final Object obj) {
String strValue;
if (obj instanceof String || obj instanceof Date) {
strValue = "'" + obj + '\''; // if we have a String or Date , include '' in the saved value
}
else if (obj == null) {
strValue = ""; // convert null to the string null
}
else {
strValue = Converter.get().toString(obj); // all other objects (includes all Numbers, arrays, etc)
}
// if we are setting a position larger than current size of parameterValues, first make it larger
if (parameterValues == null) {
parameterValues = new ArrayList<>();
}
while (position >= parameterValues.size()) {
parameterValues.add(null);
}
parameterValues.set(position, strValue);
}
}