
org.skife.jdbi.v2.sqlobject.customizers.OverrideStatementLocatorWith Maven / Gradle / Ivy
/*
* Copyright (C) 2004 - 2013 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.StatementLocator;
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 locator on a sql object, May be specified on either the interface
* or method level.
*/
@Retention(RetentionPolicy.RUNTIME)
@SqlStatementCustomizingAnnotation(OverrideStatementLocatorWith.Factory.class)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface OverrideStatementLocatorWith
{
/**
* Specify the statement locator class to use
*/
Class extends org.skife.jdbi.v2.tweak.StatementLocator> value();
static class Factory implements SqlStatementCustomizerFactory
{
public SqlStatementCustomizer createForMethod(Annotation annotation, Class sqlObjectType, Method method)
{
OverrideStatementLocatorWith sl = (OverrideStatementLocatorWith) annotation;
final org.skife.jdbi.v2.tweak.StatementLocator f;
try {
f = instantiate(sl.value(), sqlObjectType, method);
}
catch (Exception e) {
throw new IllegalStateException("unable to instantiate a statement locator", e);
}
return new SqlStatementCustomizer()
{
public void apply(SQLStatement q)
{
q.setStatementLocator(f);
}
};
}
public SqlStatementCustomizer createForType(Annotation annotation, Class sqlObjectType)
{
OverrideStatementLocatorWith sl = (OverrideStatementLocatorWith) annotation;
final StatementLocator f;
try {
f = instantiate(sl.value(), sqlObjectType, null);
}
catch (Exception e) {
throw new IllegalStateException("unable to instantiate a statement locator", e);
}
return new SqlStatementCustomizer()
{
public void apply(SQLStatement q)
{
q.setStatementLocator(f);
}
};
}
private StatementLocator instantiate(Class extends StatementLocator> value,
Class sqlObjectType,
Method m) throws Exception
{
try {
Constructor extends StatementLocator> no_arg = value.getConstructor();
return no_arg.newInstance();
}
catch (NoSuchMethodException e) {
try {
Constructor extends StatementLocator> class_arg = value.getConstructor(Class.class);
return class_arg.newInstance(sqlObjectType);
}
catch (NoSuchMethodException e1) {
if (m != null) {
Constructor extends StatementLocator> 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());
}
}
}
public SqlStatementCustomizer createForParameter(Annotation annotation, Class sqlObjectType, Method method, Object arg)
{
throw new UnsupportedOperationException("Not applicable to parameter");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy