ConfigHelper.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. 
  2. using S7.Net;
  3. using System.Xml.Linq;
  4. namespace xicheji
  5. {
  6. public class ConfigHelper
  7. {
  8. private const string configFileName = "config.xml";
  9. private static Config? _config;
  10. public static Config GetConfig()
  11. {
  12. _config ??= LoadConfig();
  13. return _config;
  14. }
  15. private static Config LoadConfig()
  16. {
  17. if (!File.Exists(configFileName))
  18. {
  19. return new Config();
  20. }
  21. var xdoc = XDocument.Load(configFileName);
  22. if (xdoc.Root == null)
  23. {
  24. return new Config();
  25. }
  26. var config = new Config
  27. {
  28. ServicePort = xdoc.Root!.Element("Service")?.Attribute("Port")?.Value ?? "9999",
  29. Server = xdoc.Root!.Element("Platform")?.Attribute("Server")?.Value ?? "",
  30. UploadInterval = int.Parse(xdoc.Root!.Element("Platform")?.Attribute("ReceiveInterval")?.Value ?? "2"),
  31. };
  32. var device = xdoc.Root!.Element("Device");
  33. config.PLCIP = device?.Attribute("IP")?.Value ?? "";
  34. config.PLCPort = device?.Attribute("Port")?.Value ?? "";
  35. config.PLCType = Enum.Parse<CpuType>(device?.Attribute("Type")?.Value ?? "S7200");
  36. config.PLCReceiveInterval = int.Parse(device?.Attribute("ReceiveInterval")?.Value ?? "2");
  37. config.PLCMacAddress = device?.Attribute("MacAddress")?.Value ?? "";
  38. var camera = xdoc.Root!.Element("Camera");
  39. config.CameraIP = camera?.Attribute("IP")?.Value ?? "";
  40. config.CameraPort = camera?.Attribute("Port")?.Value ?? "";
  41. config.CameraUserName = camera?.Attribute("UserName")?.Value ?? "";
  42. config.CameraPassword = camera?.Attribute("Password")?.Value ?? "";
  43. var variablesRoot = xdoc.Root!.Element("Variables");
  44. if (variablesRoot != null)
  45. {
  46. config.DBName = variablesRoot.Attribute("DBName")?.Value ?? "DB1";
  47. var variables = variablesRoot.Elements("Variable");
  48. foreach (XElement item in variables)
  49. {
  50. var variable = new Variable
  51. {
  52. Name = item.Attribute("Name")?.Value ?? "",
  53. Key = config.DBName + "." + item.Attribute("Key")?.Value ?? "",
  54. Desc = item.Attribute("Desc")?.Value ?? ""
  55. };
  56. if (string.IsNullOrEmpty(variable.Name) || string.IsNullOrEmpty(variable.Key))
  57. {
  58. continue;
  59. }
  60. config.Variables.Add(variable);
  61. }
  62. }
  63. return config;
  64. }
  65. public static void SaveConfig(Config config)
  66. {
  67. var xdoc = XDocument.Load(configFileName);
  68. var xService = xdoc.Root!.Element("Service");
  69. xService?.SetAttributeValue("Port", config.ServicePort);
  70. var xPlatform = xdoc.Root!.Element("Platform");
  71. xPlatform?.SetAttributeValue("Server", config.Server);
  72. xPlatform?.SetAttributeValue("UploadInterval", config.UploadInterval);
  73. var xDevice = xdoc.Root!.Element("Device");
  74. xDevice?.SetAttributeValue("IP", config.PLCIP);
  75. xDevice?.SetAttributeValue("Port", config.PLCPort);
  76. xDevice?.SetAttributeValue("Type", config.PLCType.ToString());
  77. xDevice?.SetAttributeValue("ReceiveInterval", config.PLCReceiveInterval);
  78. xDevice?.SetAttributeValue("MacAddress", config.PLCMacAddress);
  79. var xCamera = xdoc.Root!.Element("Camera");
  80. xCamera?.SetAttributeValue("IP", config.CameraIP);
  81. xCamera?.SetAttributeValue("Port", config.CameraPort);
  82. xCamera?.SetAttributeValue("UserName", config.CameraUserName);
  83. xCamera?.SetAttributeValue("Password", config.CameraPassword);
  84. xdoc.Save("config2.xml");
  85. }
  86. public static Variable? FindVariable(string variableName)
  87. {
  88. var config = GetConfig();
  89. var variable = config.Variables.Find(x => x.Name == variableName);
  90. return variable;
  91. }
  92. }
  93. public class Config
  94. {
  95. public string ServicePort { get; set; } = string.Empty;
  96. public string Server { get; set; } = string.Empty;
  97. public int UploadInterval { get; internal set; }
  98. public string PLCIP { get; set; } = string.Empty;
  99. public string PLCPort { get; set; } = string.Empty;
  100. public CpuType PLCType { get; set; } = CpuType.S7200;
  101. public string PLCMacAddress { get; set; } = string.Empty;
  102. public int PLCReceiveInterval { get; set; } = 2;
  103. public string CameraIP { get; set; } = string.Empty;
  104. public string CameraPort { get; set; } = string.Empty;
  105. public string CameraUserName { get; set; } = string.Empty;
  106. public string CameraPassword { get; set; } = string.Empty;
  107. public string DBName { get; set; } = string.Empty;
  108. public List<Variable> Variables { get; set; } = new();
  109. }
  110. public class Variable
  111. {
  112. public string Name { get; set; } = string.Empty;
  113. public string Key { get; set; } = string.Empty;
  114. public string Desc { get; set; } = string.Empty;
  115. }
  116. }