123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading;
- using Library;
- using LitJson;
- using MySystem;
- public class LogHelper
- {
- public readonly static LogHelper Instance = new LogHelper();
- private LogHelper()
- { }
- string[] BlackList = { "服务商平台查询申请单状态API", "服务商平台查询分账结果API", "查询签约申请的结果", "支付宝查询分账结果" };
- public void WriteLog(string Content, string FileName)
- {
- if(BlackList.Contains(FileName))
- {
- string key = function.MD532(Content + FileName);
- if(!string.IsNullOrEmpty(RedisDbconn.Instance.Get<string>(key)))
- {
- return;
- }
- RedisDbconn.Instance.Set(key, "1");
- RedisDbconn.Instance.SetExpire(key, 3600);
- }
- function.WriteLog(Content, FileName);
- Dictionary<string, string> dic = new Dictionary<string, string>();
- dic.Add("Topic", FileName);
- dic.Add("Content", Content);
- RedisDbconn.Instance.AddList("SlsLogQueue", Newtonsoft.Json.JsonConvert.SerializeObject(dic));
- }
- public void Start()
- {
- Thread th = new Thread(DoWorks);
- th.IsBackground = true;
- th.Start();
- }
- public void DoWorks()
- {
- while (true)
- {
- string content = RedisDbconn.Instance.RPop<string>("LogQueue");
- if (!string.IsNullOrEmpty(content))
- {
- try
- {
- DoQueue(content);
- }
- catch (Exception ex)
- {
- LogHelper.Instance.WriteLog(DateTime.Now.ToString() + "\n" + content + "\n" + ex, "SLS日志异常");
- }
- }
- else
- {
- Thread.Sleep(5000);
- }
- }
- }
- public void DoQueue(string content)
- {
- // JsonData JsonObj = JsonMapper.ToObject(content);
- // string Topic = JsonObj["Topic"].ToString();
- // string Cont = JsonObj["Content"].ToString();
- // string BrandId = JsonObj["BrandId"].ToString();
- // SLS.WriteLog(DateTime.Now, Topic, Cont, new Dictionary<string, string>()
- // {
- // {"BrandId", BrandId}
- // });
- }
- }
|