You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
614 lines
26 KiB
614 lines
26 KiB
3 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.Data;
|
||
|
using DBFactory;
|
||
|
using CommonLib;
|
||
|
using System.Threading;
|
||
|
namespace WcfControlMonitorLib
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Creator:Richard.liu
|
||
|
/// ��̬����·������״̬
|
||
|
/// </summary>
|
||
|
public static class CParsePLCData
|
||
|
{
|
||
|
public static event RefreshMonitorEventHandler RefreshMonitor;
|
||
|
public static void OnRefreshMonitor(RefreshMonitorEventArgs e)
|
||
|
{
|
||
|
if (RefreshMonitor != null)
|
||
|
{
|
||
|
RefreshMonitor(e);
|
||
|
}
|
||
|
}
|
||
|
public static event CDeviceStateChangeEventHandler DeviceStateChange;
|
||
|
public static void OnDeviceStateChange(object sender, CDeviceStateChangeEventArgs e)
|
||
|
{
|
||
|
if (DeviceStateChange != null)
|
||
|
{
|
||
|
DeviceStateChange(sender, e);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static StringBuilder sql = new StringBuilder();
|
||
|
|
||
|
static string _CParsePLCError = "";//���ص���������˵��
|
||
|
|
||
|
public static string CParsePLCError
|
||
|
{
|
||
|
get { return _CParsePLCError; }
|
||
|
set { _CParsePLCError = value; }
|
||
|
}
|
||
|
public class AltDeviceInfos
|
||
|
{
|
||
|
public int DeviceIndex;
|
||
|
public int DeviceKind;
|
||
|
public int RunState;
|
||
|
public int TaskNo;
|
||
|
public int ErrorCode;
|
||
|
}
|
||
|
static DBOperator dbo = new DBOperator();//20130926
|
||
|
static DBOperator dboMan = CStaticClass.dboM;//20130926
|
||
|
static Dictionary<int, AltDeviceInfos> _modifyPathDeviceInfo;
|
||
|
|
||
|
static object lockThis = new object();
|
||
|
/// <summary>
|
||
|
/// ���ӿ��Ըĵ��豸��Ϣ
|
||
|
/// </summary>
|
||
|
public static void AddModifyPathDeviceInfo()
|
||
|
{
|
||
|
|
||
|
lock (lockThis)
|
||
|
{
|
||
|
DataView dv1 = new DataView();
|
||
|
_modifyPathDeviceInfo = new Dictionary<int, AltDeviceInfos>();
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("select * from T_Base_Device where (F_DeviceKindIndex=1 or F_DeviceKindIndex=2 or F_DeviceKindIndex=4 or F_DeviceKindIndex= 38 ) and F_DBW2Address is not null order by F_DeviceIndex asc");//20130226richard.liu
|
||
|
DataView dv = dbo.ExceSQL(sql.ToString()).Tables[0].DefaultView;
|
||
|
for (int i = 0; i < dv.Count; i++)
|
||
|
{
|
||
|
AltDeviceInfos devinfo = new AltDeviceInfos();
|
||
|
devinfo.DeviceIndex = Convert.ToInt32(dv[i]["F_DeviceIndex"]);
|
||
|
devinfo.DeviceKind = Convert.ToInt32(dv[i]["F_DeviceKindIndex"]);
|
||
|
|
||
|
if (_modifyPathDeviceInfo.ContainsKey(Convert.ToInt32(dv[i]["F_DeviceIndex"])) == false)
|
||
|
{
|
||
|
_modifyPathDeviceInfo.Add(Convert.ToInt32(dv[i]["F_DeviceIndex"]), devinfo);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
public static void SetModifyPathDeviceInfo(int devindex, AltDeviceInfos altdev)
|
||
|
{
|
||
|
lock (lockThis)
|
||
|
{
|
||
|
_modifyPathDeviceInfo[devindex].ErrorCode = altdev.ErrorCode;
|
||
|
_modifyPathDeviceInfo[devindex].RunState = altdev.RunState;
|
||
|
_modifyPathDeviceInfo[devindex].TaskNo = altdev.TaskNo;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//static Thread mythreadRoute;
|
||
|
static Thread mythread;
|
||
|
static bool exitThread = false;//20091107
|
||
|
private static void BeginListen()
|
||
|
{//20091107
|
||
|
while (!exitThread)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
lock (lockThis)
|
||
|
{//20130226richard.liu
|
||
|
SetDeviceState();
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
_CParsePLCError = ex.StackTrace + ex.Message;
|
||
|
}
|
||
|
finally
|
||
|
{
|
||
|
Thread.Sleep(2000);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static void EndListen()
|
||
|
{//20091107
|
||
|
exitThread = true;
|
||
|
|
||
|
if (mythread != null)
|
||
|
{
|
||
|
|
||
|
mythread.Abort();
|
||
|
mythread = null;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
public static void StartListen()
|
||
|
{
|
||
|
AddModifyPathDeviceInfo();
|
||
|
//20091107
|
||
|
exitThread = false;
|
||
|
mythread = new Thread(new ThreadStart(BeginListen));
|
||
|
mythread.IsBackground = true;
|
||
|
mythread.Start();
|
||
|
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// ȡ��ָ���豸�������豸״̬:[0]��д��־;[1]״̬;[2]�����ţ�[3]X����;[4]Y����;[5]�豸����
|
||
|
/// </summary>
|
||
|
/// <param name="deviceIdx">�豸����</param>
|
||
|
/// <returns></returns>
|
||
|
|
||
|
public static int[] GetModifyPathDeviceState(int deviceIdx)
|
||
|
{
|
||
|
int[] states = new int[6] { 1, 0, 0, 0, 0, deviceIdx };
|
||
|
Model.MDevice mdevinfo = Model.CGetInfo.GetModifyPathDeviceInfo(deviceIdx);
|
||
|
if (mdevinfo != null)
|
||
|
{
|
||
|
states[1] = mdevinfo.ErrorCode;
|
||
|
states[2] = mdevinfo.TaskNo;
|
||
|
|
||
|
return states;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// ���������豸�ĵ�ǰ��̬����
|
||
|
/// </summary>
|
||
|
public static void SetDeviceState()
|
||
|
{
|
||
|
DataView dvv = new DataView();
|
||
|
DataView dv = new DataView();//20130306richard.liu
|
||
|
try
|
||
|
{
|
||
|
//�������г���������10�������ڴ��������updateroute = false,������10����֮�����������updateroute = true;�������ڴ��������ʱCStaticClass.routetime = DateTime.Now;
|
||
|
bool updateroute = false;
|
||
|
if (CStaticClass.routetime.AddSeconds(10) <= DateTime.Now)
|
||
|
{
|
||
|
updateroute = true;
|
||
|
CStaticClass.routetime = DateTime.Now;
|
||
|
}
|
||
|
sql.Remove(0, sql.Length);//20130306richard.liu
|
||
|
sql.Append("SELECT F_DeviceIndex FROM T_Base_Device WHERE (F_LockedState = - 1) and (F_DeviceKindIndex=1 or F_DeviceKindIndex=2 or F_DeviceKindIndex=4) and F_DBW2Address is not null");//20130306richard.liu
|
||
|
dv = dbo.ExceSQL(sql.ToString()).Tables[0].DefaultView;//20130306richard.liu
|
||
|
dv.Sort = "F_DeviceIndex";//20130306richard.liu
|
||
|
int[] States;
|
||
|
foreach (int devindex in _modifyPathDeviceInfo.Keys)
|
||
|
{
|
||
|
|
||
|
AltDeviceInfos devinfo1 = _modifyPathDeviceInfo[devindex];
|
||
|
//if (devinfo1.DeviceKind >= 6 && devinfo1.DeviceKind <= 30) continue;//20130226richard.liu
|
||
|
|
||
|
#region �豸��ͣ��
|
||
|
//20130306richard.liu
|
||
|
if (dv.Find(devindex) >= 0)//20130306richard.liu
|
||
|
{
|
||
|
if (updateroute == true)
|
||
|
{//20100131
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, 998);
|
||
|
AlterRoute(devinfo1.DeviceIndex, 998);
|
||
|
}
|
||
|
//20090926
|
||
|
if (devinfo1.ErrorCode != 998)
|
||
|
{
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, 998);
|
||
|
AlterRoute(devinfo1.DeviceIndex, 998);
|
||
|
devinfo1.RunState = 4;
|
||
|
|
||
|
}
|
||
|
devinfo1.ErrorCode = 998;
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
else
|
||
|
{
|
||
|
#region ���ͻ���
|
||
|
|
||
|
if (devinfo1.DeviceKind == 2)//20130226richard.liu
|
||
|
{
|
||
|
{
|
||
|
States = GetModifyPathDeviceState(devinfo1.DeviceIndex);
|
||
|
if (States == null) continue;
|
||
|
|
||
|
if (States[1] >= 30)
|
||
|
{
|
||
|
if (updateroute == true)
|
||
|
{//20100131
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, States[1]);
|
||
|
AlterRoute(devinfo1.DeviceIndex, States[1]);
|
||
|
}
|
||
|
//20100131
|
||
|
|
||
|
//��·����
|
||
|
if (States[1] != devinfo1.ErrorCode)
|
||
|
{
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, States[1]);
|
||
|
AlterRoute(devinfo1.DeviceIndex, States[1]);
|
||
|
}
|
||
|
|
||
|
devinfo1.ErrorCode = States[1];
|
||
|
devinfo1.RunState = 2;
|
||
|
}
|
||
|
|
||
|
else if ((States[1] == 0) || (States[1] == 1) || (States[1] == 2))
|
||
|
{
|
||
|
if (updateroute == true)
|
||
|
{//20100131
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, 0);
|
||
|
AlterRoute(devinfo1.DeviceIndex, States[1]);
|
||
|
}
|
||
|
//20100131
|
||
|
|
||
|
//��·����
|
||
|
if (States[1] != devinfo1.ErrorCode)
|
||
|
{
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, 0);
|
||
|
AlterRoute(devinfo1.DeviceIndex, States[1]);
|
||
|
}
|
||
|
//20090926
|
||
|
|
||
|
if (States[1] == 2)
|
||
|
{
|
||
|
//20090920
|
||
|
devinfo1.RunState = 5;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
devinfo1.RunState = States[1];
|
||
|
}
|
||
|
//20100131
|
||
|
|
||
|
|
||
|
//20091006
|
||
|
devinfo1.ErrorCode = States[1];
|
||
|
//20090926
|
||
|
}
|
||
|
devinfo1.TaskNo = States[2];
|
||
|
//20101118
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region ��ȫ��
|
||
|
if (devinfo1.DeviceKind == 38)//20130226richard.liu
|
||
|
{
|
||
|
//States = GetModifyPathDeviceState(devinfo1.DeviceIndex);
|
||
|
//Model.MDevice mdevinfo = Model.CGetInfo.SetDeviceMessage(devinfo1.DeviceIndex);
|
||
|
Model.MDevice dr = Model.CGetInfo.GetDeviceInfo(devinfo1.DeviceIndex);
|
||
|
if (dr == null) continue;
|
||
|
|
||
|
if (dr.SplitByte_0 == 1)
|
||
|
{
|
||
|
if (updateroute == true)
|
||
|
{//20100131
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, 381);
|
||
|
AlterRoute(devinfo1.DeviceIndex, 381);
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("update T_Base_Device set F_ErrorCode = 0 where F_DeviceIndex = ").Append(devinfo1.DeviceIndex);
|
||
|
dbo.ExceSQL(sql.ToString());
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region �ƶ��豸��
|
||
|
|
||
|
if ((devinfo1.DeviceKind == 1) || (devinfo1.DeviceKind == 4))
|
||
|
{
|
||
|
States = GetModifyPathDeviceState(devinfo1.DeviceIndex);
|
||
|
|
||
|
if (States == null) continue;
|
||
|
|
||
|
|
||
|
if (States[1] >= 30)
|
||
|
{
|
||
|
if (updateroute == true)
|
||
|
{//20100131
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, States[1]);
|
||
|
AlterRoute(devinfo1.DeviceIndex, States[1]);
|
||
|
}
|
||
|
//��·����
|
||
|
if (States[1] != devinfo1.ErrorCode)
|
||
|
{
|
||
|
//20100131
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, States[1]);
|
||
|
AlterRoute(devinfo1.DeviceIndex, States[1]);
|
||
|
}
|
||
|
devinfo1.ErrorCode = States[1];
|
||
|
devinfo1.RunState = 2;
|
||
|
}
|
||
|
else if ((States[1] == 0) || (States[1] == 1) || (States[1] == 2))
|
||
|
{
|
||
|
if (updateroute == true)
|
||
|
{//20100131
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, 0);
|
||
|
AlterRoute(devinfo1.DeviceIndex, States[1]);
|
||
|
}
|
||
|
//��·����
|
||
|
if (States[1] != devinfo1.ErrorCode)
|
||
|
{
|
||
|
//20100131
|
||
|
UpdateErrorCode(devinfo1.DeviceIndex, 0);
|
||
|
AlterRoute(devinfo1.DeviceIndex, States[1]);
|
||
|
}
|
||
|
//20090926
|
||
|
|
||
|
if (States[1] == 2)
|
||
|
{
|
||
|
//20090920
|
||
|
devinfo1.RunState = 5;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
devinfo1.RunState = States[1];
|
||
|
}
|
||
|
//20100131
|
||
|
devinfo1.ErrorCode = States[1];
|
||
|
|
||
|
}
|
||
|
devinfo1.TaskNo = States[2];
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
}
|
||
|
SetModifyPathDeviceInfo(devindex, devinfo1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
catch (Exception exa)
|
||
|
{
|
||
|
|
||
|
_CParsePLCError = string.Format("����PLC�������ݵļ�¼�豸״̬ʱ����������{0}", exa.StackTrace + exa.Message);
|
||
|
RefreshMonitorEventArgs rmea = new RefreshMonitorEventArgs("tsStatus", _CParsePLCError);
|
||
|
OnRefreshMonitor(rmea);
|
||
|
}
|
||
|
finally
|
||
|
{
|
||
|
dvv.Dispose();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// �ı���·������������������·����
|
||
|
/// </summary>
|
||
|
/// <param name="devInx">�������ϵ��豸����</param>
|
||
|
/// <returns></returns>
|
||
|
public static bool AlterRoute(int devInx, int state)
|
||
|
{
|
||
|
|
||
|
DataView dvr = new DataView(); DataView dv1 = new DataView(); DataView dv = new DataView();
|
||
|
try
|
||
|
{
|
||
|
#region ���ݶѶ����Ĺ��������Ƿ�����
|
||
|
//if ((devInx >= 11001) && (devInx <= 11003))
|
||
|
//{//20110405������WH_LANEWAY �ֶΣ�WAREHOUSE_CODE���ֿ�����-01��03��04 LANEWAY_CODE:��������-1��2��3
|
||
|
// //DEVICE_FLAG���豸״̬-0=�����ã�1=����
|
||
|
// string LANEWAY_CODE = devInx.ToString().Substring(4,1);
|
||
|
// int DEVICE_FLAG=-1;
|
||
|
// if (state >= 30)
|
||
|
// {
|
||
|
// DEVICE_FLAG =0;
|
||
|
// }
|
||
|
// else
|
||
|
// {
|
||
|
// DEVICE_FLAG =1;
|
||
|
// }
|
||
|
// sql.Remove(0, sql.Length);
|
||
|
// sql.Append("update WH_LANEWAY set DEVICE_FLAG=").Append(DEVICE_FLAG).Append(" where WAREHOUSE_CODE='01' and LANEWAY_CODE='").Append(LANEWAY_CODE).Append("' and DEVICE_FLAG<>").Append(DEVICE_FLAG);
|
||
|
// dboMan.ExceSQL(sql.ToString());
|
||
|
|
||
|
//}
|
||
|
#endregion
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("select distinct F_RouteID from T_Base_Route_Device where F_DeviceOrder>0 and F_DeviceIndex=").Append(devInx);
|
||
|
dv = dbo.ExceSQL(sql.ToString()).Tables[0].DefaultView;
|
||
|
for (int i = 0; i < dv.Count; i++)
|
||
|
{
|
||
|
if (state >= 30)
|
||
|
{
|
||
|
//������·����������ʱ�������趨��·�����IJ�����
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append(" SELECT T_Base_Route_Device.F_RouteIDSub, SUM(T_Base_Device.F_ErrorCode) AS ErrorCodes ").Append(
|
||
|
" FROM T_Base_Route_Device,T_Base_Device where (F_DeviceKindIndex=1 or F_DeviceKindIndex=2 or F_DeviceKindIndex=4) and F_DBW2Address is not null and F_DeviceOrder >0 and T_Base_Route_Device.F_DeviceIndex = T_Base_Device.F_DeviceIndex").Append(
|
||
|
" and T_Base_Route_Device.F_RouteID=").Append(dv[i]["F_RouteID"]).Append(" GROUP BY T_Base_Route_Device.F_RouteIDSub ");//20130226richard.liu
|
||
|
dvr = dbo.ExceSQL(sql.ToString()).Tables[0].DefaultView;
|
||
|
bool ifUsable = false;
|
||
|
for (int kk = 0; kk < dvr.Count; kk++)
|
||
|
{
|
||
|
if (Convert.ToInt32(dvr[kk]["ErrorCodes"]) <= 0)
|
||
|
{
|
||
|
ifUsable = true;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
if (ifUsable == false)
|
||
|
{
|
||
|
//20101011
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("update t_base_route set F_Status=0 where f_routeid=").Append(dv[i]["F_RouteID"]).Append(" and F_Status=1 and F_AutoUpdate=1 ");
|
||
|
int ups = dbo.ExecuteSql(sql.ToString());
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("update IO_CONTROL_ROUTE set CONTROL_ROUTE_STATUS=0 where CONTROL_ROUTE_ID='").Append(dv[i]["F_RouteID"]).Append("' and CONTROL_ROUTE_STATUS=1");
|
||
|
if (ups > 0) dboMan.ExceSQL(sql.ToString());
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
//20120328��һ����·�����ã�·���Ϳ���
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("update t_base_route set F_Status=1 where f_routeid=").Append(dv[i]["F_RouteID"]).Append(" and F_Status=0 and F_AutoUpdate=1 ");
|
||
|
int ups = dbo.ExecuteSql(sql.ToString());
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("update IO_CONTROL_ROUTE set CONTROL_ROUTE_STATUS=1 where CONTROL_ROUTE_ID='").Append(dv[i]["F_RouteID"]).Append("' and CONTROL_ROUTE_STATUS=0");
|
||
|
if (ups > 0) dboMan.ExceSQL(sql.ToString());
|
||
|
}
|
||
|
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("SELECT SUM(T_Base_Device.F_ErrorCode) as errcode FROM T_Base_Device ,T_Base_Route_Device").Append(
|
||
|
" where (F_DeviceKindIndex=1 or F_DeviceKindIndex=2 or F_DeviceKindIndex=4) and F_DBW2Address is not null and F_DeviceOrder>0 and T_Base_Device.F_DeviceIndex = T_Base_Route_Device.F_DeviceIndex and T_Base_Route_Device.F_RouteID=").Append(dv[i]["F_RouteID"]);//20130226richard.liu
|
||
|
dv1 = dbo.ExceSQL(sql.ToString()).Tables[0].DefaultView;
|
||
|
if (dv1.Count > 0)
|
||
|
{
|
||
|
int errcode = 0; int a = 0;
|
||
|
if (int.TryParse(dv1[0]["errcode"].ToString(), out a) == true)
|
||
|
{
|
||
|
errcode = Convert.ToInt32(dv1[0]["errcode"]);
|
||
|
}
|
||
|
|
||
|
if (errcode <= 0)
|
||
|
{
|
||
|
//20101011
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("update t_base_route set F_Status=1 where f_routeid=").Append(dv[i]["F_RouteID"]).Append(" and F_Status=0 and F_AutoUpdate=1 ");
|
||
|
int ups = dbo.ExecuteSql(sql.ToString());
|
||
|
sql.Remove(0, sql.Length);
|
||
|
sql.Append("update IO_CONTROL_ROUTE set CONTROL_ROUTE_STATUS=1 where CONTROL_ROUTE_ID='").Append(dv[i]["F_RouteID"]).Append("' and CONTROL_ROUTE_STATUS=0");
|
||
|
if (ups > 0) dboMan.ExceSQL(sql.ToString());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
_CParsePLCError = string.Format("����PLC�������ݵ���·��ʱ����������{0}", ex.StackTrace + ex.Message);
|
||
|
RefreshMonitorEventArgs rmea = new RefreshMonitorEventArgs("tsStatus", _CParsePLCError);
|
||
|
OnRefreshMonitor(rmea);
|
||
|
return false;
|
||
|
}
|
||
|
finally
|
||
|
{
|
||
|
dv.Dispose();
|
||
|
dvr.Dispose();
|
||
|
dv1.Dispose();
|
||
|
}
|
||
|
}
|
||
|
static void UpdateErrorCode(int devInx, int errorCode)
|
||
|
{
|
||
|
#region ԭ���ij���
|
||
|
////20130226richard.liu
|
||
|
//sql.Clear();
|
||
|
//sql.Append("SELECT F_DeviceErrorIndex FROM T_Base_Device_State where F_DeviceKindIndex=").Append(_modifyPathDeviceInfo[devInx].DeviceKind).Append(" and F_DeviceErrorIndex=").Append(errorCode);
|
||
|
//DataView dv = dbo.����ExceSQL(sql.ToString()).Tables[0].DefaultView;
|
||
|
//if (dv.Count > 0)
|
||
|
//{
|
||
|
// sql.Clear();
|
||
|
// sql.Append("UPDATE T_Base_Device SET F_ErrorCode = ").Append(errorCode).Append(" WHERE (F_DeviceIndex = ").Append(devInx).Append(")and (F_ErrorCode <> ").Append(errorCode).Append(")");
|
||
|
// CStaticClass.dbo.ExecuteSql(sql.ToString());//20130306richard.liuʹ�����߳����������ģ���������UPDATE����
|
||
|
//}
|
||
|
//dv.Dispose();
|
||
|
#endregion
|
||
|
DataView dv = new DataView();
|
||
|
int errorindex = 0;
|
||
|
try
|
||
|
{
|
||
|
//if (devInx == 14102)
|
||
|
//{
|
||
|
//}
|
||
|
string sqlstr = string.Format("SELECT F_DeviceIndex,F_ErrorTaskNo,F_ErrorCode FROM T_Base_Device where F_DeviceIndex={0} and F_ErrorCode!={1}", devInx, errorCode);//���ҹ����豸
|
||
|
dv = dbo.ExceSQL(sqlstr).Tables[0].DefaultView;
|
||
|
//sql.Append("SELECT F_DeviceErrorIndex FROM T_Base_Device_State where F_DeviceKindIndex=").Append(_modifyPathDeviceInfo[devInx].DeviceKind).Append(" and F_DeviceErrorIndex=").Append(errorCode);
|
||
|
|
||
|
if (dv.Count > 0)//״̬�����仯֮���Ÿ���״̬
|
||
|
{
|
||
|
|
||
|
if (errorCode > 0)
|
||
|
{
|
||
|
Model.MError errs = Model.CGetInfo.GetErrorInfo(Convert.ToInt32(_modifyPathDeviceInfo[devInx].DeviceKind + errorCode.ToString()));
|
||
|
if (errs == null)
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
errorindex = errs.ErrorIndex;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
//int taskno = Convert.ToInt32(dv[0]["F_ErrorTaskNo"]);
|
||
|
|
||
|
string str = string.Empty;
|
||
|
if (errorCode == 0)
|
||
|
{
|
||
|
str = string.Format(",F_ErrorTaskNo=0 ");
|
||
|
}
|
||
|
sqlstr = string.Format("UPDATE T_Base_Device SET F_ErrorCode = {0}{1} WHERE (F_DeviceIndex = {2})and (F_ErrorCode <> {3})", errorCode, str, devInx, errorCode);
|
||
|
|
||
|
//sql.Clear();
|
||
|
//sql.Append("UPDATE T_Base_Device SET F_ErrorCode = ").Append(errorCode).Append(" WHERE (F_DeviceIndex = ").Append(devInx).Append(")and (F_ErrorCode <> ").Append(errorCode).Append(")");
|
||
|
int count = CStaticClass.dbo.ExecuteSql(sqlstr);//20130306richard.liuʹ�����߳����������ģ���������UPDATE����
|
||
|
|
||
|
if (count > 0) //���Ͻ���ʱ��¼���Ͻ���ʱ��
|
||
|
{
|
||
|
string dtime = DateTime.Now.ToString("u");//20110603
|
||
|
|
||
|
dtime = dtime.Substring(0, dtime.Length - 1);
|
||
|
|
||
|
//�µĹ��Ϸ���ʱ���ȸ�����һ�����ϵĽ���ʱ��
|
||
|
//sqlstr = string.Format("UPDATE T_Base_Device_Error_Log SET F_End_DateTime ='{0}' Where F_End_DateTime is null and F_DeviceIndex={1} and F_MonitorIndex = {2} ", dtime, devInx, taskno);
|
||
|
sqlstr = string.Format("UPDATE T_Base_Device_Error_Log SET F_End_DateTime ='{0}' Where F_End_DateTime is null and F_DeviceIndex={1} ", dtime, devInx);
|
||
|
|
||
|
CStaticClass.dbo.ExecuteSql(sqlstr);//20130306richard.liuʹ�����߳����������ģ���������UPDATE����
|
||
|
|
||
|
//�µĹ��Ϸ���,��¼
|
||
|
if (errorCode != 0 && errorCode != 998)//�豸�������Ժ���Ҳ��Ϊ������
|
||
|
{
|
||
|
int taskno = _modifyPathDeviceInfo[devInx].TaskNo;
|
||
|
sqlstr = string.Format("INSERT INTO T_Base_Device_Error_Log (F_TaskNo,F_DeviceIndex, F_ErrorIndex, F_DateTime) VALUES ({0},{1},{2},'{3}')", taskno, devInx, errorindex, dtime);
|
||
|
|
||
|
CStaticClass.dbo.ExecuteSql(sqlstr);//20130306richard.liuʹ�����߳����������ģ���������UPDATE����
|
||
|
|
||
|
//sql.Remove(0, sql.Length);
|
||
|
//sql.Append("INSERT INTO T_Base_Device_Error_Log (F_ManageTaskNo,F_DeviceIndex, F_ErrorIndex, F_DateTime) VALUES (").Append(fid).Append(",").Append(DeviceIdx).Append(",").Append(errs.ErrorIndex).Append(",'").Append(dtime).Append("')");
|
||
|
//dbo.ExceSQL(sql.ToString());
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
finally
|
||
|
{
|
||
|
dv.Dispose();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|