using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Primitives; using System; using System.Collections.Generic; using System.Text; namespace CZFW.Logger { public class FileLoggerSettings { IConfiguration _configuration; public IChangeToken ChangeToken { get; private set; } public FileLoggerSettings(IConfiguration configuration) { _configuration = configuration; this.ChangeToken = _configuration.GetReloadToken(); } public string DefaultPath { get { return this._configuration["DefaultPath"]; } } public int DefaultMaxMB { get { return int.Parse(this._configuration["DefaultMaxMB"]); } } public string DefaultFileName { get { return this._configuration["DefaultFileName"]; } } public void Reload() { //update cache settings } public Tuple GetSwitch(string name) { var section = this._configuration.GetSection("LogLevel"); if (section != null) { LogLevel level; if (Enum.TryParse(section[name], true, out level)) return new Tuple(true, level); } return new Tuple(false, LogLevel.None); } public Tuple GetDiretoryPath(string name) { var section = this._configuration.GetSection("Path"); if (section != null) { var path = section[name]; if (!String.IsNullOrEmpty(path)) { return new Tuple(true, path); } } return new Tuple(false, this.DefaultPath); } public Tuple GetFileName(string name) { var section = this._configuration.GetSection("FileName"); if (section != null) { var path = section[name]; if (!String.IsNullOrEmpty(path)) { return new Tuple(true, path); } } return new Tuple(false, this.DefaultFileName); } } }