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

io.questdb.cairo.TableNameRegistryRW Maven / Gradle / Ivy

/*******************************************************************************
 *     ___                  _   ____  ____
 *    / _ \ _   _  ___  ___| |_|  _ \| __ )
 *   | | | | | | |/ _ \/ __| __| | | |  _ \
 *   | |_| | |_| |  __/\__ \ |_| |_| | |_) |
 *    \__\_\\__,_|\___||___/\__|____/|____/
 *
 *  Copyright (c) 2014-2019 Appsicle
 *  Copyright (c) 2019-2023 QuestDB
 *
 *  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 io.questdb.cairo;

import io.questdb.std.Chars;
import io.questdb.std.ConcurrentHashMap;
import io.questdb.std.ObjList;
import org.jetbrains.annotations.Nullable;

import java.util.function.Predicate;

public class TableNameRegistryRW extends AbstractTableNameRegistry {
    private final ConcurrentHashMap nameTableTokenMap = new ConcurrentHashMap<>(false);
    private final ConcurrentHashMap reverseTableNameTokenMap = new ConcurrentHashMap<>();

    public TableNameRegistryRW(CairoConfiguration configuration, Predicate protectedTableResolver) {
        super(configuration, protectedTableResolver);
        if (!nameStore.lock()) {
            if (!configuration.getAllowTableRegistrySharedWrite()) {
                throw CairoException.critical(0).put("cannot lock table name registry file [path=").put(configuration.getRoot()).put(']');
            }
        }
        setNameMaps(nameTableTokenMap, reverseTableNameTokenMap);
    }

    @Override
    public TableToken addTableAlias(String newName, TableToken tableToken) {
        final TableToken newNameRecord = tableToken.renamed(newName);
        final TableToken oldToken = nameTableTokenMap.putIfAbsent(newName, newNameRecord);
        return oldToken == null ? newNameRecord : null;
    }

    @Override
    public boolean dropTable(TableToken token) {
        final ReverseTableMapItem reverseMapItem = reverseTableNameTokenMap.get(token.getDirName());
        if (reverseMapItem != null && nameTableTokenMap.remove(token.getTableName(), token)) {
            if (token.isWal()) {
                nameStore.logDropTable(token);
                reverseTableNameTokenMap.put(token.getDirName(), ReverseTableMapItem.ofDropped(token));
            } else {
                reverseTableNameTokenMap.remove(token.getDirName(), reverseMapItem);
            }
            return true;
        }
        return false;
    }

    @Override
    public TableToken lockTableName(String tableName, String dirName, int tableId, boolean isWal) {
        final TableToken registeredRecord = nameTableTokenMap.putIfAbsent(tableName, LOCKED_TOKEN);
        if (registeredRecord == null) {
            boolean isProtected = protectedTableResolver.test(tableName);
            boolean isSystem = TableUtils.isSystemTable(tableName, configuration);
            return new TableToken(tableName, dirName, tableId, isWal, isSystem, isProtected);
        } else {
            return null;
        }
    }

    @Override
    public void purgeToken(TableToken token) {
        reverseTableNameTokenMap.remove(token.getDirName());
    }

    @Override
    public void registerName(TableToken tableToken) {
        String tableName = tableToken.getTableName();
        if (!nameTableTokenMap.replace(tableName, LOCKED_TOKEN, tableToken)) {
            throw CairoException.critical(0).put("cannot register table, name is not locked [name=").put(tableName).put(']');
        }
        if (tableToken.isWal()) {
            nameStore.logAddTable(tableToken);
        }
        reverseTableNameTokenMap.put(tableToken.getDirName(), ReverseTableMapItem.of(tableToken));
    }

    @Override
    public synchronized void reloadTableNameCache(@Nullable ObjList convertedTables) {
        nameTableTokenMap.clear();
        reverseTableNameTokenMap.clear();
        if (!nameStore.isLocked()) {
            nameStore.lock();
        }
        nameStore.reload(nameTableTokenMap, reverseTableNameTokenMap, convertedTables);
    }

    @Override
    public void removeAlias(TableToken tableToken) {
        nameTableTokenMap.remove(tableToken.getTableName());
    }

    @Override
    public TableToken rename(CharSequence oldName, CharSequence newName, TableToken tableToken) {
        String newTableNameStr = Chars.toString(newName);
        TableToken newNameRecord = tableToken.renamed(newTableNameStr);

        if (nameTableTokenMap.putIfAbsent(newTableNameStr, newNameRecord) == null) {
            if (nameTableTokenMap.remove(oldName, tableToken)) {
                // Persist to file
                nameStore.logDropTable(tableToken);
                nameStore.logAddTable(newNameRecord);
                reverseTableNameTokenMap.put(newNameRecord.getDirName(), ReverseTableMapItem.of(newNameRecord));
                return newNameRecord;
            } else {
                // Already renamed by another thread. Revert new name reservation.
                nameTableTokenMap.remove(newTableNameStr, newNameRecord);
                throw CairoException.tableDoesNotExist(oldName);
            }
        } else {
            throw CairoException.nonCritical().put("table '").put(newName).put("' already exists");
        }
    }

    @Override
    public void replaceAlias(TableToken alias, TableToken replaceWith) {
        if (nameTableTokenMap.remove(alias.getTableName(), alias)) {
            nameStore.logDropTable(alias);
            nameStore.logAddTable(replaceWith);
            reverseTableNameTokenMap.put(replaceWith.getDirName(), ReverseTableMapItem.of(replaceWith));
        }
    }

    @Override
    public void unlockTableName(TableToken tableToken) {
        nameTableTokenMap.remove(tableToken.getTableName(), LOCKED_TOKEN);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy