package org.apache.lucene.index.codecs; /** * 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. */ import org.apache.lucene.index.FieldInfo; import org.apache.lucene.util.BytesRef; import java.io.IOException; import java.io.Closeable; import java.util.Collection; // TODO // - allow for non-regular index intervals? eg with a // long string of rare terms, you don't need such // frequent indexing /** * TermsDictReader interacts with an instance of this class * to manage its terms index. The writer must accept * indexed terms (many pairs of CharSequence text + long * fileOffset), and then this reader must be able to * retrieve the nearest index term to a provided term * text. * @lucene.experimental */ public abstract class TermsIndexReaderBase implements Closeable { public abstract FieldIndexEnum getFieldEnum(FieldInfo fieldInfo); public abstract void loadTermsIndex(int indexDivisor) throws IOException; public abstract void close() throws IOException; public abstract void getExtensions(Collection<String> extensions); public abstract boolean supportsOrd(); public abstract int getDivisor(); // Similar to TermsEnum, except, the only "metadata" it // reports for a given indexed term is the long fileOffset // into the main terms dict (_X.tis) file: public static abstract class FieldIndexEnum { /** Seeks to "largest" indexed term that's <= * term; retruns file pointer index (into the main * terms index file) for that term */ public abstract long seek(BytesRef term) throws IOException; /** Returns -1 at end */ public abstract long next() throws IOException; public abstract BytesRef term(); // Only impl'd if supportsOrd() returns true! public abstract long seek(long ord) throws IOException; public abstract long ord(); } }