All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.codecs.simpletext.SimpleTextStoredFieldsWriter Maven / Gradle / Ivy

The newest version!
/*
 * 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.lucene.codecs.simpletext;

import java.io.IOException;
import org.apache.lucene.codecs.StoredFieldsWriter;
import org.apache.lucene.index.FieldInfo;
import org.apache.lucene.index.IndexFileNames;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.IOContext;
import org.apache.lucene.store.IndexOutput;
import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.BytesRefBuilder;
import org.apache.lucene.util.IOUtils;

/**
 * Writes plain-text stored fields.
 *
 * 

FOR RECREATIONAL USE ONLY * * @lucene.experimental */ public class SimpleTextStoredFieldsWriter extends StoredFieldsWriter { private int numDocsWritten = 0; private IndexOutput out; static final String FIELDS_EXTENSION = "fld"; static final BytesRef TYPE_STRING = new BytesRef("string"); static final BytesRef TYPE_BINARY = new BytesRef("binary"); static final BytesRef TYPE_INT = new BytesRef("int"); static final BytesRef TYPE_LONG = new BytesRef("long"); static final BytesRef TYPE_FLOAT = new BytesRef("float"); static final BytesRef TYPE_DOUBLE = new BytesRef("double"); static final BytesRef END = new BytesRef("END"); static final BytesRef DOC = new BytesRef("doc "); static final BytesRef FIELD = new BytesRef(" field "); static final BytesRef NAME = new BytesRef(" name "); static final BytesRef TYPE = new BytesRef(" type "); static final BytesRef VALUE = new BytesRef(" value "); private final BytesRefBuilder scratch = new BytesRefBuilder(); public SimpleTextStoredFieldsWriter(Directory directory, String segment, IOContext context) throws IOException { boolean success = false; try { out = directory.createOutput( IndexFileNames.segmentFileName(segment, "", FIELDS_EXTENSION), context); success = true; } finally { if (!success) { IOUtils.closeWhileHandlingException(this); } } } @Override public void startDocument() throws IOException { write(DOC); write(Integer.toString(numDocsWritten)); newLine(); numDocsWritten++; } @Override public void writeField(FieldInfo info, int value) throws IOException { writeField(info); write(TYPE); write(TYPE_INT); newLine(); write(VALUE); write(Integer.toString(value)); newLine(); } @Override public void writeField(FieldInfo info, long value) throws IOException { writeField(info); write(TYPE); write(TYPE_LONG); newLine(); write(VALUE); write(Long.toString(value)); newLine(); } @Override public void writeField(FieldInfo info, float value) throws IOException { writeField(info); write(TYPE); write(TYPE_FLOAT); newLine(); write(VALUE); write(Float.toString(value)); newLine(); } @Override public void writeField(FieldInfo info, double value) throws IOException { writeField(info); write(TYPE); write(TYPE_DOUBLE); newLine(); write(VALUE); write(Double.toString(value)); newLine(); } @Override public void writeField(FieldInfo info, BytesRef value) throws IOException { writeField(info); write(TYPE); write(TYPE_BINARY); newLine(); write(VALUE); write(value); newLine(); } @Override public void writeField(FieldInfo info, String value) throws IOException { writeField(info); write(TYPE); write(TYPE_STRING); newLine(); write(VALUE); write(value); newLine(); } private void writeField(FieldInfo info) throws IOException { write(FIELD); write(Integer.toString(info.number)); newLine(); write(NAME); write(info.name); newLine(); } @Override public void finish(int numDocs) throws IOException { if (numDocsWritten != numDocs) { throw new RuntimeException( "mergeFields produced an invalid result: docCount is " + numDocs + " but only saw " + numDocsWritten + " file=" + out.toString() + "; now aborting this merge to prevent index corruption"); } write(END); newLine(); SimpleTextUtil.writeChecksum(out, scratch); } @Override public void close() throws IOException { try { IOUtils.close(out); } finally { out = null; } } private void write(String s) throws IOException { SimpleTextUtil.write(out, s, scratch); } private void write(BytesRef bytes) throws IOException { SimpleTextUtil.write(out, bytes); } private void newLine() throws IOException { SimpleTextUtil.writeNewline(out); } @Override public long ramBytesUsed() { return Integer.BYTES; // something > 0 } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy