org.dbflute.s2dao.sqlcommand.TnAbstractQueryDynamicCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbflute-runtime Show documentation
Show all versions of dbflute-runtime Show documentation
The runtime library of DBFlute
/*
* Copyright 2014-2023 the original author or authors.
*
* 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.dbflute.s2dao.sqlcommand;
import javax.sql.DataSource;
import org.dbflute.bhv.core.BehaviorCommandMeta;
import org.dbflute.bhv.core.context.ResourceContext;
import org.dbflute.hook.CallbackContext;
import org.dbflute.hook.SqlStringFilter;
import org.dbflute.jdbc.StatementFactory;
import org.dbflute.s2dao.sqlhandler.TnCommandContextHandler;
import org.dbflute.twowaysql.SqlAnalyzer;
import org.dbflute.twowaysql.context.CommandContext;
import org.dbflute.twowaysql.context.CommandContextCreator;
import org.dbflute.twowaysql.node.Node;
/**
* @author modified by jflute (originated in S2Dao)
*/
public abstract class TnAbstractQueryDynamicCommand extends TnAbstractBasicSqlCommand {
// ===================================================================================
// Constructor
// ===========
public TnAbstractQueryDynamicCommand(DataSource dataSource, StatementFactory statementFactory) {
super(dataSource, statementFactory);
}
// ===================================================================================
// CommandContext Handler
// ======================
protected TnCommandContextHandler createCommandContextHandler(CommandContext context) {
final String executedSql = filterSqlStringByCallbackFilter(context.getSql());
final TnCommandContextHandler handler = newCommandContextHandler(executedSql, context);
handler.setUpdateSQLFailureProcessTitle(getUpdateSQLFailureProcessTitle());
return handler;
}
protected String filterSqlStringByCallbackFilter(String executedSql) {
final SqlStringFilter sqlStringFilter = getSqlStringFilter();
if (sqlStringFilter != null) {
final BehaviorCommandMeta meta = ResourceContext.behaviorCommand();
final String filteredSql = sqlStringFilter.filterQueryUpdate(meta, executedSql);
return filteredSql != null ? filteredSql : executedSql;
}
return executedSql;
}
protected SqlStringFilter getSqlStringFilter() {
if (!CallbackContext.isExistSqlStringFilterOnThread()) {
return null;
}
return CallbackContext.getCallbackContextOnThread().getSqlStringFilter();
}
protected TnCommandContextHandler newCommandContextHandler(String executedSql, CommandContext context) {
return new TnCommandContextHandler(_dataSource, _statementFactory, executedSql, context);
}
protected abstract String getUpdateSQLFailureProcessTitle();
// ===================================================================================
// CommandContext
// ==============
protected CommandContext createCommandContext(String twoWaySql, String[] argNames, Class>[] argTypes, Object[] args) {
final CommandContext ctx;
{
final SqlAnalyzer analyzer = createSqlAnalyzer(twoWaySql);
final Node node = analyzer.analyze();
final CommandContextCreator creator = new CommandContextCreator(argNames, argTypes);
ctx = creator.createCommandContext(args);
node.accept(ctx);
}
return ctx;
}
protected SqlAnalyzer createSqlAnalyzer(String twoWaySql) {
return ResourceContext.createSqlAnalyzer(twoWaySql, true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy