TransactionManagerMVCC.java
/* Copyright (c) 2001-2024, The HSQL Development Group
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of the HSQL Development Group nor the names of its
 * contributors may be used to endorse or promote products derived from this
 * software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,
 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.hsqldb;
import org.hsqldb.error.Error;
import org.hsqldb.error.ErrorCode;
import org.hsqldb.lib.HsqlDeque;
import org.hsqldb.lib.LongDeque;
import org.hsqldb.persist.PersistentStore;
/**
 * Manages rows involved in transactions
 *
 * @author Fred Toussi (fredt@users dot sourceforge.net)
 * @version 2.7.3
 * @since 2.0.0
 */
public class TransactionManagerMVCC extends TransactionManagerCommon
        implements TransactionManager {
    // functional unit - merged committed transactions
    HsqlDeque<RowAction[]> committedTransactions    = new HsqlDeque<>();
    LongDeque              committedTransactionSCNs = new LongDeque();
    // locks
    boolean isLockedMode;
    Session catalogWriteSession;
    // these informational settings survive after the lock session has committed
    long lockTxTs;
    long lockSessionId;
    long unlockTxTs;
    long unlockSessionId;
    //
    int redoCount = 0;
    //
    public TransactionManagerMVCC(Database db) {
        super(db);
        lobSession = database.sessionManager.getSysLobSession();
        txModel    = MVCC;
    }
    public long getSystemChangeNumber() {
        return systemChangeNumber.get();
    }
    public void setSystemChangeNumber(long ts) {
        systemChangeNumber.set(ts);
    }
    public boolean isMVRows() {
        return true;
    }
    public boolean isMVCC() {
        return true;
    }
    public boolean is2PL() {
        return false;
    }
    public int getTransactionControl() {
        return MVCC;
    }
    public void setTransactionControl(Session session, int mode) {
        super.setTransactionControl(session, mode);
    }
    public void completeActions(Session session) {}
    public boolean prepareCommitActions(Session session) {
        if (session.abortTransaction) {
//            System.out.println("cascade fail " + session + " " + session.actionTimestamp);
            return false;
        }
        writeLock.lock();
        try {
            int limit = session.rowActionList.size();
            for (int i = 0; i < limit; i++) {
                RowAction action = session.rowActionList.get(i);
                if (!action.canCommit(session)) {
//                System.out.println("commit conflicts " + session + " " + session.actionTimestamp);
                    return false;
                }
            }
            session.actionSCN = getNextSystemChangeNumber();
            for (int i = 0; i < limit; i++) {
                RowAction action = session.rowActionList.get(i);
                action.prepareCommit(session);
            }
            // this is vestigial from the time when conflicts were found at commit
            for (int i = 0; i < session.actionSet.size(); i++) {
                Session current = session.actionSet.get(i).session;
                current.abortTransaction = true;
            }
            return true;
        } finally {
            writeLock.unlock();
            session.actionSet.clear();
        }
    }
    public boolean commitTransaction(Session session) {
        if (session.abortTransaction) {
            return false;
        }
        writeLock.lock();
        try {
            int limit = session.rowActionList.size();
            for (int i = 0; i < limit; i++) {
                RowAction action = session.rowActionList.get(i);
                if (!action.canCommit(session)) {
//                  System.out.println("commit conflicts " + session + " " + session.actionTimestamp);
                    return false;
                }
            }
            // new actionTimestamp used for commitTimestamp
            session.actionSCN         = getNextSystemChangeNumber();
            session.transactionEndSCN = session.actionSCN;
            endTransaction(session);
            for (int i = 0; i < limit; i++) {
                RowAction action = session.rowActionList.get(i);
                action.commit(session);
            }
            for (int i = 0; i < session.actionSet.size(); i++) {
                Session current = session.actionSet.get(i).session;
                current.abortTransaction = true;
            }
            adjustLobUsage(session);
            persistCommit(session);
            int newLimit = session.rowActionList.size();
            if (newLimit > limit) {
                RowAction[] list = session.rowActionList.getArray();
                mergeTransaction(list, limit, newLimit, session.actionSCN);
                finaliseRows(session, list, limit, newLimit);
                session.rowActionList.setSize(limit);
            }
            // session.actionTimestamp is the committed tx timestamp
            if (session == lobSession
                    || getFirstLiveTransactionTimestamp() > session.actionSCN) {
                RowAction[] list = session.rowActionList.getArray();
                mergeTransaction(list, 0, limit, session.actionSCN);
                finaliseRows(session, list, 0, limit);
            } else {
                if (session.rowActionList.size() > 0) {
                    RowAction[] list = session.rowActionList.toArray(
                        RowAction.emptyArray);
                    addToCommittedQueue(session, list);
                }
            }
            endTransactionTPL(session);
            session.isTransaction = false;
            countDownLatches(session);
        } finally {
            session.actionSet.clear();
            writeLock.unlock();
        }
        return true;
    }
    public void rollback(Session session) {
        writeLock.lock();
        try {
            session.abortTransaction  = false;
            session.actionSCN         = getNextSystemChangeNumber();
            session.transactionEndSCN = session.actionSCN;
            rollbackPartial(session, 0, session.transactionSCN);
            endTransaction(session);
            session.logSequences();
            endTransactionTPL(session);
            session.isTransaction = false;
            countDownLatches(session);
            session.sessionData.newLobFloor = SessionData.noLobFloor;
        } finally {
            writeLock.unlock();
        }
    }
    public void rollbackSavepoint(Session session, int index) {
        long timestamp = session.sessionContext.savepointTimestamps.get(index);
        Integer oi     = session.sessionContext.savepoints.get(index);
        int     start  = oi.intValue();
        while (session.sessionContext.savepoints.size() > index + 1) {
            session.sessionContext.savepoints.removeEntry(
                session.sessionContext.savepoints.size() - 1);
            session.sessionContext.savepointTimestamps.removeLast();
        }
        rollbackPartial(session, start, timestamp);
    }
    public void rollbackAction(Session session) {
        rollbackPartial(session, session.actionIndex, session.actionStartSCN);
    }
    /**
     * rollback the row actions from start index in list and
     * the given timestamp
     */
    public void rollbackPartial(Session session, int start, long timestamp) {
        int limit = session.rowActionList.size();
        if (start == limit) {
            return;
        }
        for (int i = limit - 1; i >= start; i--) {
            RowAction action = session.rowActionList.get(i);
            if (action == null
                    || action.type == RowActionBase.ACTION_NONE
                    || action.type == RowActionBase.ACTION_DELETE_FINAL) {
                continue;
            }
            Row row = action.memoryRow;
            if (row == null) {
                row = (Row) action.store.get(action.getPos(), false);
            }
            if (row == null) {
                continue;
            }
            writeLock.lock();
            try {
                action.rollback(session, timestamp);
                int type = action.mergeRollback(session, timestamp);
                if (action.type == RowActionBase.ACTION_DELETE_FINAL) {
                    if (action.deleteComplete) {
                        continue;
                    }
                    action.deleteComplete = true;
                }
                action.store.rollbackRow(session, row, type, txModel);
            } finally {
                writeLock.unlock();
            }
        }
        session.rowActionList.setSize(start);
    }
    public RowAction addDeleteAction(
            Session session,
            Table table,
            PersistentStore store,
            Row row,
            int[] changedColumns) {
        RowAction action = store.addDeleteActionToRow(
            session,
            row,
            changedColumns,
            true);
        if (table.isTemp) {
            store.delete(session, row);
            row.rowAction = null;
            if (table.persistenceScope == Table.SCOPE_ROUTINE) {
                return action;
            }
        }
        Session actionSession = null;
        boolean redoAction    = true;
        if (action == null) {
            writeLock.lock();
            try {
                rollbackAction(session);
                if (session.isolationLevel
                        == SessionInterface.TX_REPEATABLE_READ
                        || session.isolationLevel
                           == SessionInterface.TX_SERIALIZABLE) {
                    session.actionSet.clear();
                    session.redoAction       = false;
                    session.abortTransaction = session.txConflictRollback;
                    throw Error.error(ErrorCode.X_40501);
                }
                // can redo when conflicting action is already committed
                if (row.rowAction != null && row.rowAction.isDeleted()) {
                    session.actionSet.clear();
                    session.redoAction = true;
                    redoCount++;
                    throw Error.error(ErrorCode.X_40501);
                }
                redoAction = !session.actionSet.isEmpty();
                if (redoAction) {
                    actionSession = session.actionSet.get(0).session;
                    session.actionSet.clear();
                    if (actionSession != null) {
                        redoAction = checkDeadlock(session, actionSession);
                    }
                }
                if (redoAction) {
                    session.redoAction = true;
                    if (actionSession != null) {
                        actionSession.waitingSessions.add(session);
                        session.waitedSessions.add(actionSession);
                        session.latch.setCount(session.waitedSessions.size());
                    }
                    redoCount++;
                } else {
                    session.redoAction       = false;
                    session.abortTransaction = session.txConflictRollback;
                }
                throw Error.error(ErrorCode.X_40501);
            } finally {
                writeLock.unlock();
            }
        }
        session.rowActionList.add(action);
        return action;
    }
    public void addInsertAction(
            Session session,
            Table table,
            PersistentStore store,
            Row row,
            int[] changedColumns) {
        RowAction     action        = row.rowAction;
        Session       actionSession = null;
        boolean       redoAction    = false;
        boolean       redoWait      = true;
        HsqlException cause         = null;
        if (action == null) {
            throw Error.runtimeError(
                ErrorCode.GENERAL_ERROR,
                "TXManager - null insert action ");
        }
        try {
            store.indexRow(session, row);
        } catch (HsqlException e) {
            if (session.actionSet.isEmpty()) {
                throw e;
            }
            redoAction = true;
            cause      = e;
        }
        if (!redoAction) {
            if (table.isTemp) {
                row.rowAction = null;
                if (table.persistenceScope == Table.SCOPE_ROUTINE) {
                    return;
                }
            }
            session.rowActionList.add(action);
            return;
        }
        writeLock.lock();
        try {
            rollbackAction(session);
            RowActionBase otherAction = session.actionSet.get(0);
            actionSession = otherAction.session;
            session.actionSet.clear();
            if (otherAction.commitSCN != 0) {
                redoWait = false;
            }
            switch (session.isolationLevel) {
                case SessionInterface.TX_REPEATABLE_READ :
                case SessionInterface.TX_SERIALIZABLE :
                    redoAction = false;
                    break;
                default :
                    redoAction = checkDeadlock(session, actionSession);
            }
            if (redoAction) {
                session.redoAction = true;
                if (redoWait) {
                    actionSession.waitingSessions.add(session);
                    session.waitedSessions.add(actionSession);
                    session.latch.setCount(session.waitedSessions.size());
                }
                redoCount++;
            } else {
                session.abortTransaction = session.txConflictRollback;
                session.redoAction       = false;
            }
            throw Error.error(cause, ErrorCode.X_40501, null);
        } finally {
            writeLock.unlock();
        }
    }
// functional unit - accessibility of rows
    public boolean canRead(
            Session session,
            PersistentStore store,
            Row row,
            int mode,
            int[] colMap) {
        RowAction action = row.rowAction;
        if (action == null) {
            return true;
        } else if (action.table.isTemp) {
            return true;
        }
        if (mode == TransactionManager.ACTION_READ) {
            return action.canRead(
                session,
                TransactionManager.ACTION_READ,
                colMap);
        }
        if (mode == ACTION_REF) {
            return action.canRead(
                session,
                TransactionManager.ACTION_READ,
                colMap);
/*
            if (result) {
                synchronized (row) {
                    if (row.isMemory()) {
                        result = RowAction.addRefAction(session, row, colMap);
                    } else {
                        ReentrantReadWriteLock.WriteLock mapLock =
                            rowActionMap.getWriteLock();
                        mapLock.lock();
                        try {
                            action = row.rowAction;
                            if (action == null) {
                                action =
                                    (RowAction) rowActionMap.get(row.getPos());
                                row.rowAction = action;
                            }
                            result = RowAction.addRefAction(session, row,
                                                            colMap);
                            if (result && action == null) {
                                rowActionMap.put(row.getPos(), action);
                            }
                        } finally {
                            mapLock.unlock();
                        }
                    }
                }
                if (result) {
                    session.rowActionList.add(row.rowAction);
                } else {
                    if (!session.actionSet.isEmpty()) {
                        Session current = ((RowActionBase) session.actionSet.get(0)).session;
                        session.redoAction = true;
                        session.latch.countUp();
                        current.waitingSessions.add(session);
                        session.waitedSessions.add(current);
                        session.actionSet.clear();
                        throw Error.error(ErrorCode.X_40501);
                    }
                }
                return true;
            }
            return false;
*/
        }
        return action.canRead(session, mode, colMap);
    }
    /**
     * add a list of actions to the end of queue
     */
    void addToCommittedQueue(Session session, RowAction[] list) {
        synchronized (committedTransactionSCNs) {
            // add the txList according to commit timestamp
            committedTransactions.addLast(list);
            // get session commit timestamp
            committedTransactionSCNs.addLast(session.actionSCN);
/* debug 190
            if (committedTransactions.size() > 64) {
                System.out.println("******* excessive transaction queue");
            }
// debug 190 */
        }
    }
    /**
     * expire all committed transactions that are no longer in scope
     */
    void mergeExpiredTransactions(Session session) {
        long timestamp = getFirstLiveTransactionTimestamp();
        while (true) {
            long        commitTimestamp;
            RowAction[] actions;
            synchronized (committedTransactionSCNs) {
                if (committedTransactionSCNs.isEmpty()) {
                    break;
                }
                commitTimestamp = committedTransactionSCNs.getFirst();
                if (commitTimestamp < timestamp) {
                    committedTransactionSCNs.removeFirst();
                    actions = committedTransactions.removeFirst();
                } else {
                    break;
                }
            }
            mergeTransaction(actions, 0, actions.length, commitTimestamp);
            finaliseRows(session, actions, 0, actions.length);
        }
    }
    public void beginTransaction(Session session) {
        writeLock.lock();
        try {
            if (!session.isTransaction) {
                beginTransactionCommon(session);
                liveTransactionSCNs.addLast(session.transactionSCN);
            }
        } finally {
            writeLock.unlock();
        }
    }
    /**
     * Update statement if out-of-date
     */
    public void beginAction(Session session, Statement cs) {
        if (session.isTransaction) {
            return;
        }
        if (cs == null) {
            return;
        }
        writeLock.lock();
        try {
            if (hasExpired) {
                session.redoAction = true;
                return;
            }
            if (session.abortTransaction) {
                return;
            }
            session.isPreTransaction = true;
            if (!isLockedMode && !cs.isCatalogLock(txModel)) {
                return;
            }
            beginActionTPL(session, cs);
        } finally {
            writeLock.unlock();
        }
    }
    /**
     * add session to the end of queue when a transaction starts
     */
    public void beginActionResume(Session session) {
        writeLock.lock();
        try {
            Statement cs = session.sessionContext.currentStatement;
            cs = updateCurrentStatement(session, cs);
            if (session.sessionContext.invalidStatement) {
                return;
            }
            if (session.isTransaction) {
                session.actionSCN      = getNextSystemChangeNumber();
                session.actionStartSCN = session.actionSCN;
            } else {
                beginTransactionCommon(session);
                liveTransactionSCNs.addLast(session.transactionSCN);
            }
        } finally {
            writeLock.unlock();
        }
    }
    /**
     * remove session from queue when a transaction ends
     * and expire any committed transactions
     * that are no longer required. remove transactions ended before the first
     * timestamp in liveTransactionsSession queue
     */
    private void endTransaction(Session session) {
        long timestamp = session.transactionSCN;
        int  index     = liveTransactionSCNs.indexOf(timestamp);
        if (index >= 0) {
            transactionCount.decrementAndGet();
            liveTransactionSCNs.remove(index);
            mergeExpiredTransactions(session);
        }
    }
    private void countDownLatches(Session session) {
        for (int i = 0; i < session.waitingSessions.size(); i++) {
            Session current = session.waitingSessions.get(i);
            current.waitedSessions.remove(session);
            current.latch.setCount(current.waitedSessions.size());
        }
        // waitedSessions is not empty if the latch is zeroed by a
        // different administrative session
        session.waitedSessions.clear();
        session.waitingSessions.clear();
    }
    void endTransactionTPL(Session session) {
        if (catalogWriteSession != session) {
            return;
        }
        Session nextSession = null;
        for (int i = 0; i < session.waitingSessions.size(); i++) {
            Session   current = session.waitingSessions.get(i);
            Statement st      = current.sessionContext.currentStatement;
            if (st != null && st.isCatalogLock(txModel)) {
                nextSession = current;
                break;
            }
        }
        if (nextSession == null) {
            catalogWriteSession = null;
            isLockedMode        = false;
        } else {
            for (int i = 0; i < session.waitingSessions.size(); i++) {
                Session current = session.waitingSessions.get(i);
                if (current != nextSession) {
                    current.waitedSessions.add(nextSession);
                    nextSession.waitingSessions.add(current);
                    current.latch.setCount(current.waitedSessions.size());
                }
            }
            catalogWriteSession = nextSession;
        }
        unlockTxTs      = session.actionSCN;
        unlockSessionId = session.getId();
    }
    void beginActionTPL(Session session, Statement cs) {
        if (session == catalogWriteSession) {
            return;
        }
        session.tempSet.clear();
        if (cs.isCatalogLock(txModel)) {
            if (!isLockedMode) {
                catalogWriteSession = session;
                isLockedMode        = true;
                lockTxTs            = session.actionSCN;
                lockSessionId       = session.getId();
                getTransactionAndPreSessions(session);
                if (!session.tempSet.isEmpty()) {
                    session.waitedSessions.addAll(session.tempSet);
                    setWaitingSessionTPL(session);
                }
                return;
            }
        }
        if (!isLockedMode) {
            return;
        }
        if (cs.getTableNamesForWrite().length > 0) {
            if (cs.getTableNamesForWrite()[0].schema
                    == SqlInvariants.LOBS_SCHEMA_HSQLNAME) {
                return;
            }
        } else if (cs.getTableNamesForRead().length > 0) {
            if (cs.getTableNamesForRead()[0].schema
                    == SqlInvariants.LOBS_SCHEMA_HSQLNAME) {
                return;
            }
        }
        if (session.waitingSessions.contains(catalogWriteSession)) {
            return;
        }
        if (catalogWriteSession.waitingSessions.add(session)) {
            session.waitedSessions.add(catalogWriteSession);
            session.latch.setCount(session.waitedSessions.size());
        }
    }
    public void resetSession(
            Session session,
            Session targetSession,
            long statementTimestamp,
            int mode) {
        super.resetSession(session, targetSession, statementTimestamp, mode);
    }
}