blob: 5128e2884542c0b1b1abe1fd0853f9c78422a117 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.directory.mavibot.btree;
import java.util.Date;
import java.util.concurrent.ConcurrentLinkedQueue;
/**
* The Transaction is used to protect the BTree against concurrent modification,
* and insure that a read is always done against one single revision. It's also
* used to gather many modifications under one single revision, if needed.
* <p/>
* A Transaction should be closed when the user is done with it, otherwise the
* pages associated with the given revision, and all the referenced pages, will
* remain on the storage.
* <p/>
* A Transaction can be hold for quite a long time, for instance while doing
* a browse against a big BTree. At some point, transactions which are pending
* for too long will be closed by the transaction manager.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*
* @param <K> The type for the Key
* @param <V> The type for the stored value
*/
public class ReadTransaction<K, V>
{
/** The associated revision */
private long revision;
/** The date of creation */
private long creationDate;
/** The associated B-tree header */
private BTreeHeader<K, V> btreeHeader;
/** A flag used to tell if a transaction is closed or not */
private volatile boolean closed;
/** The list of read transactions being executed */
private ConcurrentLinkedQueue<ReadTransaction<K, V>> readTransactions;
/** The reference to the recordManager, if any */
private RecordManager recordManager;
/**
* Creates a new transaction instance
*
* @param btreeHeader The BtreeHeader we will use for this read transaction
*/
public ReadTransaction( RecordManager recordManager, BTreeHeader<K, V> btreeHeader, ConcurrentLinkedQueue<ReadTransaction<K, V>> readTransactions )
{
if ( btreeHeader != null )
{
this.revision = btreeHeader.getRevision();
this.creationDate = System.currentTimeMillis();
this.btreeHeader = btreeHeader;
this.recordManager = recordManager;
closed = false;
}
this.readTransactions = readTransactions;
}
/**
* Creates a new transaction instance
*
* @param btreeHeader The BtreeHeader we will use for this read transaction
*/
public ReadTransaction( BTreeHeader<K, V> btreeHeader, ConcurrentLinkedQueue<ReadTransaction<K, V>> readTransactions )
{
if ( btreeHeader != null )
{
this.revision = btreeHeader.getRevision();
this.creationDate = System.currentTimeMillis();
this.btreeHeader = btreeHeader;
closed = false;
}
this.readTransactions = readTransactions;
}
/**
* @return the associated revision
*/
public long getRevision()
{
return revision;
}
/**
* @return the creationDate
*/
public long getCreationDate()
{
return creationDate;
}
/**
* @return the btreeHeader
*/
public BTreeHeader<K, V> getBtreeHeader()
{
return btreeHeader;
}
/**
* Close the transaction, releasing the revision it was using.
*/
public void close()
{
closed = true;
// Remove the transaction from the list of opened transactions
readTransactions.remove( this );
// and push the
if ( recordManager != null )
{
recordManager.releaseTransaction( this );
}
// Now, get back the copied pages
}
/**
* @return true if this transaction has been closed
*/
public boolean isClosed()
{
return closed;
}
/**
* @see Object#toString()
*/
public String toString()
{
return "Transaction[" + revision + ":" + new Date( creationDate ) + ", closed :" + closed + "]";
}
}