using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.IO.Ports; using System.Windows; using System.Windows.Input; using Aitex.Core.UI.MVVM; using MECF.Framework.Simulator.Core.Driver; namespace MECF.Framework.Simulator.Core.Commons { public class SerialPortDeviceViewModel : TimerViewModelBase { public List PortList { get; set; } public ICommand ClearLogCommand { get; set; } public ICommand EnableCommand { get; set; } public ICommand DisableCommand { get; set; } public bool IsEnableEnable => !_simulator.IsEnabled; public bool IsEnableDisable => _simulator.IsEnabled; public string RemoteConnection => _simulator.RemoteConnection; public string LocalPort => _simulator.PortName; public bool IsConnected => _simulator.IsConnected; public string ConnectionStatus { get { if (_simulator.IsEnabled) return "Receiving"; return "Disable"; } } public string LocalPortSetPoint { get; set; } public ObservableCollection TransactionLogItems { get; set; } protected SerialPortDeviceSimulator _simulator; public SerialPortDeviceViewModel(string name) : base(name) { ClearLogCommand = new DelegateCommand(ClearLog); EnableCommand = new DelegateCommand(Enable); DisableCommand = new DelegateCommand(Disable); TransactionLogItems = new ObservableCollection(); PortList = new List(SerialPort.GetPortNames()); } protected void Init(SerialPortDeviceSimulator sim, bool enable = true) { LocalPortSetPoint = sim.PortName; InvokePropertyChanged("LocalPortSetPoint"); _simulator = sim; _simulator.MessageOut += _simulator_MessageOut; _simulator.MessageIn += _simulator_MessageIn; if (enable) _simulator.Enable(); } private void Disable(string obj) { _simulator.Disable(); } private void Enable(string obj) { _simulator.PortName = LocalPortSetPoint; _simulator.Enable(); } private void ClearLog(string obj) { TransactionLogItems.Clear(); } private void _simulator_MessageIn(string obj) { Application.Current.Dispatcher.Invoke(new Action(() => { TransactionLogItems.Add(new TransactionLogItem() { Incoming = obj, OccurTime = DateTime.Now.ToString("HH:mm:ss.fff") }); while (TransactionLogItems.Count > 100) { TransactionLogItems.RemoveAt(0); } })); } private void _simulator_MessageOut(string obj) { Application.Current.Dispatcher.Invoke(new Action(() => { TransactionLogItems.Add(new TransactionLogItem() { Outgoing = obj, OccurTime = DateTime.Now.ToString("HH:mm:ss.fff") }); while (TransactionLogItems.Count > 100) { TransactionLogItems.RemoveAt(0); } })); } protected override void Poll() { if(Application.Current != null) { Application.Current.Dispatcher.Invoke(new Action(() => { InvokePropertyChanged(); })); } } } }