/* * 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.exoplatform.services.jcr.impl.core.query.lucene; import org.apache.lucene.index.FieldInfos; import org.apache.lucene.index.FilterIndexReader; import org.apache.lucene.index.IndexReader; import org.apache.lucene.util.ReaderUtil; import java.io.IOException; /** * <code>JackrabbitIndexReader</code> wraps an index reader and * {@link ReleaseableIndexReader#release() releases} the underlying reader * when a client calls {@link #close()} on this reader. This allows reusing * of the underlying index reader instance. */ public final class JcrIndexReader extends FilterIndexReader implements HierarchyResolver, MultiIndexReader { /** * The hierarchy resolver. */ private final HierarchyResolver resolver; /** * The underlying index reader exposed as a {@link MultiIndexReader}. */ private final MultiIndexReader reader; /** * Creates a new <code>JackrabbitIndexReader</code>. The passed index reader * must also implement the interfaces {@link HierarchyResolver} and * {@link MultiIndexReader}. * * @param in the underlying index reader. * @throws IllegalArgumentException if <code>in</code> does not implement * {@link HierarchyResolver} and * {@link MultiIndexReader}. */ public JcrIndexReader(IndexReader in) { super(in); if (!(in instanceof MultiIndexReader)) { throw new IllegalArgumentException("IndexReader must also implement MultiIndexReader"); } if (!(in instanceof HierarchyResolver)) { throw new IllegalArgumentException("IndexReader must also implement HierarchyResolver"); } this.resolver = (HierarchyResolver) in; this.reader = (MultiIndexReader) in; } //--------------------------< FilterIndexReader >--------------------------- /** * Calls release on the underlying {@link MultiIndexReader} instead of * closing it. * * @throws IOException if an error occurs while releaseing the underlying * index reader. */ protected void doClose() throws IOException { reader.release(); } //------------------------< HierarchyResolver >----------------------------- /** * {@inheritDoc} */ public int[] getParents(int n, int[] docNumbers) throws IOException { return resolver.getParents(n, docNumbers); } //-------------------------< MultiIndexReader >----------------------------- /** * {@inheritDoc} */ public IndexReader[] getIndexReaders() { return reader.getIndexReaders(); } /** * {@inheritDoc} */ public ForeignSegmentDocId createDocId(String uuid) throws IOException { return reader.createDocId(uuid); } /** * {@inheritDoc} */ public int getDocumentNumber(ForeignSegmentDocId docId) throws IOException { return reader.getDocumentNumber(docId); } /** * {@inheritDoc} */ public void release() throws IOException { reader.release(); } @Override public IndexReader[] getSequentialSubReaders() { // This method returns null, so Lucene internals doesn't explode this reader on it's subreaders. // This is used to retrieve this index reader as HierarchyResolver in ChildAxisQuery. If this method // is not overridden with null-returning one, then ClassCast exception is thrown. // This solution confirmed via Lucene mailing-list on May 27 2010. return null; } /** * {@inheritDoc} */ @Override public FieldInfos getFieldInfos() { return ReaderUtil.getMergedFieldInfos(in); } }