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

io.questdb.cairo.TableNameRegistry 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.ObjHashSet;
import io.questdb.std.ObjList;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.TestOnly;

import java.io.Closeable;

public interface TableNameRegistry extends Closeable {
    TableToken LOCKED_TOKEN = new TableToken("__locked__", "__locked__", Integer.MAX_VALUE, false, false, false);

    TableToken addTableAlias(String newName, TableToken tableToken);

    /**
     * Cleans the registry and releases all resources
     */
    void close();

    /**
     * Part of "drop table" workflow. Purges name from the registry to make the name available for new
     * tables. The method checks that table name and token both match the latest information held in
     * the registry. This is to avoid race condition on "drop" and "create" table by the same name.
     *
     * @param token table token of the same table as of the time of "drop"
     * @return true if table name was removed, false otherwise
     */
    boolean dropTable(TableToken token);

    /**
     * Returns table token by table name. If table does not exist, returns null.
     *
     * @param tableName table name
     * @return resolves table name to TableToken. If no token exists, returns null
     */
    TableToken getTableToken(CharSequence tableName);

    /**
     * Returns table token by directory name. If table does not exist, returns null.
     *
     * @param dirName directory name
     * @return resolves private table name to TableToken. If no token exists, returns null
     */
    TableToken getTableTokenByDirName(String dirName);

    /**
     * Returns total count of table tokens. Among live tables it can count dropped tables which are not fully deleted yet.
     *
     * @param includeDropped if true, count dropped tables
     */
    int getTableTokenCount(boolean includeDropped);

    /**
     * Sets all table tokens to the target provided. Among live tables it can return dropped tables which are not fully deleted yet.
     *
     * @param target         target to set table tokens to
     * @param includeDropped if true, include dropped tables
     */
    void getTableTokens(ObjHashSet target, boolean includeDropped);

    /**
     * Returns Table Token by directory name.
     *
     * @param dirName directory name
     * @return If table does not exist, returns null otherwise returns TableToken
     */
    TableToken getTokenByDirName(CharSequence dirName);

    /**
     * Checks that table token does not belong to a dropped table.
     *
     * @param tableToken table token to check
     * @return true if table id dropped, false otherwise
     */
    boolean isTableDropped(TableToken tableToken);

    /**
     * Locks table name for creation and returns table token.
     * {@link #registerName(TableToken)} must be called to complete table creation and release the lock.
     * or {@link #unlockTableName(TableToken)} must be called to release lock without completing table creation.
     *
     * @param tableName table name
     * @param dirName   private table name, e.g. the directory where the table files are stored
     * @param tableId   unique table id
     * @param isWal     true if table is WAL enabled
     * @return table token or null if table name with the same tableId, private name is already registered
     */
    TableToken lockTableName(String tableName, String dirName, int tableId, boolean isWal);

    /**
     * Purges token from registry after table, and it's WAL segments have been removed on disk. This method is
     * part of async directory purging job.
     *
     * @param token table token to remove
     */
    void purgeToken(TableToken token);

    /**
     * Tests consistency of the internal data structures. This is test-only method
     */
    void reconcile();

    /**
     * Registers table name and releases lock. This method must be called after {@link #lockTableName(String, String, int, boolean)}.
     *
     * @param tableToken table token returned by {@link #lockTableName(String, String, int, boolean)}
     */
    void registerName(TableToken tableToken);

    /**
     * Reloads table name registry from storage.
     */
    default void reload() {
        reload(null);
    }

    /**
     * Reloads table name registry from storage, adjusted with converted tables.
     *
     * @param convertedTables - list of table tokens for tables that have just been converted from WAL to non-WAL or
     *                        other way around. This list can be null or empty if no tables have changes the layout.
     */
    void reload(@Nullable ObjList convertedTables);

    void removeAlias(TableToken tableToken);

    /**
     * Updates table name in registry.
     *
     * @param oldName    old table  name
     * @param newName    new table name
     * @param tableToken table token to make sure intended table name is updated
     * @return updated table token
     */
    TableToken rename(CharSequence oldName, CharSequence newName, TableToken tableToken);

    void rename(TableToken alias, TableToken replaceWith);

    /**
     * Resets table name storage memory to initial value. Used to not false detect memory leaks in tests.
     */
    @TestOnly
    void resetMemory();

    /**
     * Unlocks table name. This method must be called after {@link #lockTableName(String, String, int, boolean)}.
     * If table name is not locked, does nothing.
     *
     * @param tableToken table token returned by {@link #lockTableName(String, String, int, boolean)}
     */
    void unlockTableName(TableToken tableToken);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy