blob: 8d970370afdbec5199276a0c1a5a4006309dd5c3 [file]
using System;
using System.Diagnostics;
namespace Lucene.Net.Util
{
/*
* 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>
/// Debugging API for Lucene classes such as <seealso cref="IndexWriter"/>
/// and <seealso cref="SegmentInfos"/>.
/// <p>
/// NOTE: Enabling infostreams may cause performance degradation
/// in some components.
///
/// @lucene.internal
/// </summary>
public abstract class InfoStream : IDisposable
{
/// <summary>
/// Instance of InfoStream that does no logging at all. </summary>
public static readonly InfoStream NO_OUTPUT = new NoOutput();
private sealed class NoOutput : InfoStream
{
public override void Message(string component, string message)
{
Debug.Assert(false, "message() should not be called when isEnabled returns false");
}
public override bool IsEnabled(string component)
{
return false;
}
protected override void Dispose(bool disposing)
{
}
}
/// <summary>
/// prints a message </summary>
public abstract void Message(string component, string message);
/// <summary>
/// returns true if messages are enabled and should be posted to <seealso cref="#message"/>. </summary>
public abstract bool IsEnabled(string component);
private static InfoStream defaultInfoStream = NO_OUTPUT;
/// <summary>
/// The default {@code InfoStream} used by a newly instantiated classes. </summary>
/// <seealso cref= #setDefault </seealso>
public static InfoStream Default
{
get
{
lock (typeof(InfoStream))
{
return defaultInfoStream;
}
}
set
{
lock (typeof(InfoStream))
{
if (value == null)
{
throw new System.ArgumentException("Cannot set InfoStream default implementation to null. " + "To disable logging use InfoStream.NO_OUTPUT");
}
defaultInfoStream = value;
}
}
}
// LUCENENET specific - implementing proper dispose pattern
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
}
public virtual object Clone()
{
try
{
return (InfoStream)base.MemberwiseClone();
}
catch (InvalidOperationException e)
{
throw new Exception(e.ToString(), e);
}
}
}
}