LogHelper.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Threading;
  6. using Library;
  7. using LitJson;
  8. using MySystem;
  9. public class LogHelper
  10. {
  11. public readonly static LogHelper Instance = new LogHelper();
  12. private LogHelper()
  13. { }
  14. string[] BlackList = { "好哒查询商户审核状态", "好哒查询实名认证状态", "好哒分账交易详情查询", "间连商户开户意愿确认(提交申请单)查询申请单状态-请求参数", "查询支付宝商家认证申请单状态", "查询支付宝商户意愿申请状态", "获取微信商户开户意愿确认状态", "获取支付宝商家认证状态" };
  15. public void WriteLog(string Content, string FileName)
  16. {
  17. if(BlackList.Contains(FileName) && Library.ConfigurationManager.EnvironmentFlag == 2)
  18. {
  19. string key = function.MD532(Content + FileName);
  20. if(!string.IsNullOrEmpty(RedisDbconn.Instance.Get<string>(key)))
  21. {
  22. return;
  23. }
  24. RedisDbconn.Instance.Set(key, "1");
  25. RedisDbconn.Instance.SetExpire(key, 600);
  26. }
  27. function.WriteLog(Content, FileName);
  28. Dictionary<string, string> dic = new Dictionary<string, string>();
  29. dic.Add("Topic", FileName);
  30. dic.Add("Content", Content);
  31. KxsRedisDbconn.Instance.AddList("SlsLogQueue", Newtonsoft.Json.JsonConvert.SerializeObject(dic));
  32. }
  33. public void Start()
  34. {
  35. Thread th = new Thread(DoWorks);
  36. th.IsBackground = true;
  37. th.Start();
  38. }
  39. public void DoWorks()
  40. {
  41. while (true)
  42. {
  43. string content = RedisDbconn.Instance.RPop<string>("LogQueue");
  44. if (!string.IsNullOrEmpty(content))
  45. {
  46. try
  47. {
  48. DoQueue(content);
  49. }
  50. catch (Exception ex)
  51. {
  52. LogHelper.Instance.WriteLog(DateTime.Now.ToString() + "\n" + content + "\n" + ex, "SLS日志异常");
  53. }
  54. }
  55. else
  56. {
  57. Thread.Sleep(5000);
  58. }
  59. }
  60. }
  61. public void DoQueue(string content)
  62. {
  63. // JsonData JsonObj = JsonMapper.ToObject(content);
  64. // string Topic = JsonObj["Topic"].ToString();
  65. // string Cont = JsonObj["Content"].ToString();
  66. // string BrandId = JsonObj["BrandId"].ToString();
  67. // SLS.WriteLog(DateTime.Now, Topic, Cont, new Dictionary<string, string>()
  68. // {
  69. // {"BrandId", BrandId}
  70. // });
  71. }
  72. }