#region Copyright & License
//
// Copyright 2001-2005 The Apache Software Foundation
//
// Licensed 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.Text;
using System.IO;
using log4net.Util;
using log4net.DateFormatter;
using log4net.Core;
namespace log4net.Util.PatternStringConverters
{
///
/// Write the current date to the output
///
///
///
/// Date pattern converter, uses a to format
/// the current date and time to the writer as a string.
///
///
/// The value of the determines
/// the formatting of the date. The following values are allowed:
///
///
/// Option value
/// Output
///
/// -
/// ISO8601
///
/// Uses the formatter.
/// Formats using the "yyyy-MM-dd HH:mm:ss,fff" pattern.
///
///
/// -
/// DATE
///
/// Uses the formatter.
/// Formats using the "dd MMM yyyy HH:mm:ss,fff" for example, "06 Nov 1994 15:49:37,459".
///
///
/// -
/// ABSOLUTE
///
/// Uses the formatter.
/// Formats using the "HH:mm:ss,fff" for example, "15:49:37,459".
///
///
/// -
/// other
///
/// Any other pattern string uses the formatter.
/// This formatter passes the pattern string to the
/// method.
/// For details on valid patterns see
/// DateTimeFormatInfo Class.
///
///
///
///
///
/// The date and time is in the local time zone and is rendered in that zone.
/// To output the time in Universal time see .
///
///
/// Nicko Cadell
internal class DatePatternConverter : PatternConverter, IOptionHandler
{
///
/// The used to render the date to a string
///
///
///
/// The used to render the date to a string
///
///
protected IDateFormatter m_dateFormatter;
#region Implementation of IOptionHandler
///
/// Initialize the converter options
///
///
///
/// This is part of the delayed object
/// activation scheme. The method must
/// be called on this object after the configuration properties have
/// been set. Until is called this
/// object is in an undefined state and must not be used.
///
///
/// If any of the configuration properties are modified then
/// must be called again.
///
///
public void ActivateOptions()
{
string dateFormatStr = Option;
if (dateFormatStr == null)
{
dateFormatStr = AbsoluteTimeDateFormatter.Iso8601TimeDateFormat;
}
if (string.Compare(dateFormatStr, AbsoluteTimeDateFormatter.Iso8601TimeDateFormat, true, System.Globalization.CultureInfo.InvariantCulture) == 0)
{
m_dateFormatter = new Iso8601DateFormatter();
}
else if (string.Compare(dateFormatStr, AbsoluteTimeDateFormatter.AbsoluteTimeDateFormat, true, System.Globalization.CultureInfo.InvariantCulture) == 0)
{
m_dateFormatter = new AbsoluteTimeDateFormatter();
}
else if (string.Compare(dateFormatStr, AbsoluteTimeDateFormatter.DateAndTimeDateFormat, true, System.Globalization.CultureInfo.InvariantCulture) == 0)
{
m_dateFormatter = new DateTimeDateFormatter();
}
else
{
try
{
m_dateFormatter = new SimpleDateFormatter(dateFormatStr);
}
catch (Exception e)
{
LogLog.Error("DatePatternConverter: Could not instantiate SimpleDateFormatter with ["+dateFormatStr+"]", e);
m_dateFormatter = new Iso8601DateFormatter();
}
}
}
#endregion
///
/// Write the current date to the output
///
/// that will receive the formatted result.
/// null, state is not set
///
///
/// Pass the current date and time to the
/// for it to render it to the writer.
///
///
/// The date and time passed is in the local time zone.
///
///
override protected void Convert(TextWriter writer, object state)
{
try
{
m_dateFormatter.FormatDate(DateTime.Now, writer);
}
catch (Exception ex)
{
LogLog.Error("DatePatternConverter: Error occurred while converting date.", ex);
}
}
}
}