ExceptionMsgManager.cs
2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using OnlineStore.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OnlineStore.DeviceLibrary
{
/// <summary>
/// 异常信息管理
/// </summary>
public class ExceptionMsgManager
{
public static Dictionary<string, ExceptionMsg> msgMap = new Dictionary<string, ExceptionMsg>();
public static void updateMsg(string module, string name, string msg = "")
{
try
{
string key = module + "-" + name;
if (msgMap.ContainsKey(key))
{
if (!string.IsNullOrEmpty(msg))
{
ExceptionMsg obj = new ExceptionMsg(module, name, msg);
msgMap[key] = obj;
}
else
{
msgMap.Remove(key);
}
}
else
{
if (!string.IsNullOrEmpty(msg))
{
ExceptionMsg obj = new ExceptionMsg(module, name, msg);
msgMap.Add(key, obj);
}
}
}
catch (Exception ex)
{
LogUtil.error($"updateMsg[{module}][{name}][{msg}] error :" + ex.ToString());
}
}
public static List<ExceptionMsg> getList()
{
return new List<ExceptionMsg>(msgMap.Values);
}
}
public class ExceptionMsg
{
public ExceptionMsg()
{
updateTime = DateTime.Now;
}
public ExceptionMsg(string module,string name,string msg)
{
this.module = module;
this.name = name;
this.message = msg;
updateTime = DateTime.Now;
}
public string module { get; set; }
public string name { get; set; }
public DateTime updateTime { get; set; }
public string message { get; set; }
}
}