123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- #region Apache License
- //
- // 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.
- //
- #endregion
- using System;
- using System.Globalization;
- using System.Text;
- using System.IO;
- using log4net.Core;
- using log4net.Util;
- namespace log4net.Layout.Pattern
- {
- /// <summary>
- /// Converter to output and truncate <c>'.'</c> separated strings
- /// </summary>
- /// <remarks>
- /// <para>
- /// This abstract class supports truncating a <c>'.'</c> separated string
- /// to show a specified number of elements from the right hand side.
- /// This is used to truncate class names that are fully qualified.
- /// </para>
- /// <para>
- /// Subclasses should override the <see cref="GetFullyQualifiedName"/> method to
- /// return the fully qualified string.
- /// </para>
- /// </remarks>
- /// <author>Nicko Cadell</author>
- public abstract class NamedPatternConverter : PatternLayoutConverter, IOptionHandler
- {
- private int m_precision = 0;
- #region Implementation of IOptionHandler
- /// <summary>
- /// Initialize the converter
- /// </summary>
- /// <remarks>
- /// <para>
- /// This is part of the <see cref="IOptionHandler"/> delayed object
- /// activation scheme. The <see cref="ActivateOptions"/> method must
- /// be called on this object after the configuration properties have
- /// been set. Until <see cref="ActivateOptions"/> is called this
- /// object is in an undefined state and must not be used.
- /// </para>
- /// <para>
- /// If any of the configuration properties are modified then
- /// <see cref="ActivateOptions"/> must be called again.
- /// </para>
- /// </remarks>
- public void ActivateOptions()
- {
- m_precision = 0;
- if (Option != null)
- {
- string optStr = Option.Trim();
- if (optStr.Length > 0)
- {
- int precisionVal;
- if (SystemInfo.TryParse(optStr, out precisionVal))
- {
- if (precisionVal <= 0)
- {
- LogLog.Error(declaringType, "NamedPatternConverter: Precision option (" + optStr + ") isn't a positive integer.");
- }
- else
- {
- m_precision = precisionVal;
- }
- }
- else
- {
- LogLog.Error(declaringType, "NamedPatternConverter: Precision option \"" + optStr + "\" not a decimal integer.");
- }
- }
- }
- }
- #endregion
- /// <summary>
- /// Get the fully qualified string data
- /// </summary>
- /// <param name="loggingEvent">the event being logged</param>
- /// <returns>the fully qualified name</returns>
- /// <remarks>
- /// <para>
- /// Overridden by subclasses to get the fully qualified name before the
- /// precision is applied to it.
- /// </para>
- /// <para>
- /// Return the fully qualified <c>'.'</c> (dot/period) separated string.
- /// </para>
- /// </remarks>
- abstract protected string GetFullyQualifiedName(LoggingEvent loggingEvent);
-
- /// <summary>
- /// Convert the pattern to the rendered message
- /// </summary>
- /// <param name="writer"><see cref="TextWriter" /> that will receive the formatted result.</param>
- /// <param name="loggingEvent">the event being logged</param>
- /// <remarks>
- /// Render the <see cref="GetFullyQualifiedName"/> to the precision
- /// specified by the <see cref="PatternConverter.Option"/> property.
- /// </remarks>
- sealed override protected void Convert(TextWriter writer, LoggingEvent loggingEvent)
- {
- string name = GetFullyQualifiedName(loggingEvent);
- if (m_precision <= 0 || name == null || name.Length < 2)
- {
- writer.Write(name);
- }
- else
- {
- int len = name.Length;
- string trailingDot = string.Empty;
- if (name.EndsWith(DOT))
- {
- trailingDot = DOT;
- name = name.Substring(0, len - 1);
- len--;
- }
- int end = name.LastIndexOf(DOT);
- for(int i = 1; end > 0 && i < m_precision; i++)
- {
- end = name.LastIndexOf('.', end - 1);
- }
- if (end == -1)
- {
- writer.Write(name + trailingDot);
- }
- else
- {
- writer.Write(name.Substring(end + 1, len - end - 1) + trailingDot);
- }
- }
- }
- #region Private Static Fields
- /// <summary>
- /// The fully qualified type of the NamedPatternConverter class.
- /// </summary>
- /// <remarks>
- /// Used by the internal logger to record the Type of the
- /// log message.
- /// </remarks>
- private readonly static Type declaringType = typeof(NamedPatternConverter);
- private const string DOT = ".";
- #endregion Private Static Fields
- }
- }
|