| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- using System.Globalization;
- using Abp.Configuration;
- using Abp.Domain.Uow;
- using Abp.Localization;
- using Abp.Localization.Sources;
- using Castle.Core.Logging;
- namespace Abp.BackgroundJobs
- {
- /// <summary>
- /// Base class that can be used to implement <see cref="IBackgroundJob{TArgs}"/>.
- /// </summary>
- public abstract class BackgroundJob<TArgs> : IBackgroundJob<TArgs>
- {
- /// <summary>
- /// Reference to the setting manager.
- /// </summary>
- public ISettingManager SettingManager { protected get; set; }
- /// <summary>
- /// Reference to <see cref="IUnitOfWorkManager"/>.
- /// </summary>
- public IUnitOfWorkManager UnitOfWorkManager
- {
- get
- {
- if (_unitOfWorkManager == null)
- {
- throw new AbpException("Must set UnitOfWorkManager before use it.");
- }
- return _unitOfWorkManager;
- }
- set { _unitOfWorkManager = value; }
- }
- private IUnitOfWorkManager _unitOfWorkManager;
- /// <summary>
- /// Gets current unit of work.
- /// </summary>
- protected IActiveUnitOfWork CurrentUnitOfWork { get { return UnitOfWorkManager.Current; } }
- /// <summary>
- /// Reference to the localization manager.
- /// </summary>
- public ILocalizationManager LocalizationManager { protected get; set; }
- /// <summary>
- /// Gets/sets name of the localization source that is used in this application service.
- /// It must be set in order to use <see cref="L(string)"/> and <see cref="L(string,CultureInfo)"/> methods.
- /// </summary>
- protected string LocalizationSourceName { get; set; }
- /// <summary>
- /// Gets localization source.
- /// It's valid if <see cref="LocalizationSourceName"/> is set.
- /// </summary>
- protected ILocalizationSource LocalizationSource
- {
- get
- {
- if (LocalizationSourceName == null)
- {
- throw new AbpException("Must set LocalizationSourceName before, in order to get LocalizationSource");
- }
- if (_localizationSource == null || _localizationSource.Name != LocalizationSourceName)
- {
- _localizationSource = LocalizationManager.GetSource(LocalizationSourceName);
- }
- return _localizationSource;
- }
- }
- private ILocalizationSource _localizationSource;
- /// <summary>
- /// Reference to the logger to write logs.
- /// </summary>
- public ILogger Logger { protected get; set; }
- /// <summary>
- /// Constructor.
- /// </summary>
- protected BackgroundJob()
- {
- Logger = NullLogger.Instance;
- LocalizationManager = NullLocalizationManager.Instance;
- }
- public abstract void Execute(TArgs args);
- /// <summary>
- /// Gets localized string for given key name and current language.
- /// </summary>
- /// <param name="name">Key name</param>
- /// <returns>Localized string</returns>
- protected virtual string L(string name)
- {
- return LocalizationSource.GetString(name);
- }
- /// <summary>
- /// Gets localized string for given key name and current language with formatting strings.
- /// </summary>
- /// <param name="name">Key name</param>
- /// <param name="args">Format arguments</param>
- /// <returns>Localized string</returns>
- protected string L(string name, params object[] args)
- {
- return LocalizationSource.GetString(name, args);
- }
- /// <summary>
- /// Gets localized string for given key name and specified culture information.
- /// </summary>
- /// <param name="name">Key name</param>
- /// <param name="culture">culture information</param>
- /// <returns>Localized string</returns>
- protected virtual string L(string name, CultureInfo culture)
- {
- return LocalizationSource.GetString(name, culture);
- }
- /// <summary>
- /// Gets localized string for given key name and current language with formatting strings.
- /// </summary>
- /// <param name="name">Key name</param>
- /// <param name="culture">culture information</param>
- /// <param name="args">Format arguments</param>
- /// <returns>Localized string</returns>
- protected string L(string name, CultureInfo culture, params object[] args)
- {
- return LocalizationSource.GetString(name, culture, args);
- }
- }
- }
|