blob: 9a6950493e7f5fe41a6e8a44753c98d038e9046f [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.shared.ldap.cursor;
import java.util.Iterator;
import org.apache.directory.shared.i18n.I18n;
/**
* An abstract TupleCursor.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public abstract class AbstractTupleCursor<K, V> implements TupleCursor<K, V>
{
private ClosureMonitor monitor = new DefaultClosureMonitor();
public final void setClosureMonitor( ClosureMonitor monitor )
{
if ( monitor == null )
{
throw new IllegalArgumentException( "monitor" );
}
this.monitor = monitor;
}
protected final void checkNotClosed( String operation ) throws Exception
{
monitor.checkNotClosed();
}
public final boolean isClosed()
{
return monitor.isClosed();
}
public void close() throws Exception
{
monitor.close();
}
public void close( Exception cause ) throws Exception
{
monitor.close( cause );
}
public Iterator<Tuple<K, V>> iterator()
{
return new CursorIterator<Tuple<K, V>>( this );
}
/**
* {@inheritDoc}
*/
public boolean isAfterLast() throws Exception
{
throw new UnsupportedOperationException( I18n.err( I18n.ERR_02014_UNSUPPORTED_OPERATION, getClass().getName()
.concat( "." ).concat( "isAfterLast()" ) ) );
}
/**
* {@inheritDoc}
*/
public boolean isBeforeFirst() throws Exception
{
throw new UnsupportedOperationException( I18n.err( I18n.ERR_02014_UNSUPPORTED_OPERATION, getClass().getName()
.concat( "." ).concat( "isBeforeFirst()" ) ) );
}
/**
* {@inheritDoc}
*/
public boolean isFirst() throws Exception
{
throw new UnsupportedOperationException( I18n.err( I18n.ERR_02014_UNSUPPORTED_OPERATION, getClass().getName()
.concat( "." ).concat( "isFirst()" ) ) );
}
/**
* {@inheritDoc}
*/
public boolean isLast() throws Exception
{
throw new UnsupportedOperationException( I18n.err( I18n.ERR_02014_UNSUPPORTED_OPERATION, getClass().getName()
.concat( "." ).concat( "isLast()" ) ) );
}
}