FileLoggerSettings.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. using Microsoft.Extensions.Configuration;
  2. using Microsoft.Extensions.Logging;
  3. using Microsoft.Extensions.Primitives;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace CZFW.Logger
  8. {
  9. public class FileLoggerSettings
  10. {
  11. IConfiguration _configuration;
  12. public IChangeToken ChangeToken { get; private set; }
  13. public FileLoggerSettings(IConfiguration configuration)
  14. {
  15. _configuration = configuration;
  16. this.ChangeToken = _configuration.GetReloadToken();
  17. }
  18. public string DefaultPath
  19. {
  20. get
  21. {
  22. return this._configuration["DefaultPath"];
  23. }
  24. }
  25. public int DefaultMaxMB
  26. {
  27. get
  28. {
  29. return int.Parse(this._configuration["DefaultMaxMB"]);
  30. }
  31. }
  32. public string DefaultFileName
  33. {
  34. get { return this._configuration["DefaultFileName"]; }
  35. }
  36. public void Reload()
  37. {
  38. //update cache settings
  39. }
  40. public Tuple<bool, LogLevel> GetSwitch(string name)
  41. {
  42. var section = this._configuration.GetSection("LogLevel");
  43. if (section != null)
  44. {
  45. LogLevel level;
  46. if (Enum.TryParse(section[name], true, out level))
  47. return new Tuple<bool, LogLevel>(true, level);
  48. }
  49. return new Tuple<bool, LogLevel>(false, LogLevel.None);
  50. }
  51. public Tuple<bool, string> GetDiretoryPath(string name)
  52. {
  53. var section = this._configuration.GetSection("Path");
  54. if (section != null)
  55. {
  56. var path = section[name];
  57. if (!String.IsNullOrEmpty(path))
  58. {
  59. return new Tuple<bool, string>(true, path);
  60. }
  61. }
  62. return new Tuple<bool, string>(false, this.DefaultPath);
  63. }
  64. public Tuple<bool, string> GetFileName(string name)
  65. {
  66. var section = this._configuration.GetSection("FileName");
  67. if (section != null)
  68. {
  69. var path = section[name];
  70. if (!String.IsNullOrEmpty(path))
  71. {
  72. return new Tuple<bool, string>(true, path);
  73. }
  74. }
  75. return new Tuple<bool, string>(false, this.DefaultFileName);
  76. }
  77. }
  78. }