fr.ms.log4jdbc.invocationhandler.WrapperMessageInvocationHandler Maven / Gradle / Ivy
The newest version!
/*
* This file is part of Log4Jdbc.
*
* Log4Jdbc is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Log4Jdbc is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Log4Jdbc. If not, see .
*
*/
package fr.ms.log4jdbc.invocationhandler;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.sql.ResultSet;
import fr.ms.log4jdbc.MessageLogger;
import fr.ms.log4jdbc.context.JdbcContext;
import fr.ms.log4jdbc.invocationhandler.MessageInvocationHandler.MessageInvocationContext;
import fr.ms.log4jdbc.message.MessageHandlerImpl;
import fr.ms.log4jdbc.sql.QueryImpl;
/**
*
* @see Marco4J
*
*
* @author Marco Semiao
*
*/
public class WrapperMessageInvocationHandler implements InvocationHandler {
private final InvocationHandler invocationHandler;
public WrapperMessageInvocationHandler(final Object implementation, final JdbcContext jdbcContext,
final MessageLogger[] logs, final MessageFactory messageFactory) {
this(implementation, jdbcContext, logs, messageFactory, false);
}
public WrapperMessageInvocationHandler(final Object implementation, final JdbcContext jdbcContext,
final MessageLogger[] logs, final MessageFactory messageFactory, final boolean timeInvocationResult) {
final MessageFactory wrapper = new WrapperMessageFactory(messageFactory);
invocationHandler = new MessageInvocationHandler(implementation, jdbcContext, logs, wrapper, timeInvocationResult);
}
public Object invoke(final Object proxy, final Method method, final Object[] args) throws Throwable {
return invocationHandler.invoke(proxy, method, args);
}
private final static class WrapperMessageFactory implements MessageFactory {
private final MessageFactory messageFactory;
WrapperMessageFactory(final MessageFactory messageFactory) {
this.messageFactory = messageFactory;
}
public MessageHandlerImpl transformMessage(final Object proxy, final Method method, final Object[] args,
final MessageInvocationContext mic, MessageHandlerImpl message) {
message = new MessageHandlerImpl(mic);
message = messageFactory.transformMessage(proxy, method, args, mic, message);
final Object invoke = mic.getInvokeTime().getInvoke();
final QueryImpl query = mic.getQuery();
if (query != null && invoke instanceof ResultSet) {
final JdbcContext jdbcContext = mic.getJdbcContext();
final ResultSet rs = (ResultSet) invoke;
query.initResultSetCollector(jdbcContext, rs);
}
return message;
}
public Object wrap(final Object invoke, final Object[] args, final MessageInvocationContext mic) {
return messageFactory.wrap(invoke, args, mic);
}
}
}