blob: e119ecc6d5771caebf229a81b9f9b0450b1bbc08 [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.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import java.util.concurrent.ConcurrentHashMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A class used for reclaiming the copied pages.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class SpaceReclaimer
{
/** the record manager */
private RecordManager rm;
private static String COPIED_PAGE_MAP_DATA_FILE = "cpm.db";
/** The LoggerFactory used by this class */
protected static final Logger LOG = LoggerFactory.getLogger( SpaceReclaimer.class );
/**
* Creates a new instance of SpaceReclaimer.
*
* @param rm the record manager
*/
public SpaceReclaimer( RecordManager rm )
{
this.rm = rm;
}
/**
* relcaims the copied pages
*/
/* no qualifier */ void reclaim()
{
//System.out.println( "reclaiming pages" );
try
{
Set<String> managed = rm.getManagedTrees();
for ( String name : managed )
{
PersistedBTree tree = ( PersistedBTree ) rm.getManagedTree( name );
Set<Long> inUseRevisions = new TreeSet<Long>();
// the tree might have been removed
if ( tree != null )
{
Iterator<ReadTransaction> txnItr = tree.getReadTransactions().iterator();
while ( txnItr.hasNext() )
{
inUseRevisions.add( txnItr.next().getRevision() );
}
}
List<RevisionOffset> copiedRevisions = getRevisions( name );
for ( RevisionOffset ro : copiedRevisions )
{
long rv = ro.getRevision();
if ( inUseRevisions.contains( rv ) )
{
//System.out.println( "Revision " + rv + " of BTree " + name + " is in use, not reclaiming pages" );
break;
}
long[] offsets = ro.getOffsets();
//System.out.println( "Reclaiming " + Arrays.toString( offsets ) + "( " + offsets.length + " ) pages of the revision " + rv + " of BTree " + name );
rm.free( offsets );
RevisionName key = new RevisionName( rv, name );
rm.copiedPageBtree.delete( key );
}
}
}
catch ( Exception e )
{
LOG.warn( "Errors while reclaiming", e );
throw new RuntimeException( e );
}
}
/**
* gets a list of all the copied pages of a given B-Tree.
*
* @param name the name of the B-Tree
* @return list of RevisionOffset
* @throws Exception
*/
private List<RevisionOffset> getRevisions( String name ) throws Exception
{
TupleCursor<RevisionName, long[]> cursor = rm.copiedPageBtree.browse();
List<RevisionOffset> lst = new ArrayList<RevisionOffset>();
while ( cursor.hasNext() )
{
Tuple<RevisionName, long[]> t = cursor.next();
RevisionName rn = t.getKey();
if ( name.equals( rn.getName() ) )
{
//System.out.println( t.getValue() );
lst.add( new RevisionOffset( rn.getRevision(), t.getValue() ) );
}
}
return lst;
}
}