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

org.h2.pagestore.SessionState Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta2
Show newest version
/*
 * Copyright 2004-2019 H2 Group. Multiple-Licensed under the MPL 2.0,
 * and the EPL 1.0 (https://h2database.com/html/license.html).
 * Initial Developer: H2 Group
 */
package org.h2.pagestore;

/**
 * The session state contains information about when was the last commit of a
 * session. It is only used during recovery.
 */
class SessionState {

    /**
     * The session id
     */
    public int sessionId;

    /**
     * The last log id where a commit for this session is found.
     */
    public int lastCommitLog;

    /**
     * The position where a commit for this session is found.
     */
    public int lastCommitPos;

    /**
     * The in-doubt transaction if there is one.
     */
    public PageStoreInDoubtTransaction inDoubtTransaction;

    /**
     * Check if this session state is already committed at this point.
     *
     * @param logId the log id
     * @param pos the position in the log
     * @return true if it is committed
     */
    public boolean isCommitted(int logId, int pos) {
        if (logId != lastCommitLog) {
            return lastCommitLog > logId;
        }
        return lastCommitPos >= pos;
    }

    @Override
    public String toString() {
        return "sessionId:" + sessionId + " log:" + lastCommitLog +
                " pos:" + lastCommitPos + " inDoubt:" + inDoubtTransaction;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy