FirmwareCheckVersionProcedure.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. 
  2. using AwInitilizer.Assist;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Collections.Specialized;
  7. using System.IO;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace AwInitilizer.Procedure
  12. {
  13. public class FirmwareCheckVersionProcedure : ProcedureBase
  14. {
  15. public FirmwareCheckVersionProcedure() : base()
  16. {
  17. Name = "Firmware Version Check";
  18. Content = "Wait restart and check firmware versions";
  19. }
  20. internal override async Task<bool> Run()
  21. {
  22. //wait restart
  23. Logger.Print("Waiting restart..");
  24. bool response = false;
  25. int pollingCnt = 0;
  26. await Task.Delay(TimeSpan.FromMinutes(2));
  27. for (pollingCnt = 0; pollingCnt < 56; pollingCnt++)
  28. {
  29. await Task.Delay(TimeSpan.FromSeconds(15));
  30. response = await ChekCsuBootCompelete();
  31. if (response)
  32. break;
  33. }
  34. ReportLog.Add(string.Format("EVSE connet elapsed minute(s) : {0}, Expect:<16", (pollingCnt * 0.25) + 2));
  35. //timeout
  36. if (pollingCnt >= 56)
  37. {
  38. Logger.Print("Wait restart timeout", isError: true);
  39. InfoLog += "Wait restart timeout\n";
  40. return false;
  41. }
  42. //get version
  43. var versionPair = await GetVersion();
  44. var updatedList = UpdateData.FirmwareUpdateModels;
  45. //check all version
  46. foreach (var model in updatedList)
  47. {
  48. if (string.IsNullOrEmpty(model.Module) ||
  49. string.IsNullOrEmpty(model.Version))
  50. {
  51. continue;
  52. }
  53. if(versionPair.Keys.Contains(model.Module))
  54. {
  55. ReportLog.Add(string.Format("Read {0} version : {1} , Expect:{2}", model.Module, versionPair[model.Module], model.Version));
  56. bool isVersionMatched = false;
  57. if (model.Module == "CsuRootFsFwRev")
  58. {
  59. isVersionMatched = versionPair[model.Module].StartsWith(model.Version);
  60. }
  61. else
  62. {
  63. isVersionMatched = versionPair[model.Module] == model.Version;
  64. }
  65. if (isVersionMatched)
  66. {
  67. Logger.Print($"Model {model.Module} updated", isError: false);
  68. InfoLog += $"{Name}:updated success\n";
  69. LogPair.Add($"{model.Module}VersionCheck", "1");
  70. }
  71. else
  72. {
  73. Logger.Print($"Model {model.Module} version mismatch", isError: true);
  74. InfoLog += $"{model.Module}:Updated Version mismatched\n";
  75. LogPair.Add($"{model.Module}VersionCheck", "0");
  76. return false;
  77. }
  78. }
  79. else
  80. {
  81. //model name not found
  82. Logger.Print($"Model {model.Module} version not found", isError: true);
  83. InfoLog += $"Model {model.Module} version not found\n";
  84. LogPair.Add($"{model.Module}VersionCheck", "0");
  85. return false;
  86. }
  87. }
  88. return true;
  89. }
  90. internal async Task<Dictionary<string, string>> GetVersion(bool isConnectTest = false)
  91. {
  92. try
  93. {
  94. using (WebClientTimeout webClient = new WebClientTimeout())
  95. {
  96. NameValueCollection parameters = new NameValueCollection();
  97. parameters.Add("opt", "1");
  98. webClient.QueryString = parameters;
  99. using (Stream stream = await webClient.OpenReadTaskAsync($"https://{ServerIpAddress}/get_query_action.php"))
  100. // 使用 StreamReader 讀取 stream 內的字元
  101. using (StreamReader reader = new StreamReader(stream))
  102. {
  103. // 將 StreamReader 所讀到的字元轉為 string
  104. string request = reader.ReadToEnd();
  105. InfoLog += $"get version response:{request}\n";
  106. var values = JsonConvert.DeserializeObject<Dictionary<string, object>>(request);
  107. var toReturn = new Dictionary<string, string>();
  108. foreach (var pair in values)
  109. {
  110. if (pair.Value is string v)
  111. {
  112. toReturn.Add(pair.Key, v);
  113. }
  114. else if (pair.Value is Newtonsoft.Json.Linq.JArray a)
  115. {
  116. try
  117. {
  118. var versionList = JsonConvert.DeserializeObject<List<string>>(a.ToString());
  119. for (int index = 0; index < versionList.Count; index++)
  120. {
  121. toReturn.Add(string.Format("{0}{1}", pair.Key, index), versionList[index]);
  122. }
  123. }
  124. catch
  125. {
  126. }
  127. }
  128. }
  129. return toReturn;
  130. }
  131. }
  132. }
  133. catch (Exception e)
  134. {
  135. if (!isConnectTest)
  136. {
  137. Logger.Print("Get Version Failed", isError: true);
  138. Logger.Print(e.Message + "", isError: true);
  139. InfoLog += "Get Version Failed\n";
  140. InfoLog += e.Message;
  141. InfoLog += "\n";
  142. }
  143. return null;
  144. }
  145. }
  146. }
  147. }