blob: 8f26e484d7c7c1eabb5ec03079f046024d131ff8 [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.uima.cas.impl;
import java.util.NoSuchElementException;
import org.apache.uima.cas.FSIterator;
import org.apache.uima.cas.FSMatchConstraint;
import org.apache.uima.cas.FeatureStructure;
/**
* Implements a filtered iterator.
*/
class FilteredIterator extends FSIteratorImplBase {
// The base iterator.
private FSIterator it;
// The filter constraint.
private FSMatchConstraint cons;
// Private...
private FilteredIterator() {
super();
}
/**
* Create a filtered iterator from a base iterator and a constraint.
*/
FilteredIterator(FSIterator it, FSMatchConstraint cons) {
this();
this.it = it;
this.cons = cons;
moveToFirst();
}
public boolean isValid() {
// We always make sure that the underlying iterator is either pointing
// at an FS
// that matches the constraint, or is not valid. Thus, for isValid(), we
// can simply refer to the underlying iterator.
return this.it.isValid();
}
public void moveToFirst() {
this.it.moveToFirst();
// If the iterator is valid, but doesn't match the constraint, advance.
while (this.it.isValid() && !this.cons.match(this.it.get())) {
this.it.moveToNext();
}
}
public void moveToLast() {
this.it.moveToLast();
while (this.it.isValid() && !this.cons.match(this.it.get())) {
this.it.moveToPrevious();
}
}
public void moveToNext() {
this.it.moveToNext();
while (this.it.isValid() && !this.cons.match(this.it.get())) {
this.it.moveToNext();
}
}
public void moveToPrevious() {
this.it.moveToPrevious();
while (this.it.isValid() && !this.cons.match(this.it.get())) {
this.it.moveToPrevious();
}
}
public FeatureStructure get() throws NoSuchElementException {
// This may throw an exception.
return this.it.get();
}
/**
* @see org.apache.uima.cas.FSIterator#copy()
*/
public FSIterator copy() {
return new FilteredIterator(this.it.copy(), this.cons);
}
/**
* @see org.apache.uima.cas.FSIterator#moveTo(FeatureStructure)
*/
public void moveTo(FeatureStructure fs) {
this.it.moveTo(fs);
if (!this.cons.match(this.it.get())) {
moveToNext();
}
}
}