
org.skife.jdbi.v2.sqlobject.customizers.OverrideStatementRewriterWith Maven / Gradle / Ivy
/*
* Copyright (C) 2004 - 2014 Brian McCallister
*
* 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 org.skife.jdbi.v2.sqlobject.customizers;
import org.skife.jdbi.v2.SQLStatement;
import org.skife.jdbi.v2.sqlobject.SqlStatementCustomizer;
import org.skife.jdbi.v2.sqlobject.SqlStatementCustomizerFactory;
import org.skife.jdbi.v2.sqlobject.SqlStatementCustomizingAnnotation;
import org.skife.jdbi.v2.tweak.StatementRewriter;
import java.lang.annotation.Annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
/**
* Use this to override the statement rewriter on a sql object, May be specified on either the interface
* or method level.
*/
@Retention(RetentionPolicy.RUNTIME)
@SqlStatementCustomizingAnnotation(OverrideStatementRewriterWith.Factory.class)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface OverrideStatementRewriterWith
{
/**
* Specify the StatementRewriter class to use.
*/
Class extends StatementRewriter> value();
public static class Factory implements SqlStatementCustomizerFactory
{
@Override
public SqlStatementCustomizer createForMethod(Annotation annotation, Class sqlObjectType, Method method)
{
OverrideStatementRewriterWith anno = (OverrideStatementRewriterWith) annotation;
try {
final StatementRewriter rw = instantiate(anno.value(), sqlObjectType, method);
return new SqlStatementCustomizer()
{
@Override
public void apply(SQLStatement q)
{
q.setStatementRewriter(rw);
}
};
}
catch (Exception e) {
throw new IllegalStateException(e);
}
}
@Override
public SqlStatementCustomizer createForType(Annotation annotation, Class sqlObjectType)
{
OverrideStatementRewriterWith anno = (OverrideStatementRewriterWith) annotation;
try {
final StatementRewriter rw = instantiate(anno.value(), sqlObjectType, null);
return new SqlStatementCustomizer()
{
@Override
public void apply(SQLStatement q)
{
q.setStatementRewriter(rw);
}
};
}
catch (Exception e) {
throw new IllegalStateException(e);
}
}
@Override
public SqlStatementCustomizer createForParameter(Annotation annotation, Class sqlObjectType, Method method, Object arg)
{
throw new IllegalStateException("Not defined on parameters!");
}
private StatementRewriter instantiate(Class extends StatementRewriter> value,
Class sqlObjectType,
Method m) throws Exception
{
try {
Constructor extends StatementRewriter> no_arg = value.getConstructor();
return no_arg.newInstance();
}
catch (NoSuchMethodException e) {
try {
Constructor extends StatementRewriter> class_arg = value.getConstructor(Class.class);
return class_arg.newInstance(sqlObjectType);
}
catch (NoSuchMethodException e1) {
if (m != null) {
Constructor extends StatementRewriter> c_m_arg = value.getConstructor(Class.class,
Method.class);
return c_m_arg.newInstance(sqlObjectType, m);
}
throw new IllegalStateException("Unable to instantiate, no viable constructor " + value.getName());
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy