TcpClientViewModel.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. using CommonUtils.Log4;
  2. using CommonUtils.Msgbox;
  3. using CommonUtils.Tcp.TcpSocket;
  4. using Prism.Commands;
  5. using Prism.Mvvm;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Collections.ObjectModel;
  9. using System.Linq;
  10. using System.Linq.Expressions;
  11. using System.Net;
  12. using System.Text;
  13. using System.Threading.Tasks;
  14. using System.Windows.Input;
  15. using TcpClientModule.Model;
  16. using WpfControlLibrary.IpAddress;
  17. namespace TcpClientModule.ViewModels
  18. {
  19. public class TcpClientViewModel :CommonUtils.ViewModelBase.BaseViewModel
  20. {
  21. private string _message;
  22. public string Message
  23. {
  24. get { return _message; }
  25. set { SetProperty(ref _message, value); }
  26. }
  27. private IpAddressViewModel _ipAddressView=new IpAddressViewModel();
  28. public IpAddressViewModel IpAddressView
  29. {
  30. get => _ipAddressView;
  31. set
  32. {
  33. Tcp_Clientmodel.Ipstring = value.AddressText;
  34. SetProperty(ref _ipAddressView, value);
  35. }
  36. }
  37. private TcpClientModel _tcpClientModel=null;
  38. public TcpClientModel SelectTcp_Clientmodel
  39. {
  40. get
  41. {
  42. return _tcpClientModel;
  43. }
  44. set
  45. {
  46. SetProperty(ref _tcpClientModel, value);
  47. }
  48. }
  49. private TcpClientModel tcpClientmodel=new TcpClientModel();
  50. public TcpClientModel Tcp_Clientmodel
  51. {
  52. get
  53. {
  54. tcpClientmodel.Ipstring = _ipAddressView.AddressText;
  55. return tcpClientmodel;
  56. }
  57. set {
  58. SetProperty(ref tcpClientmodel, value);
  59. }
  60. }
  61. private ObservableCollection<TcpClientModel> tcpClientModels =new ObservableCollection<TcpClientModel>();
  62. public ObservableCollection<TcpClientModel> TcpClientModels
  63. {
  64. get
  65. {
  66. return tcpClientModels;
  67. }
  68. set
  69. {
  70. SetProperty(ref tcpClientModels, value);
  71. }
  72. }
  73. private string uiOpenText="连接";
  74. public string UiOpenText
  75. {
  76. get => uiOpenText;
  77. set
  78. {
  79. SetProperty(ref uiOpenText, value);
  80. }
  81. }
  82. private DelegateCommand _TcpClientOpencommand;
  83. public DelegateCommand TcpClientOpencommand =>
  84. _TcpClientOpencommand ?? ( _TcpClientOpencommand = new DelegateCommand(OpenTcpClientCommand) );
  85. public TcpClientViewModel()
  86. {
  87. Message = "View A from your Prism Module";
  88. IpAddressView.SetAddress(Tcp_Clientmodel.Ipstring);
  89. }
  90. public void OpenTcpClientCommand()
  91. {
  92. if ( UiOpenText == "断开" )
  93. {
  94. for ( int i = 0; i < tcpClientModels.Count; i++ )
  95. {
  96. if ( SelectTcp_Clientmodel != null )
  97. {
  98. if ( tcpClientModels[ i ].Ipstring + ":" + tcpClientModels[ i ].Port == SelectTcp_Clientmodel.Ipstring + ":" + SelectTcp_Clientmodel.Port )
  99. {
  100. tcpClientModels[ i ].socketClient.Close();
  101. }
  102. }
  103. else
  104. {
  105. if ( tcpClientModels[ i ].Ipstring + ":" + tcpClientModels[ i ].Port == Tcp_Clientmodel.Ipstring + ":" + Tcp_Clientmodel.Port )
  106. {
  107. tcpClientModels[ i ].socketClient.Close();
  108. }
  109. }
  110. }
  111. UiOpenText = "连接";
  112. return;
  113. }
  114. if ( Tcp_Clientmodel.Ipstring.Trim() == "" )
  115. {
  116. WinMessageBox.Show("IP地址不能为空!");
  117. return;
  118. }
  119. if ( Tcp_Clientmodel.Port <= 0 )
  120. {
  121. WinMessageBox.Show("端口号不能为空!");
  122. return;
  123. }
  124. TcpSocketClient tcpSocketClient = new TcpSocketClient();
  125. tcpSocketClient.RemoteClose += TcpSocketClient_RemoteClose;
  126. if ( !tcpSocketClient.Connect(Tcp_Clientmodel.Ipstring, Tcp_Clientmodel.Port) )
  127. {
  128. WinMessageBox.Show("连接服务器失败!");
  129. return;
  130. }
  131. UiOpenText = "断开";
  132. TcpClientModel model= new TcpClientModel() { Ipstring = tcpClientmodel.Ipstring, Port = tcpClientmodel.Port, socketClient = tcpSocketClient };
  133. TcpAdd(model);
  134. if ( tcpSocketClient.StartReceive() == false )
  135. return;
  136. }
  137. public void OpenAllTcpClientCommand()
  138. {
  139. try
  140. {
  141. for ( int i = 0; i < tcpClientModels.Count; i++ )
  142. {
  143. if (tcpClientModels[ i ].socketClient == null )
  144. {
  145. tcpClientModels[ i ].socketClient = new TcpSocketClient();
  146. tcpClientModels[ i ].socketClient.Connect(tcpClientModels[ i ].Ipstring, tcpClientModels[ i ].Port);
  147. }
  148. if ( !tcpClientModels[ i ].socketClient.Socket.Connected )
  149. tcpClientModels[ i ].socketClient.Connect(tcpClientModels[ i ].Ipstring, tcpClientModels[ i ].Port);
  150. }
  151. }
  152. catch(Exception e)
  153. {
  154. LogHelper.Error("Tcp客户端运行错误 "+e.Message);
  155. isErr = true;
  156. }
  157. }
  158. private void TcpSocketClient_RemoteClose(string key)
  159. {
  160. for ( int i = 0; i < TcpClientModels.Count; i++ )
  161. {
  162. if ( TcpClientModels[ i ].Ipstring + ":" + TcpClientModels[ i ].Port == key )
  163. {
  164. TcpRemove(i);
  165. }
  166. }
  167. LogHelper.Info(key+"连接断开");
  168. }
  169. public static event Action<ObservableCollection<TcpClientModel>> ItemAdded;
  170. public static event Action<ObservableCollection<TcpClientModel>> ItemRemoved;
  171. public void TcpAdd(TcpClientModel item)
  172. {
  173. TcpClientModels.Add(item);
  174. ItemAdded?.Invoke(TcpClientModels);
  175. }
  176. public void TcpRemove(int item)
  177. {
  178. TcpClientModels.RemoveAt(item);
  179. ItemRemoved?.Invoke(TcpClientModels);
  180. }
  181. }
  182. }