/** * 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.blur.lucene.codec; import org.apache.lucene.codecs.SegmentInfoFormat; import org.apache.lucene.codecs.SegmentInfoReader; import org.apache.lucene.codecs.SegmentInfoWriter; import org.apache.lucene.codecs.compressing.CompressionMode; import org.apache.lucene.index.SegmentInfo; public class Blur022SegmentInfoFormat extends SegmentInfoFormat { /** File extension used to store {@link SegmentInfo}. */ public final static String SI_EXTENSION = "si"; static final String CODEC_NAME = "Blur022SegmentInfo"; static final int VERSION_START = 0; static final int VERSION_CURRENT = VERSION_START; private final SegmentInfoReader reader = new Blur022SegmentInfoReader(); private final SegmentInfoWriter writer; public Blur022SegmentInfoFormat(int chunkSize, CompressionMode compressionMode) { writer = new Blur022SegmentInfoWriter(chunkSize, compressionMode); } @Override public SegmentInfoReader getSegmentInfoReader() { return reader; } @Override public SegmentInfoWriter getSegmentInfoWriter() { return writer; } }