
net.javacrumbs.shedlock.provider.jdbctemplate.JdbcTemplateStorageAccessor Maven / Gradle / Ivy
/**
* Copyright 2009-2018 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 net.javacrumbs.shedlock.provider.jdbctemplate;
import net.javacrumbs.shedlock.core.LockConfiguration;
import net.javacrumbs.shedlock.provider.jdbctemplate.JdbcTemplateLockProvider.Configuration;
import net.javacrumbs.shedlock.support.AbstractStorageAccessor;
import org.springframework.dao.DataIntegrityViolationException;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.transaction.PlatformTransactionManager;
import org.springframework.transaction.TransactionDefinition;
import org.springframework.transaction.TransactionStatus;
import org.springframework.transaction.support.TransactionCallbackWithoutResult;
import org.springframework.transaction.support.TransactionTemplate;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.time.Instant;
import java.util.Calendar;
import java.util.TimeZone;
import static java.util.Objects.requireNonNull;
/**
* Spring JdbcTemplate based implementation usable in JTA environment
*/
class JdbcTemplateStorageAccessor extends AbstractStorageAccessor {
private final String tableName;
private final JdbcTemplate jdbcTemplate;
private final TransactionTemplate transactionTemplate;
private final TimeZone timeZone;
JdbcTemplateStorageAccessor(Configuration configuration) {
this.jdbcTemplate = requireNonNull(configuration.getJdbcTemplate(), "jdbcTemplate can not be null");
this.tableName = requireNonNull(configuration.getTableName(), "tableName can not be null");
PlatformTransactionManager transactionManager = configuration.getTransactionManager() != null ?
configuration.getTransactionManager() :
new DataSourceTransactionManager(jdbcTemplate.getDataSource());
this.transactionTemplate = new TransactionTemplate(transactionManager);
this.transactionTemplate.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRES_NEW);
this.timeZone = configuration.getTimeZone();
}
@Override
public boolean insertRecord(LockConfiguration lockConfiguration) {
String sql = "INSERT INTO " + tableName + "(name, lock_until, locked_at, locked_by) VALUES(?, ?, ?, ?)";
return transactionTemplate.execute(status -> {
try {
int insertedRows = jdbcTemplate.update(sql, preparedStatement -> {
preparedStatement.setString(1, lockConfiguration.getName());
setTimestamp(preparedStatement, 2, lockConfiguration.getLockAtMostUntil());
setTimestamp(preparedStatement, 3, Instant.now());
preparedStatement.setString(4, getHostname());
});
return insertedRows > 0;
} catch (DataIntegrityViolationException e) {
return false;
}
});
}
@Override
public boolean updateRecord(LockConfiguration lockConfiguration) {
String sql = "UPDATE " + tableName
+ " SET lock_until = ?, locked_at = ?, locked_by = ? WHERE name = ? AND lock_until <= ?";
return transactionTemplate.execute(status -> {
int updatedRows = jdbcTemplate.update(sql, statement -> {
Instant now = Instant.now();
setTimestamp(statement, 1, lockConfiguration.getLockAtMostUntil());
setTimestamp(statement, 2, now);
statement.setString(3, getHostname());
statement.setString(4, lockConfiguration.getName());
setTimestamp(statement, 5, now);
});
return updatedRows > 0;
});
}
private void setTimestamp(PreparedStatement preparedStatement, int patameterIndex, Instant time) throws SQLException {
if (timeZone == null) {
preparedStatement.setTimestamp(patameterIndex, Timestamp.from(time));
} else {
preparedStatement.setTimestamp(patameterIndex, Timestamp.from(time), Calendar.getInstance(timeZone));
}
}
@Override
public void unlock(LockConfiguration lockConfiguration) {
String sql = "UPDATE " + tableName + " SET lock_until = ? WHERE name = ?";
transactionTemplate.execute(new TransactionCallbackWithoutResult() {
@Override
protected void doInTransactionWithoutResult(TransactionStatus status) {
jdbcTemplate.update(sql, statement -> {
setTimestamp(statement, 1, lockConfiguration.getUnlockTime());
statement.setString(2, lockConfiguration.getName());
});
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy