/* * 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. */ using System; using BufferedIndexInput = Lucene.Net.Store.BufferedIndexInput; using Directory = Lucene.Net.Store.Directory; using IndexInput = Lucene.Net.Store.IndexInput; namespace Lucene.Net.Index { /// $Id: TermVectorsReader.java 601337 2007-12-05 13:59:37Z mikemccand $ /// public class TermVectorsReader : System.ICloneable { internal const int FORMAT_VERSION = 2; //The size in bytes that the FORMAT_VERSION will take up at the beginning of each file internal const int FORMAT_SIZE = 4; internal const byte STORE_POSITIONS_WITH_TERMVECTOR = (byte) (0x1); internal const byte STORE_OFFSET_WITH_TERMVECTOR = (byte) (0x2); private FieldInfos fieldInfos; private IndexInput tvx; private IndexInput tvd; private IndexInput tvf; private int size; // The docID offset where our docs begin in the index // file. This will be 0 if we have our own private file. private int docStoreOffset; private int tvdFormat; private int tvfFormat; public /*internal*/ TermVectorsReader(Directory d, System.String segment, FieldInfos fieldInfos) : this(d, segment, fieldInfos, BufferedIndexInput.BUFFER_SIZE) { } internal TermVectorsReader(Directory d, System.String segment, FieldInfos fieldInfos, int readBufferSize) : this(d, segment, fieldInfos, BufferedIndexInput.BUFFER_SIZE, - 1, 0) { } internal TermVectorsReader(Directory d, System.String segment, FieldInfos fieldInfos, int readBufferSize, int docStoreOffset, int size) { bool success = false; try { if (d.FileExists(segment + "." + IndexFileNames.VECTORS_INDEX_EXTENSION)) { tvx = d.OpenInput(segment + "." + IndexFileNames.VECTORS_INDEX_EXTENSION, readBufferSize); CheckValidFormat(tvx); tvd = d.OpenInput(segment + "." + IndexFileNames.VECTORS_DOCUMENTS_EXTENSION, readBufferSize); tvdFormat = CheckValidFormat(tvd); tvf = d.OpenInput(segment + "." + IndexFileNames.VECTORS_FIELDS_EXTENSION, readBufferSize); tvfFormat = CheckValidFormat(tvf); if (- 1 == docStoreOffset) { this.docStoreOffset = 0; this.size = (int) (tvx.Length() >> 3); } else { this.docStoreOffset = docStoreOffset; this.size = size; // Verify the file is long enough to hold all of our // docs System.Diagnostics.Debug.Assert(((int) (tvx.Length() / 8)) >= size + docStoreOffset); } } this.fieldInfos = fieldInfos; success = true; } finally { // With lock-less commits, it's entirely possible (and // fine) to hit a FileNotFound exception above. In // this case, we want to explicitly close any subset // of things that were opened so that we don't have to // wait for a GC to do so. if (!success) { Close(); } } } private int CheckValidFormat(IndexInput in_Renamed) { int format = in_Renamed.ReadInt(); if (format > FORMAT_VERSION) { throw new CorruptIndexException("Incompatible format version: " + format + " expected " + FORMAT_VERSION + " or less"); } return format; } internal virtual void Close() { // make all effort to close up. Keep the first exception // and throw it as a new one. System.IO.IOException keep = null; if (tvx != null) try { tvx.Close(); } catch (System.IO.IOException e) { if (keep == null) keep = e; } if (tvd != null) try { tvd.Close(); } catch (System.IO.IOException e) { if (keep == null) keep = e; } if (tvf != null) try { tvf.Close(); } catch (System.IO.IOException e) { if (keep == null) keep = e; } if (keep != null) { throw new System.IO.IOException(keep.StackTrace); } } /// /// The number of documents in the reader /// internal virtual int Size() { return size; } public virtual void Get(int docNum, System.String field, TermVectorMapper mapper) { if (tvx != null) { int fieldNumber = fieldInfos.FieldNumber(field); //We need to account for the FORMAT_SIZE at when seeking in the tvx //We don't need to do this in other seeks because we already have the // file pointer //that was written in another file tvx.Seek(((docNum + docStoreOffset) * 8L) + FORMAT_SIZE); //System.out.println("TVX Pointer: " + tvx.getFilePointer()); long position = tvx.ReadLong(); tvd.Seek(position); int fieldCount = tvd.ReadVInt(); //System.out.println("Num Fields: " + fieldCount); // There are only a few fields per document. We opt for a full scan // rather then requiring that they be ordered. We need to read through // all of the fields anyway to get to the tvf pointers. int number = 0; int found = - 1; for (int i = 0; i < fieldCount; i++) { if (tvdFormat == FORMAT_VERSION) number = tvd.ReadVInt(); else number += tvd.ReadVInt(); if (number == fieldNumber) found = i; } // This field, although valid in the segment, was not found in this // document if (found != - 1) { // Compute position in the tvf file position = 0; for (int i = 0; i <= found; i++) position += tvd.ReadVLong(); mapper.SetDocumentNumber(docNum); ReadTermVector(field, position, mapper); } else { //System.out.println("Fieldable not found"); } } else { //System.out.println("No tvx file"); } } /// Retrieve the term vector for the given document and field /// The document number to retrieve the vector for /// /// The field within the document to retrieve /// /// The TermFreqVector for the document and field or null if there is no termVector for this field. /// /// IOException if there is an error reading the term vector files public /*internal*/ virtual TermFreqVector Get(int docNum, System.String field) { // Check if no term vectors are available for this segment at all ParallelArrayTermVectorMapper mapper = new ParallelArrayTermVectorMapper(); Get(docNum, field, mapper); return mapper.MaterializeVector(); } /// Return all term vectors stored for this document or null if the could not be read in. /// /// /// The document number to retrieve the vector for /// /// All term frequency vectors /// /// IOException if there is an error reading the term vector files public /*internal*/ virtual TermFreqVector[] Get(int docNum) { TermFreqVector[] result = null; if (tvx != null) { //We need to offset by tvx.Seek(((docNum + docStoreOffset) * 8L) + FORMAT_SIZE); long position = tvx.ReadLong(); tvd.Seek(position); int fieldCount = tvd.ReadVInt(); // No fields are vectorized for this document if (fieldCount != 0) { int number = 0; System.String[] fields = new System.String[fieldCount]; for (int i = 0; i < fieldCount; i++) { if (tvdFormat == FORMAT_VERSION) number = tvd.ReadVInt(); else number += tvd.ReadVInt(); fields[i] = fieldInfos.FieldName(number); } // Compute position in the tvf file position = 0; long[] tvfPointers = new long[fieldCount]; for (int i = 0; i < fieldCount; i++) { position += tvd.ReadVLong(); tvfPointers[i] = position; } result = ReadTermVectors(docNum, fields, tvfPointers); } } else { //System.out.println("No tvx file"); } return result; } public virtual void Get(int docNumber, TermVectorMapper mapper) { // Check if no term vectors are available for this segment at all if (tvx != null) { //We need to offset by tvx.Seek((docNumber * 8L) + FORMAT_SIZE); long position = tvx.ReadLong(); tvd.Seek(position); int fieldCount = tvd.ReadVInt(); // No fields are vectorized for this document if (fieldCount != 0) { int number = 0; System.String[] fields = new System.String[fieldCount]; for (int i = 0; i < fieldCount; i++) { if (tvdFormat == FORMAT_VERSION) number = tvd.ReadVInt(); else number += tvd.ReadVInt(); fields[i] = fieldInfos.FieldName(number); } // Compute position in the tvf file position = 0; long[] tvfPointers = new long[fieldCount]; for (int i = 0; i < fieldCount; i++) { position += tvd.ReadVLong(); tvfPointers[i] = position; } mapper.SetDocumentNumber(docNumber); ReadTermVectors(fields, tvfPointers, mapper); } } else { //System.out.println("No tvx file"); } } private SegmentTermVector[] ReadTermVectors(int docNum, System.String[] fields, long[] tvfPointers) { SegmentTermVector[] res = new SegmentTermVector[fields.Length]; for (int i = 0; i < fields.Length; i++) { ParallelArrayTermVectorMapper mapper = new ParallelArrayTermVectorMapper(); mapper.SetDocumentNumber(docNum); ReadTermVector(fields[i], tvfPointers[i], mapper); res[i] = (SegmentTermVector) mapper.MaterializeVector(); } return res; } private void ReadTermVectors(System.String[] fields, long[] tvfPointers, TermVectorMapper mapper) { for (int i = 0; i < fields.Length; i++) { ReadTermVector(fields[i], tvfPointers[i], mapper); } } /// /// The field to read in /// /// The pointer within the tvf file where we should start reading /// /// The mapper used to map the TermVector /// /// The TermVector located at that position /// /// IOException private void ReadTermVector(System.String field, long tvfPointer, TermVectorMapper mapper) { // Now read the data from specified position //We don't need to offset by the FORMAT here since the pointer already includes the offset tvf.Seek(tvfPointer); int numTerms = tvf.ReadVInt(); //System.out.println("Num Terms: " + numTerms); // If no terms - return a constant empty termvector. However, this should never occur! if (numTerms == 0) return ; bool storePositions; bool storeOffsets; if (tvfFormat == FORMAT_VERSION) { byte bits = tvf.ReadByte(); storePositions = (bits & STORE_POSITIONS_WITH_TERMVECTOR) != 0; storeOffsets = (bits & STORE_OFFSET_WITH_TERMVECTOR) != 0; } else { tvf.ReadVInt(); storePositions = false; storeOffsets = false; } mapper.SetExpectations(field, numTerms, storeOffsets, storePositions); int start = 0; int deltaLength = 0; int totalLength = 0; char[] buffer = new char[10]; // init the buffer with a length of 10 character char[] previousBuffer = new char[]{}; for (int i = 0; i < numTerms; i++) { start = tvf.ReadVInt(); deltaLength = tvf.ReadVInt(); totalLength = start + deltaLength; if (buffer.Length < totalLength) { // increase buffer buffer = null; // give a hint to garbage collector buffer = new char[totalLength]; if (start > 0) // just copy if necessary Array.Copy(previousBuffer, 0, buffer, 0, start); } tvf.ReadChars(buffer, start, deltaLength); System.String term = new System.String(buffer, 0, totalLength); previousBuffer = buffer; int freq = tvf.ReadVInt(); int[] positions = null; if (storePositions) { //read in the positions //does the mapper even care about positions? if (mapper.IsIgnoringPositions() == false) { positions = new int[freq]; int prevPosition = 0; for (int j = 0; j < freq; j++) { positions[j] = prevPosition + tvf.ReadVInt(); prevPosition = positions[j]; } } else { //we need to skip over the positions. Since these are VInts, I don't believe there is anyway to know for sure how far to skip // for (int j = 0; j < freq; j++) { tvf.ReadVInt(); } } } TermVectorOffsetInfo[] offsets = null; if (storeOffsets) { //does the mapper even care about offsets? if (mapper.IsIgnoringOffsets() == false) { offsets = new TermVectorOffsetInfo[freq]; int prevOffset = 0; for (int j = 0; j < freq; j++) { int startOffset = prevOffset + tvf.ReadVInt(); int endOffset = startOffset + tvf.ReadVInt(); offsets[j] = new TermVectorOffsetInfo(startOffset, endOffset); prevOffset = endOffset; } } else { for (int j = 0; j < freq; j++) { tvf.ReadVInt(); tvf.ReadVInt(); } } } mapper.Map(term, freq, offsets, positions); } } public virtual System.Object Clone() { if (tvx == null || tvd == null || tvf == null) return null; TermVectorsReader clone = null; try { clone = (TermVectorsReader) base.MemberwiseClone(); } catch (System.Exception e) { } clone.tvx = (IndexInput) tvx.Clone(); clone.tvd = (IndexInput) tvd.Clone(); clone.tvf = (IndexInput) tvf.Clone(); return clone; } } /// Models the existing parallel array structure class ParallelArrayTermVectorMapper:TermVectorMapper { private System.String[] terms; private int[] termFreqs; private int[][] positions; private TermVectorOffsetInfo[][] offsets; private int currentPosition; private bool storingOffsets; private bool storingPositions; private System.String field; public override void SetExpectations(System.String field, int numTerms, bool storeOffsets, bool storePositions) { this.field = field; terms = new System.String[numTerms]; termFreqs = new int[numTerms]; this.storingOffsets = storeOffsets; this.storingPositions = storePositions; if (storePositions) this.positions = new int[numTerms][]; if (storeOffsets) this.offsets = new TermVectorOffsetInfo[numTerms][]; } public override void Map(System.String term, int frequency, TermVectorOffsetInfo[] offsets, int[] positions) { terms[currentPosition] = term; termFreqs[currentPosition] = frequency; if (storingOffsets) { this.offsets[currentPosition] = offsets; } if (storingPositions) { this.positions[currentPosition] = positions; } currentPosition++; } /// Construct the vector /// The {@link TermFreqVector} based on the mappings. /// public virtual TermFreqVector MaterializeVector() { SegmentTermVector tv = null; if (field != null && terms != null) { if (storingPositions || storingOffsets) { tv = new SegmentTermPositionVector(field, terms, termFreqs, positions, offsets); } else { tv = new SegmentTermVector(field, terms, termFreqs); } } return tv; } } }