blob: 8255e0bfc07fec4aa42d5f6bfcb09fd60d35b0c9 [file] [log] [blame]
using Lucene.Net.Util;
namespace Lucene.Net.Codecs.Lucene40
{
/*
* 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>
/// Read-write version of <see cref="Lucene40Codec"/> for testing. </summary>
#pragma warning disable 612, 618
public sealed class Lucene40RWCodec : Lucene40Codec
{
private readonly FieldInfosFormat fieldInfos = new Lucene40FieldInfosFormatAnonymousClass();
private class Lucene40FieldInfosFormatAnonymousClass : Lucene40FieldInfosFormat
{
public override FieldInfosWriter FieldInfosWriter
{
get
{
if (!LuceneTestCase.OldFormatImpersonationIsActive)
return base.FieldInfosWriter;
else
return new Lucene40FieldInfosWriter();
}
}
}
private readonly DocValuesFormat docValues = new Lucene40RWDocValuesFormat();
private readonly NormsFormat norms = new Lucene40RWNormsFormat();
public override FieldInfosFormat FieldInfosFormat => fieldInfos;
public override DocValuesFormat DocValuesFormat => docValues;
public override NormsFormat NormsFormat => norms;
}
#pragma warning restore 612, 618
}