All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.palantir.atlasdb.keyvalue.dbkvs.timestamp.LegacyPhysicalBoundStoreStrategy Maven / Gradle / Ivy

There is a newer version: 0.1152.0
Show newest version
/*
 * (c) Copyright 2020 Palantir Technologies Inc. All rights reserved.
 *
 * 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 com.palantir.atlasdb.keyvalue.dbkvs.timestamp;

import com.palantir.atlasdb.keyvalue.api.TableReference;
import com.palantir.logsafe.Preconditions;
import com.palantir.nexus.db.DBType;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.OptionalLong;
import java.util.function.Function;
import org.apache.commons.dbutils.QueryRunner;

public class LegacyPhysicalBoundStoreStrategy implements PhysicalBoundStoreStrategy {
    private final TableReference timestampTable;
    private final String tablePrefix;

    public LegacyPhysicalBoundStoreStrategy(TableReference timestampTable, String tablePrefix) {
        this.timestampTable = Preconditions.checkNotNull(timestampTable, "timestampTable cannot be null");
        this.tablePrefix = tablePrefix;
    }

    @Override
    public void createTimestampTable(Connection connection, Function dbTypeExtractor)
            throws SQLException {
        PhysicalBoundStoreDatabaseUtils.createTimestampTable(
                connection,
                dbTypeExtractor,
                CreateTimestampTableQueries.getCreateTableQueriesForLegacyStore(prefixedTimestampTableName()));
    }

    @Override
    public OptionalLong readLimit(Connection connection) throws SQLException {
        String sql = "SELECT last_allocated FROM " + prefixedTimestampTableName() + " FOR UPDATE";
        QueryRunner run = new QueryRunner();
        return run.query(connection, sql, PhysicalBoundStoreDatabaseUtils::getLastAllocatedColumn);
    }

    @Override
    public void writeLimit(Connection connection, long limit) throws SQLException {
        String updateTs = "UPDATE " + prefixedTimestampTableName() + " SET last_allocated = ?";
        try (PreparedStatement statement = connection.prepareStatement(updateTs)) {
            statement.setLong(1, limit);
            statement.executeUpdate();
        }
    }

    @Override
    public void createLimit(Connection connection, long limit) throws SQLException {
        QueryRunner run = new QueryRunner();
        run.update(
                connection,
                String.format("INSERT INTO %s (last_allocated) VALUES (?)", prefixedTimestampTableName()),
                limit);
    }

    private String prefixedTimestampTableName() {
        return tablePrefix + timestampTable.getQualifiedName();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy