MainWindow.xaml.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. using EVCB_OCPP.Domain;
  2. using EVCB_OCPP.Domain.Models.Database;
  3. using EVCB_OCPP.Packet.Features;
  4. using EVCB_OCPP.Packet.Messages;
  5. using EVCB_OCPP.Packet.Messages.Core;
  6. using Newtonsoft.Json;
  7. using OCPPPackage.Profiles;
  8. using System;
  9. using System.Collections.Generic;
  10. using System.Linq;
  11. using System.Text;
  12. using System.Threading.Tasks;
  13. using System.Windows;
  14. using System.Windows.Controls;
  15. using System.Windows.Data;
  16. using System.Windows.Documents;
  17. using System.Windows.Input;
  18. using System.Windows.Media;
  19. using System.Windows.Media.Imaging;
  20. using System.Windows.Navigation;
  21. using System.Windows.Shapes;
  22. namespace TestTool.RemoteTriggerAPP
  23. {
  24. /// <summary>
  25. /// MainWindow.xaml 的互動邏輯
  26. /// </summary>
  27. public partial class MainWindow : Window
  28. {
  29. string action = "";
  30. public MainWindow()
  31. {
  32. InitializeComponent();
  33. }
  34. private void UxSubmitBtn_Click(object sender, RoutedEventArgs e)
  35. {
  36. switch (action)
  37. {
  38. case "ChangeAvailability_Inoperative":
  39. {
  40. SetChangeAvailability_Inoperative();
  41. }
  42. break;
  43. case "ChangeAvailability_Operative":
  44. {
  45. SetChangeAvailability_Operative();
  46. }
  47. break;
  48. case "ChangeConfiguration_MeterValueSampleInterval":
  49. {
  50. SetChangeConfiguration_MeterValueSampleInterval();
  51. }
  52. break;
  53. case "ClearCache":
  54. {
  55. SetClearCache();
  56. }
  57. break;
  58. case "RemoteStartTransaction":
  59. {
  60. SetRemoteStartTransaction();
  61. }
  62. break;
  63. case "RemoteStopTransaction":
  64. {
  65. SetRemoteStopTransaction();
  66. }
  67. break;
  68. case "HardReset":
  69. {
  70. SetHardReset();
  71. }
  72. break;
  73. case "SoftReset":
  74. {
  75. SetSoftReset();
  76. }
  77. break;
  78. case "UnlockConnector":
  79. {
  80. SetUnlockConnector();
  81. }
  82. break;
  83. case "GetConfiguration_ALL":
  84. {
  85. SetGetConfiguration_ALL();
  86. }
  87. break;
  88. case "GetConfiguration_SupportedFeatureProfiles":
  89. {
  90. SetGetConfiguration_SupportedFeatureProfiles();
  91. }
  92. break;
  93. case "GetConfiguration_GetConfigurationMaxKeys":
  94. {
  95. SetGetConfiguration_GetConfigurationMaxKeys();
  96. }
  97. break;
  98. case "GetConfiguration_MeterValueSampleInterval":
  99. {
  100. SetGetConfiguration_MeterValueSampleInterval();
  101. }
  102. break;
  103. default:
  104. {
  105. }
  106. break;
  107. }
  108. }
  109. private void UxCmdCb_SelectionChanged(object sender, SelectionChangedEventArgs e)
  110. {
  111. var item = uxCmdCb.SelectedValue as ComboBoxItem;
  112. action = item.Content as string;
  113. }
  114. private void SetRemoteStartTransaction()
  115. {
  116. try
  117. {
  118. var uuid = Guid.NewGuid().ToString();
  119. var request = new RemoteStartTransactionRequest()
  120. {
  121. connectorId = byte.Parse(uxConnectorIdTb.Text),
  122. idTag = uxIdTagTb.Text
  123. };
  124. WritetoDB(uuid, request);
  125. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  126. }
  127. catch (Exception ex)
  128. {
  129. MessageBox.Show(ex.ToString());
  130. }
  131. }
  132. private void SetUnlockConnector()
  133. {
  134. try
  135. {
  136. var uuid = Guid.NewGuid().ToString();
  137. var request = new UnlockConnectorRequest()
  138. {
  139. connectorId = byte.Parse(uxConnectorIdTb.Text),
  140. };
  141. WritetoDB(uuid, request);
  142. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  143. }
  144. catch (Exception ex)
  145. {
  146. MessageBox.Show(ex.ToString());
  147. }
  148. }
  149. private void SetChangeAvailability_Inoperative()
  150. {
  151. try
  152. {
  153. var uuid = Guid.NewGuid().ToString();
  154. var request = new ChangeAvailabilityRequest()
  155. {
  156. connectorId = byte.Parse(uxConnectorIdTb.Text),
  157. type = EVCB_OCPP.Packet.Messages.SubTypes.AvailabilityType.Inoperative
  158. };
  159. WritetoDB(uuid, request);
  160. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  161. }
  162. catch (Exception ex)
  163. {
  164. MessageBox.Show(ex.ToString());
  165. }
  166. }
  167. private void SetChangeAvailability_Operative()
  168. {
  169. try
  170. {
  171. var uuid = Guid.NewGuid().ToString();
  172. var request = new ChangeAvailabilityRequest()
  173. {
  174. connectorId = byte.Parse(uxConnectorIdTb.Text),
  175. type = EVCB_OCPP.Packet.Messages.SubTypes.AvailabilityType.Operative
  176. };
  177. WritetoDB(uuid, request);
  178. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  179. }
  180. catch (Exception ex)
  181. {
  182. MessageBox.Show(ex.ToString());
  183. }
  184. }
  185. private void SetChangeConfiguration_UnSupport()
  186. {
  187. try
  188. {
  189. var uuid = Guid.NewGuid().ToString();
  190. var request = new ChangeConfigurationRequest()
  191. {
  192. key = StandardConfiguration.MeterValueSampleInterval,
  193. value = "true",
  194. };
  195. WritetoDB(uuid, request);
  196. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  197. }
  198. catch (Exception ex)
  199. {
  200. MessageBox.Show(ex.ToString());
  201. }
  202. }
  203. private void SetChangeConfiguration_MeterValueSampleInterval()
  204. {
  205. try
  206. {
  207. var uuid = Guid.NewGuid().ToString();
  208. var request = new ChangeConfigurationRequest()
  209. {
  210. key = StandardConfiguration.MeterValueSampleInterval,
  211. value = "true",
  212. };
  213. WritetoDB(uuid, request);
  214. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  215. }
  216. catch (Exception ex)
  217. {
  218. MessageBox.Show(ex.ToString());
  219. }
  220. }
  221. private void SetClearCache()
  222. {
  223. try
  224. {
  225. var uuid = Guid.NewGuid().ToString();
  226. var request = new ClearCacheRequest()
  227. {
  228. };
  229. WritetoDB(uuid, request);
  230. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  231. }
  232. catch (Exception ex)
  233. {
  234. MessageBox.Show(ex.ToString());
  235. }
  236. }
  237. private void SetGetConfiguration_ALL()
  238. {
  239. try
  240. {
  241. var uuid = Guid.NewGuid().ToString();
  242. var request = new GetConfigurationRequest()
  243. {
  244. key = new List<string>() { }
  245. };
  246. WritetoDB(uuid, request);
  247. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  248. }
  249. catch (Exception ex)
  250. {
  251. MessageBox.Show(ex.ToString());
  252. }
  253. }
  254. private void SetGetConfiguration_MeterValueSampleInterval()
  255. {
  256. try
  257. {
  258. var uuid = Guid.NewGuid().ToString();
  259. var request = new GetConfigurationRequest()
  260. {
  261. key = new List<string>() { StandardConfiguration.MeterValueSampleInterval }
  262. };
  263. WritetoDB(uuid, request);
  264. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  265. }
  266. catch (Exception ex)
  267. {
  268. MessageBox.Show(ex.ToString());
  269. }
  270. }
  271. private void SetGetConfiguration_SupportedFeatureProfiles()
  272. {
  273. try
  274. {
  275. var uuid = Guid.NewGuid().ToString();
  276. var request = new GetConfigurationRequest()
  277. {
  278. key = new List<string>() { StandardConfiguration.SupportedFeatureProfiles }
  279. };
  280. WritetoDB(uuid, request);
  281. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  282. }
  283. catch (Exception ex)
  284. {
  285. MessageBox.Show(ex.ToString());
  286. }
  287. }
  288. private void SetGetConfiguration_GetConfigurationMaxKeys()
  289. {
  290. try
  291. {
  292. var uuid = Guid.NewGuid().ToString();
  293. var request = new GetConfigurationRequest()
  294. {
  295. key = new List<string>() { StandardConfiguration.GetConfigurationMaxKeys }
  296. };
  297. WritetoDB(uuid, request);
  298. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  299. }
  300. catch (Exception ex)
  301. {
  302. MessageBox.Show(ex.ToString());
  303. }
  304. }
  305. private void SetHardReset()
  306. {
  307. try
  308. {
  309. var uuid = Guid.NewGuid().ToString();
  310. var request = new ResetRequest()
  311. {
  312. type = EVCB_OCPP.Packet.Messages.SubTypes.ResetType.Hard
  313. };
  314. WritetoDB(uuid, request);
  315. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  316. }
  317. catch (Exception ex)
  318. {
  319. MessageBox.Show(ex.ToString());
  320. }
  321. }
  322. private void SetSoftReset()
  323. {
  324. try
  325. {
  326. var uuid = Guid.NewGuid().ToString();
  327. var request = new ResetRequest()
  328. {
  329. type = EVCB_OCPP.Packet.Messages.SubTypes.ResetType.Soft
  330. };
  331. WritetoDB(uuid, request);
  332. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  333. }
  334. catch (Exception ex)
  335. {
  336. MessageBox.Show(ex.ToString());
  337. }
  338. }
  339. private void SetRemoteStopTransaction()
  340. {
  341. try
  342. {
  343. var uuid = Guid.NewGuid().ToString();
  344. var request = new RemoteStopTransactionRequest()
  345. {
  346. transactionId = int.Parse(uxTransactionIdTb.Text)
  347. };
  348. WritetoDB(uuid, request);
  349. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  350. }
  351. catch (Exception ex)
  352. {
  353. MessageBox.Show(ex.ToString());
  354. }
  355. }
  356. private void WritetoDB(string uuid, IRequest request)
  357. {
  358. using (var db = new MainDBContext())
  359. {
  360. db.MachineOperateRecord.Add(new MachineOperateRecord()
  361. {
  362. CreatedOn = DateTime.Now,
  363. ChargeBoxId = uxChargeBoxIdTb.Text,
  364. SerialNo = uuid,
  365. RequestContent = JsonConvert.SerializeObject(request, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }),
  366. EVSE_Status = 0,
  367. Status = 0,
  368. RequestType = 1,
  369. });
  370. db.ServerMessage.Add(new ServerMessage()
  371. {
  372. ChargeBoxId = uxChargeBoxIdTb.Text,
  373. CreatedBy = "TestTool",
  374. CreatedOn = DateTime.Now,
  375. OutAction = request.Action.ToString(),
  376. OutRequest = JsonConvert.SerializeObject(request, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }),
  377. SerialNo = uuid,
  378. InMessage = string.Empty
  379. });
  380. db.SaveChanges();
  381. }
  382. }
  383. }
  384. }