|
@@ -16,7 +16,7 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
public class ThorntonSerialDevice
|
|
|
{
|
|
|
#region Delegate
|
|
|
- public delegate void ThorntonDataChanged(string name,List<string> lstContent);
|
|
|
+ public delegate void ThorntonDataChanged(string name, List<string> lstContent);
|
|
|
#endregion
|
|
|
#region 常量
|
|
|
private const string CONSTANT_COMMAND = "D00Z\r";
|
|
@@ -48,6 +48,10 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
/// </summary>
|
|
|
private string _errmsg = "";
|
|
|
/// <summary>
|
|
|
+ /// warning信息
|
|
|
+ /// </summary>
|
|
|
+ private string _warnMsg = "";
|
|
|
+ /// <summary>
|
|
|
/// 重连
|
|
|
/// </summary>
|
|
|
private bool _reconnected;
|
|
@@ -56,6 +60,10 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
/// </summary>
|
|
|
private DateTime _offlineDateTime;
|
|
|
/// <summary>
|
|
|
+ /// 首次连接成功
|
|
|
+ /// </summary>
|
|
|
+ private bool _isFirstConnected = false;
|
|
|
+ /// <summary>
|
|
|
/// 锁
|
|
|
/// </summary>
|
|
|
private object _locker = new object();
|
|
@@ -84,7 +92,7 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
/// <param name="stopBits"></param>
|
|
|
/// <param name="dataBits"></param>
|
|
|
/// <param name="parity"></param>
|
|
|
- public ThorntonSerialDevice(string name, string portName, int baudRate = 9600, StopBits stopBits = StopBits.One, int dataBits = 8, Parity parity = Parity.None, bool reconnected = false,int receiveTimeout=2000)
|
|
|
+ public ThorntonSerialDevice(string name, string portName, int baudRate = 9600, StopBits stopBits = StopBits.One, int dataBits = 8, Parity parity = Parity.None, bool reconnected = false, int receiveTimeout = 2000)
|
|
|
{
|
|
|
_serialPort = new SerialPort();
|
|
|
_serialPort.BaudRate = baudRate;
|
|
@@ -121,10 +129,9 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
if (!_serialPort.IsOpen)
|
|
|
{
|
|
|
_serialPort.Open();
|
|
|
+ LOG.WriteLog(eEvent.INFO_RESISTIVITY, _name, $"connect port[{_serialPort.PortName}] success");
|
|
|
}
|
|
|
_connected = true;
|
|
|
-
|
|
|
- LOG.WriteLog(eEvent.INFO_RESISTIVITY, _name, $"connect port[{_serialPort.PortName}] success");
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
@@ -189,19 +196,19 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
/// </summary>
|
|
|
public void ReadData()
|
|
|
{
|
|
|
+ string str = "";
|
|
|
try
|
|
|
{
|
|
|
_serialPort.WriteLine(CONSTANT_COMMAND);
|
|
|
DateTime dt = DateTime.Now;
|
|
|
- string str = "";
|
|
|
- while(DateTime.Now.Subtract(dt).TotalMilliseconds<=_receiveTimeout)
|
|
|
+ while (DateTime.Now.Subtract(dt).TotalMilliseconds <= _receiveTimeout)
|
|
|
{
|
|
|
if (_serialPort.BytesToRead > 0)
|
|
|
{
|
|
|
string tmp = _serialPort.ReadLine();
|
|
|
- if(!string.IsNullOrEmpty(tmp))
|
|
|
+ if (!string.IsNullOrEmpty(tmp))
|
|
|
{
|
|
|
- WriteInfoMsg(0,tmp);
|
|
|
+ WriteInfoMsg(0, tmp);
|
|
|
}
|
|
|
if (tmp != CONSTANT_COMMAND)
|
|
|
{
|
|
@@ -217,25 +224,24 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
if (!string.IsNullOrEmpty(str))
|
|
|
{
|
|
|
string[] strAry = str.Split(SPLIT_CHARACTER);
|
|
|
- if(strAry.Length>=4)
|
|
|
+ if (strAry.Length >= 4)
|
|
|
{
|
|
|
List<string> lst = new List<string>();
|
|
|
- int length=strAry.Length%2==0?strAry.Length:strAry.Length-1;
|
|
|
- for(int i=2;i<length; i+=2)
|
|
|
+ for (int i = 2; i < strAry.Length; i += 2)
|
|
|
{
|
|
|
lst.Add(strAry[i]);
|
|
|
}
|
|
|
- if(OnDataChanged!=null)
|
|
|
+ if (OnDataChanged != null)
|
|
|
{
|
|
|
- OnDataChanged(_name,lst);
|
|
|
+ OnDataChanged(_name, lst);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
_errmsg = "";
|
|
|
- }
|
|
|
- catch(Exception ex)
|
|
|
+ }
|
|
|
+ catch (Exception ex)
|
|
|
{
|
|
|
- WriteErrorMsg(ex.Message);
|
|
|
+ WriteWarnMsg($"read exception{ex.Message}--{str}");
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -257,6 +263,18 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
}
|
|
|
}
|
|
|
/// <summary>
|
|
|
+ /// 记录错误信息
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="msg"></param>
|
|
|
+ private void WriteWarnMsg(string msg)
|
|
|
+ {
|
|
|
+ if (_warnMsg != msg)
|
|
|
+ {
|
|
|
+ _warnMsg = msg;
|
|
|
+ LOG.WriteLog(eEvent.WARN_RESISTIVITY, _name, msg);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
/// 写日志
|
|
|
/// </summary>
|
|
|
/// <param name="bytes"></param>
|