123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469 |
- #region Apache License
- #endregion
- #if !NETCF
- using System;
- using System.Collections;
- using System.Reflection;
- using System.IO;
- using log4net.Util;
- using log4net.Repository;
- using log4net.Repository.Hierarchy;
- namespace log4net.Config
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [AttributeUsage(AttributeTargets.Assembly)]
- [Serializable]
- public class XmlConfiguratorAttribute : ConfiguratorAttribute
- {
-
-
-
-
-
-
-
-
-
-
-
- public XmlConfiguratorAttribute() : base(0)
- {
- }
- #region Public Instance Properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public string ConfigFile
- {
- get { return m_configFile; }
- set { m_configFile = value; }
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public string ConfigFileExtension
- {
- get { return m_configFileExtension; }
- set { m_configFileExtension = value; }
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public bool Watch
- {
- get { return m_configureAndWatch; }
- set { m_configureAndWatch = value; }
- }
- #endregion Public Instance Properties
- #region Override ConfiguratorAttribute
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- override public void Configure(Assembly sourceAssembly, ILoggerRepository targetRepository)
- {
- IList configurationMessages = new ArrayList();
- using (new LogLog.LogReceivedAdapter(configurationMessages))
- {
- string applicationBaseDirectory = null;
- try
- {
- applicationBaseDirectory = SystemInfo.ApplicationBaseDirectory;
- }
- catch
- {
-
-
- }
- if (applicationBaseDirectory == null || (new Uri(applicationBaseDirectory)).IsFile)
- {
- ConfigureFromFile(sourceAssembly, targetRepository);
- }
- else
- {
- ConfigureFromUri(sourceAssembly, targetRepository);
- }
- }
- targetRepository.ConfigurationMessages = configurationMessages;
- }
- #endregion
-
-
-
-
-
- private void ConfigureFromFile(Assembly sourceAssembly, ILoggerRepository targetRepository)
- {
-
- string fullPath2ConfigFile = null;
-
-
- if (m_configFile == null || m_configFile.Length == 0)
- {
- if (m_configFileExtension == null || m_configFileExtension.Length == 0)
- {
-
- try
- {
- fullPath2ConfigFile = SystemInfo.ConfigurationFileLocation;
- }
- catch(Exception ex)
- {
- LogLog.Error(declaringType, "XmlConfiguratorAttribute: Exception getting ConfigurationFileLocation. Must be able to resolve ConfigurationFileLocation when ConfigFile and ConfigFileExtension properties are not set.", ex);
- }
- }
- else
- {
-
- if (m_configFileExtension[0] != '.')
- {
- m_configFileExtension = "." + m_configFileExtension;
- }
- string applicationBaseDirectory = null;
- try
- {
- applicationBaseDirectory = SystemInfo.ApplicationBaseDirectory;
- }
- catch(Exception ex)
- {
- LogLog.Error(declaringType, "Exception getting ApplicationBaseDirectory. Must be able to resolve ApplicationBaseDirectory and AssemblyFileName when ConfigFileExtension property is set.", ex);
- }
- if (applicationBaseDirectory != null)
- {
- fullPath2ConfigFile = Path.Combine(applicationBaseDirectory, SystemInfo.AssemblyFileName(sourceAssembly) + m_configFileExtension);
- }
- }
- }
- else
- {
- string applicationBaseDirectory = null;
- try
- {
- applicationBaseDirectory = SystemInfo.ApplicationBaseDirectory;
- }
- catch(Exception ex)
- {
- LogLog.Warn(declaringType, "Exception getting ApplicationBaseDirectory. ConfigFile property path ["+m_configFile+"] will be treated as an absolute path.", ex);
- }
- if (applicationBaseDirectory != null)
- {
-
- fullPath2ConfigFile = Path.Combine(applicationBaseDirectory, m_configFile);
- }
- else
- {
- fullPath2ConfigFile = m_configFile;
- }
- }
- if (fullPath2ConfigFile != null)
- {
- ConfigureFromFile(targetRepository, new FileInfo(fullPath2ConfigFile));
- }
- }
-
-
-
-
-
- private void ConfigureFromFile(ILoggerRepository targetRepository, FileInfo configFile)
- {
- #if (SSCLI)
- if (m_configureAndWatch)
- {
- LogLog.Warn(declaringType, "XmlConfiguratorAttribute: Unable to watch config file not supported on SSCLI");
- }
- XmlConfigurator.Configure(targetRepository, configFile);
- #else
-
- if (m_configureAndWatch)
- {
- XmlConfigurator.ConfigureAndWatch(targetRepository, configFile);
- }
- else
- {
- XmlConfigurator.Configure(targetRepository, configFile);
- }
- #endif
- }
-
-
-
-
-
- private void ConfigureFromUri(Assembly sourceAssembly, ILoggerRepository targetRepository)
- {
-
- Uri fullPath2ConfigFile = null;
-
-
- if (m_configFile == null || m_configFile.Length == 0)
- {
- if (m_configFileExtension == null || m_configFileExtension.Length == 0)
- {
- string systemConfigFilePath = null;
- try
- {
- systemConfigFilePath = SystemInfo.ConfigurationFileLocation;
- }
- catch(Exception ex)
- {
- LogLog.Error(declaringType, "XmlConfiguratorAttribute: Exception getting ConfigurationFileLocation. Must be able to resolve ConfigurationFileLocation when ConfigFile and ConfigFileExtension properties are not set.", ex);
- }
- if (systemConfigFilePath != null)
- {
- Uri systemConfigFileUri = new Uri(systemConfigFilePath);
-
- fullPath2ConfigFile = systemConfigFileUri;
- }
- }
- else
- {
-
- if (m_configFileExtension[0] != '.')
- {
- m_configFileExtension = "." + m_configFileExtension;
- }
- string systemConfigFilePath = null;
- try
- {
- systemConfigFilePath = SystemInfo.ConfigurationFileLocation;
- }
- catch(Exception ex)
- {
- LogLog.Error(declaringType, "XmlConfiguratorAttribute: Exception getting ConfigurationFileLocation. Must be able to resolve ConfigurationFileLocation when the ConfigFile property are not set.", ex);
- }
- if (systemConfigFilePath != null)
- {
- UriBuilder builder = new UriBuilder(new Uri(systemConfigFilePath));
-
- string path = builder.Path;
- int startOfExtension = path.LastIndexOf(".");
- if (startOfExtension >= 0)
- {
- path = path.Substring(0, startOfExtension);
- }
- path += m_configFileExtension;
- builder.Path = path;
- fullPath2ConfigFile = builder.Uri;
- }
- }
- }
- else
- {
- string applicationBaseDirectory = null;
- try
- {
- applicationBaseDirectory = SystemInfo.ApplicationBaseDirectory;
- }
- catch(Exception ex)
- {
- LogLog.Warn(declaringType, "Exception getting ApplicationBaseDirectory. ConfigFile property path ["+m_configFile+"] will be treated as an absolute URI.", ex);
- }
- if (applicationBaseDirectory != null)
- {
-
- fullPath2ConfigFile = new Uri(new Uri(applicationBaseDirectory), m_configFile);
- }
- else
- {
- fullPath2ConfigFile = new Uri(m_configFile);
- }
- }
- if (fullPath2ConfigFile != null)
- {
- if (fullPath2ConfigFile.IsFile)
- {
-
-
- ConfigureFromFile(targetRepository, new FileInfo(fullPath2ConfigFile.LocalPath));
- }
- else
- {
- if (m_configureAndWatch)
- {
- LogLog.Warn(declaringType, "XmlConfiguratorAttribute: Unable to watch config file loaded from a URI");
- }
- XmlConfigurator.Configure(targetRepository, fullPath2ConfigFile);
- }
- }
- }
- #region Private Instance Fields
- private string m_configFile = null;
- private string m_configFileExtension = null;
- private bool m_configureAndWatch = false;
- #endregion Private Instance Fields
- #region Private Static Fields
-
-
-
-
-
-
-
- private readonly static Type declaringType = typeof(XmlConfiguratorAttribute);
- #endregion Private Static Fields
- }
- }
- #endif // !NETCF
|