org.smooks.cartridges.persistence.jdbc.SQLExecutor Maven / Gradle / Ivy
/*-
* ========================LICENSE_START=================================
* smooks-persistence-cartridge
* %%
* Copyright (C) 2020 Smooks
* %%
* Licensed under the terms of the Apache License Version 2.0, or
* the GNU Lesser General Public License version 3.0 or later.
*
* SPDX-License-Identifier: Apache-2.0 OR LGPL-3.0-or-later
*
* ======================================================================
*
* 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.
*
* ======================================================================
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* =========================LICENSE_END==================================
*/
package org.smooks.cartridges.persistence.jdbc;
import org.smooks.api.ApplicationContext;
import org.smooks.api.ExecutionContext;
import org.smooks.api.SmooksConfigException;
import org.smooks.api.SmooksException;
import org.smooks.api.bean.context.BeanContext;
import org.smooks.api.bean.repository.BeanId;
import org.smooks.api.delivery.ordering.Consumer;
import org.smooks.api.delivery.ordering.Producer;
import org.smooks.api.resource.visitor.VisitAfterIf;
import org.smooks.api.resource.visitor.VisitAfterReport;
import org.smooks.api.resource.visitor.VisitBeforeIf;
import org.smooks.api.resource.visitor.VisitBeforeReport;
import org.smooks.api.resource.visitor.sax.ng.AfterVisitor;
import org.smooks.api.resource.visitor.sax.ng.BeforeVisitor;
import org.smooks.assertion.AssertArgument;
import org.smooks.cartridges.persistence.datasource.AbstractDataSource;
import org.smooks.engine.delivery.fragment.NodeFragment;
import org.w3c.dom.Element;
import jakarta.annotation.PostConstruct;
import javax.inject.Inject;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* SQLExecutor Visitor.
*
* Supports extraction and persistence to a Database.
*
* @author [email protected]
*/
@SuppressWarnings("unchecked")
@VisitBeforeIf(condition = "executeBefore")
@VisitAfterIf(condition = "!executeBefore")
@VisitBeforeReport(summary = "Execute statement '${resource.parameters.statement}' on Datasource '${resource.parameters.datasource}'.", detailTemplate = "reporting/SQLExecutor.html")
@VisitAfterReport(summary = "Execute statement '${resource.parameters.statement}' on Datasource '${resource.parameters.datasource}'.", detailTemplate = "reporting/SQLExecutor.html")
public class SQLExecutor implements BeforeVisitor, AfterVisitor, Producer, Consumer {
@Inject
private String datasource;
@Inject
private String statement;
private StatementExec statementExec;
private String rsAppContextKey;
@Inject
private Optional resultSetName;
@Inject
private ResultSetScope resultSetScope = ResultSetScope.EXECUTION;
@Inject
private Long resultSetTTL = 900000L;
@Inject
private Boolean executeBefore = false;
@Inject
private ApplicationContext appContext;
private BeanId resultSetBeanId;
public SQLExecutor setDatasource(AbstractDataSource datasource) {
AssertArgument.isNotNull(datasource, "datasource");
this.datasource = datasource.getName();
return this;
}
public SQLExecutor setStatement(String statement) {
AssertArgument.isNotNullAndNotEmpty(statement, "statement");
this.statement = statement;
return this;
}
public SQLExecutor setResultSetName(String resultSetName) {
AssertArgument.isNotNullAndNotEmpty(resultSetName, "resultSetName");
this.resultSetName = Optional.of(resultSetName);
return this;
}
public String getResultSetName() {
return resultSetName.orElse(null);
}
public SQLExecutor setResultSetScope(ResultSetScope resultSetScope) {
AssertArgument.isNotNull(resultSetScope, "resultSetScope");
this.resultSetScope = resultSetScope;
return this;
}
public SQLExecutor setResultSetTTL(long resultSetTTL) {
this.resultSetTTL = resultSetTTL;
return this;
}
public SQLExecutor setExecuteBefore(boolean executeBefore) {
this.executeBefore = executeBefore;
return this;
}
public boolean getExecuteBefore() {
return executeBefore;
}
@PostConstruct
public void postConstruct() throws SmooksConfigException {
statementExec = new StatementExec(statement);
if (statementExec.getStatementType() == StatementType.QUERY && !resultSetName.isPresent()) {
throw new SmooksConfigException("Sorry, query statements must be accompanied by a 'resultSetName' property, under whose value the query results are bound.");
}
resultSetName.ifPresent(s -> resultSetBeanId = appContext.getBeanIdStore().register(s));
rsAppContextKey = datasource + ":" + statement;
}
public Set> getProducts() {
if (statementExec.getStatementType() == StatementType.QUERY) {
return Stream.of(resultSetName).collect(Collectors.toSet());
}
return Collections.emptySet();
}
public boolean consumes(Object object) {
return statement.contains(object.toString());
}
@Override
public void visitBefore(Element element, ExecutionContext executionContext) throws SmooksException {
executeSQL(executionContext, new NodeFragment(element));
}
@Override
public void visitAfter(Element element, ExecutionContext executionContext) throws SmooksException {
executeSQL(executionContext, new NodeFragment(element));
}
private void executeSQL(ExecutionContext executionContext, NodeFragment source) throws SmooksException {
Connection connection = AbstractDataSource.getConnection(datasource, executionContext);
BeanContext beanContext = executionContext.getBeanContext();
Map beanMap = beanContext.getBeanMap();
try {
if (!statementExec.isJoin()) {
if (statementExec.getStatementType() == StatementType.QUERY) {
if (resultSetScope == ResultSetScope.EXECUTION) {
beanContext.addBean(resultSetBeanId, statementExec.executeUnjoinedQuery(connection), source);
} else {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy