You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
3.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using Microsoft.Extensions.Logging;
using SlnMesnac.Common;
using SlnMesnac.Model.AirportApiEntity;
using SlnMesnac.Model.domain;
using SlnMesnac.Model.Enum;
using SlnMesnac.Repository.service.@base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace SlnMesnac.Repository.service.Impl
{
public class AGVStateServiceImpl : BaseServiceImpl<AGVState>, IAGVStateService
{
private ILogger<AGVStateServiceImpl> _logger;
public AGVStateServiceImpl(Repository<AGVState> repository, ILogger<AGVStateServiceImpl> logger) :base(repository)
{
_logger = logger;
}
public List<AGVState> GetAgvState(AgvType AgvType)
{
string _AgvType = Convert.ToString(((int)AgvType).ToString());
List<AGVState> agvStateInfoList = null;
try
{
Expression<Func<AGVState, bool>> exp = x => true;
exp = exp.And(x =>(x.agvno != null || x.agvno != "") && (x.taskno == null || x.taskno == "") && x.agvworkstate == "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" && (x.agvalarmstate == null || x.agvalarmstate == "") && x.agvtype == _AgvType);
agvStateInfoList = base._rep.GetList(exp);
}
catch (Exception ex)
{
_logger.LogError($"<22><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>AGV<47><56>Ϣ<EFBFBD>쳣:{ex.Message}");
}
return agvStateInfoList;
}
public List<AGVState> GetAllAGVState()
{
List<AGVState> agvStateInfoList = null;
try
{
agvStateInfoList = base._rep.GetList();
}
catch (Exception ex)
{
_logger.LogError($"<22><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>AGV<47><56>Ϣ<EFBFBD>쳣:{ex.Message}");
}
return agvStateInfoList;
}
public async Task<bool> UpdateAsync(AGVState record)
{
bool result = await _rep.UpdateAsync(record);
return result;
}
public async Task<bool> UpdateOrAddByResponse(AGVStateResponseEntity response)
{
AGVState record = new AGVState()
{
agvno = response.AGVNo,
agvalarmstate = response.AGVAlarmState,
agvtype = response.AGVType,
agvworkstate = response.AGVWorkState,
refreshtime = DateTime.Now,
taskno = response.TaskNo,
};
bool result = false;
try
{
var list = GetAllAGVState();
if (list.Where(x => x.agvno == response.AGVNo).Count() == 0)
{
result = _rep.Insert(record);
}
else
{
record.id = list.Where(x => x.agvno == response.AGVNo).FirstOrDefault().id;
result = await _rep.UpdateAsync(record);
}
}
catch (Exception ex)
{
_logger.LogError($"<22><>е<EFBFBD><D0B5>״̬<D7B4><CCAC>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD>쳣:{ex.Message}");
}
return result;
}
}
}