#region << 版 本 注 释 >>
|
/*----------------------------------------------------------------
|
* 命名空间:WIDESEAWCS_QuartzJob
|
* 创建者:胡童庆
|
* 创建时间:2024/8/2 16:13:36
|
* 版本:V1.0.0
|
* 描述:一般输送线实现类
|
*
|
* ----------------------------------------------------------------
|
* 修改人:
|
* 修改时间:
|
* 版本:V1.0.1
|
* 修改说明:
|
*
|
*----------------------------------------------------------------*/
|
#endregion << 版 本 注 释 >>
|
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_Communicator;
|
using WIDESEAWCS_QuartzJob.ConveyorLine.Enum;
|
using WIDESEAWCS_QuartzJob.DeviceBase;
|
using WIDESEAWCS_QuartzJob.DTO;
|
using WIDESEAWCS_QuartzJob.StackerCrane.Enum;
|
|
namespace WIDESEAWCS_QuartzJob
|
{
|
public class CommonConveyorLine : IConveyorLine
|
{
|
#region Private Member
|
/// <summary>
|
/// 堆垛机通讯对象
|
/// </summary>
|
private readonly BaseCommunicator _communicator;
|
/// <summary>
|
/// 堆垛机协议信息
|
/// </summary>
|
private readonly List<DeviceProDTO> _deviceProDTOs;
|
/// <summary>
|
/// 堆垛机协议明细信息
|
/// </summary>
|
private readonly List<DeviceProtocolDetailDTO> _deviceProtocolDetailDTOs;
|
/// <summary>
|
/// 设备编号
|
/// </summary>
|
public readonly string _deviceCode;
|
/// <summary>
|
/// 设备名称
|
/// </summary>
|
public readonly string _deviceName;
|
#endregion
|
|
#region Public Member
|
public BaseCommunicator Communicator => _communicator;
|
|
public List<DeviceProDTO> DeviceProDTOs => _deviceProDTOs;
|
|
public List<DeviceProtocolDetailDTO> DeviceProtocolDetailDTOs => _deviceProtocolDetailDTOs;
|
|
public string DeviceCode => _deviceCode;
|
|
public string DeviceName => _deviceName;
|
|
public bool IsFault => false;
|
|
public bool IsConnected => Communicator.IsConnected;
|
|
public DeviceStatus Status => DeviceStatus.Offline;
|
#endregion
|
|
#region Constructor Function
|
/// <summary>
|
/// 构造函数
|
/// </summary>
|
/// <param name="communicator">堆垛机通讯对象</param>
|
/// <param name="deviceProDTOs">堆垛机协议信息</param>
|
/// <param name="deviceProtocolDetailDTOs">堆垛机协议明细信息</param>
|
/// <param name="deviceCode">设备编号</param>
|
/// <param name="deviceName">设备名称</param>
|
public CommonConveyorLine(BaseCommunicator communicator, List<DeviceProDTO> deviceProDTOs, List<DeviceProtocolDetailDTO> deviceProtocolDetailDTOs, string deviceCode, string deviceName)
|
{
|
_communicator = communicator;
|
_deviceProDTOs = deviceProDTOs;
|
_deviceProtocolDetailDTOs = deviceProtocolDetailDTOs;
|
_deviceCode = deviceCode;
|
_deviceName = deviceName;
|
}
|
#endregion
|
|
#region Private Method
|
#endregion
|
|
#region Public Method
|
public TRsult GetValue<TEnum, TRsult>(TEnum value, string deviceChildCode) where TEnum : Enum
|
{
|
DeviceProDTO? devicePro = _deviceProDTOs.FirstOrDefault(x => x.DeviceProParamName == value.ToString() && x.DeviceChildCode == deviceChildCode);
|
return devicePro == null ? throw new Exception() : (TRsult)Communicator.ReadAsObj(devicePro.DeviceProAddress, devicePro.DeviceDataType);
|
}
|
|
public void Heartbeat()
|
{
|
throw new NotImplementedException();
|
}
|
|
public bool SendCommand(DeviceCommand command, string deviceChildCode)
|
{
|
DeviceProDTO? devicePro = _deviceProDTOs.Where(x => x.DeviceProParamType == nameof(DeviceCommand) && x.DeviceChildCode == deviceChildCode).OrderBy(x => x.DeviceProOffset).FirstOrDefault();
|
if (devicePro == null)
|
{
|
return false;
|
}
|
if (Communicator.WriteCustomer(devicePro.DeviceProAddress, command))
|
{
|
return true;
|
}
|
return false;
|
}
|
|
public bool SetValue<TEnum, TValue>(TEnum @enum, TValue value, string deviceChildCode)
|
where TEnum : Enum
|
where TValue : notnull
|
{
|
DeviceProDTO? devicePro = _deviceProDTOs.FirstOrDefault(x => x.DeviceProParamName == @enum.ToString() && x.DeviceChildCode == deviceChildCode);
|
return devicePro == null ? throw new Exception() : Communicator.WriteObj(devicePro.DeviceProAddress, devicePro.DeviceDataType, value);
|
}
|
|
public bool IsOccupied(string deviceChildCode)
|
{
|
if (Communicator.IsConnected)
|
{
|
List<DeviceProDTO> devicePros = _deviceProDTOs.Where(x => x.DeviceProParamType == ConveyorLineStatus.IsOccupied.ToString()).ToList();
|
if (devicePros.Count == 0)
|
{
|
//todo 协议信息未获取到时抛出异常
|
throw new Exception();
|
}
|
for (int i = 0; i < devicePros.Count; i++)
|
{
|
object readStatus = Communicator.ReadAsObj(devicePros[i].DeviceProAddress, devicePros[i].DeviceDataType);
|
//todo 协议明细信息未获取到时抛出异常
|
DeviceProtocolDetailDTO? deviceProtocolDetail = _deviceProtocolDetailDTOs.FirstOrDefault(x => x.DeviceProParamName == devicePros[i].DeviceProParamName) ?? throw new Exception();
|
deviceProtocolDetail = _deviceProtocolDetailDTOs.FirstOrDefault(x => x.DeviceProParamName == devicePros[i].DeviceProParamType && x.ProtocalDetailValue.Equals(readStatus.ToString()));
|
if (deviceProtocolDetail != null)
|
{
|
return true;
|
}
|
return false;
|
}
|
}
|
//todo 通讯未连接时抛出异常
|
return false;
|
}
|
#endregion
|
}
|
}
|