blob: 561ab91a462d594b93f23a85e01dd8ea14c588c1 [file] [log] [blame]
using Lucene.Net.Util;
namespace Lucene.Net.Codecs.Lucene3x
{
/*
* 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.
*/
/// <summary>
/// Writes 3.x-like indexes (not perfect emulation yet) for testing only!
/// <para/>
/// @lucene.experimental
/// </summary>
#pragma warning disable 612, 618
public class PreFlexRWCodec : Lucene3xCodec
{
private readonly PostingsFormat postings = new PreFlexRWPostingsFormat();
private readonly Lucene3xNormsFormat norms = new PreFlexRWNormsFormat();
private readonly FieldInfosFormat fieldInfos = new PreFlexRWFieldInfosFormat();
private readonly TermVectorsFormat termVectors = new PreFlexRWTermVectorsFormat();
private readonly SegmentInfoFormat segmentInfos = new PreFlexRWSegmentInfoFormat();
private readonly StoredFieldsFormat storedFields = new PreFlexRWStoredFieldsFormat();
public override PostingsFormat PostingsFormat
{
get
{
if (LuceneTestCase.OldFormatImpersonationIsActive)
return postings;
else
return base.PostingsFormat;
}
}
public override NormsFormat NormsFormat
{
get
{
if (LuceneTestCase.OldFormatImpersonationIsActive)
return norms;
else
return base.NormsFormat;
}
}
public override SegmentInfoFormat SegmentInfoFormat
{
get
{
if (LuceneTestCase.OldFormatImpersonationIsActive)
return segmentInfos;
else
return base.SegmentInfoFormat;
}
}
public override FieldInfosFormat FieldInfosFormat
{
get
{
if (LuceneTestCase.OldFormatImpersonationIsActive)
return fieldInfos;
else
return base.FieldInfosFormat;
}
}
public override TermVectorsFormat TermVectorsFormat
{
get
{
if (LuceneTestCase.OldFormatImpersonationIsActive)
return termVectors;
else
return base.TermVectorsFormat;
}
}
public override StoredFieldsFormat StoredFieldsFormat
{
get
{
if (LuceneTestCase.OldFormatImpersonationIsActive)
return storedFields;
else
return base.StoredFieldsFormat;
}
}
}
#pragma warning restore 612, 618
}