天津投入产出系统后端
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.
 
 
 
 
 
 

373 lines
16 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.FJC.Entity.Basic;
using OPCPLC;
using QMAPP.FJC.DAL.Basic;
using QMAPP.FJC.Entity;
using System.Configuration;
using OPCAutomation;
using System.Threading;
namespace EQUIPINTERFACETEST
{
public class BurnTest
{
//用来存储生产设备信息
public List<MachineInfo> machineList_burn;
//用来存储设备加工参数信息
//key值样式为:设备号+模具号+读写状态+操作类别+数据库字段
public Dictionary<string, int> parameterValueDict_burn;
private Dictionary<int, string> clientHandleDict_burn = new Dictionary<int, string>();
private Dictionary<string, string> colunmConDict = new Dictionary<string, string>();
private int clientHandleValue = 0;
//加工参数列表静态变量
public List<ParameterConfig> paraConfigList_burn;
//设备参数信息
public List<ParameterConfig> moldList_burn;
//OPC零件信息列表静态变量
public Dictionary<string, OPCPLCAutomation> opcplcConnectionList_burn;
public void InitParameter()
{
parameterValueDict_burn = new Dictionary<string, int>();
moldList_burn = new List<ParameterConfig>();
paraConfigList_burn = new List<ParameterConfig>();
machineList_burn = new List<MachineInfo>();
//获取数据库中所有的生产设备信息
opcplcConnectionList_burn = new Dictionary<string, OPCPLCAutomation>();
try
{
#region 获取数据库中所有的生产设备信息
MachineInfoDAL machineDal = new MachineInfoDAL();
machineList_burn = machineDal.GetList(new MachineInfo() { PROCESSTYPE = EnumGeter.ProcessType.lengdaoruohua.GetHashCode().ToString() });
#endregion
#region 获取所有的配置信息
ParameterConfigDAL paraConDal = new QMAPP.FJC.DAL.Basic.ParameterConfigDAL();
paraConfigList_burn = paraConDal.GetList(new ParameterConfig() { MACHINECODDE = machineList_burn[0].MACHINECODDE });
#endregion
#region 获取设备模块信息
//对加工参数配置信息按照设备及模具信息进行分组
var objlist = from pc in paraConfigList_burn
group pc by new { pc.MACHINECODDE, pc.MOLDNUMBER } into g
select new ParameterConfig { MACHINECODDE = g.Key.MACHINECODDE, MOLDNUMBER = g.Key.MOLDNUMBER };
//添加到静态变量中
foreach (var ob in objlist)
{
moldList_burn.Add(new ParameterConfig() { MACHINECODDE = ob.MACHINECODDE, MOLDNUMBER = ob.MOLDNUMBER });
}
//按照设备进行排序
moldList_burn = moldList_burn.OrderBy(o => o.MACHINECODDE).OrderBy(o => o.MOLDNUMBER).ToList<ParameterConfig>();
#endregion
#region 加载模块下的加工参数配置信息
//变量所有的模具信息
foreach (var m in moldList_burn)
{
MachineInfo machineEntity = machineList_burn.First(o => o.MACHINECODDE == m.MACHINECODDE);
List<ParameterConfig> paraList = paraConfigList_burn
.Where(o => o.MACHINECODDE == m.MACHINECODDE && o.MOLDNUMBER == m.MOLDNUMBER && o.COLUMNTYPE == "0")
.ToList<ParameterConfig>();
if (paraList.Count > 0)
{
OPCPLCAutomation gtxConnection = new OPCPLC.OPCPLCAutomation();
//opcServer服务器IP
string opcServerIP = ConfigurationManager.AppSettings.Get("OPCServerIP");
//opcServer服务名称
string opcServerName = ConfigurationManager.AppSettings.Get("OPCServerName");
gtxConnection.GetListOPCServers("127.0.0.1");
//连接Opc服务
gtxConnection.ConnectRemoteServer(opcServerName, "127.0.0.1");
gtxConnection.CreateGroup(m.MACHINECODDE + "-" + m.MOLDNUMBER + "-GetData");
//变该模块下的所有参数信息
foreach (var pc in paraList)
{
//初始化字典名称: 设备名称+模块编号+字段名称
string dicKeyStr = machineEntity.MACHINECODDE + "-" + m.MOLDNUMBER + "-" + pc.COLUMNCODE;
//初始化字段信息值为0
parameterValueDict_burn.Add(dicKeyStr, 0);
//获取opc中tagName
string itemName = pc.CONNECTIONSTRING;
clientHandleValue++;
clientHandleDict_burn.Add(clientHandleValue, dicKeyStr);
//将字典中的与PLC内存地址向绑定
parameterValueDict_burn[dicKeyStr] = gtxConnection.AddKepItem(itemName, clientHandleValue);
colunmConDict.Add(dicKeyStr, m.MACHINECODDE + "-" + m.MOLDNUMBER + "-GetData");
}
//添加PLC连接信息
opcplcConnectionList_burn.Add(m.MACHINECODDE + "-" + m.MOLDNUMBER + "-GetData", gtxConnection);
}
List<ParameterConfig> writeList = paraConfigList_burn
.Where(o => o.MACHINECODDE == m.MACHINECODDE && o.MOLDNUMBER == m.MOLDNUMBER && o.COLUMNTYPE == "2")
.ToList<ParameterConfig>();
if (writeList.Count > 0)
{
OPCPLCAutomation gtxConnection = new OPCPLC.OPCPLCAutomation();
//opcServer服务器IP
string opcServerIP = ConfigurationManager.AppSettings.Get("OPCServerIP");
//opcServer服务名称
string opcServerName = ConfigurationManager.AppSettings.Get("OPCServerName");
gtxConnection.GetListOPCServers("127.0.0.1");
//连接Opc服务
gtxConnection.ConnectRemoteServer(opcServerName, "127.0.0.1");
gtxConnection.CreateGroup(m.MACHINECODDE + "-" + m.MOLDNUMBER + "-WriteData");
//变该模块下的所有参数信息
foreach (var pc in writeList)
{
//初始化字典名称: 设备名称+模块编号+字段名称
string dicKeyStr = machineEntity.MACHINECODDE + "-" + m.MOLDNUMBER + "-" + pc.COLUMNCODE;
//初始化字段信息值为0
parameterValueDict_burn.Add(dicKeyStr, 0);
//获取opc中tagName
string itemName = pc.CONNECTIONSTRING;
clientHandleValue++;
clientHandleDict_burn.Add(clientHandleValue, dicKeyStr);
//将字典中的与PLC内存地址向绑定
parameterValueDict_burn[dicKeyStr] = gtxConnection.AddKepItem(itemName, clientHandleValue);
colunmConDict.Add(dicKeyStr, m.MACHINECODDE + "-" + m.MOLDNUMBER + "-WriteData");
}
//添加PLC连接信息
opcplcConnectionList_burn.Add(m.MACHINECODDE + "-" + m.MOLDNUMBER + "-WriteData", gtxConnection);
}
#region 监控组
//获取设备扫描条码完成标记和设备加工完成标记
List<ParameterConfig> monitorList = paraConfigList_burn
.Where(o => o.MACHINECODDE == m.MACHINECODDE && (o.MOLDNUMBER == m.MOLDNUMBER && o.COLUMNTYPE == EQUIPINTERFACETESTCommon.COLUMNTYPE.EQUIPSCANFLAG.GetHashCode().ToString()
|| o.COLUMNTYPE == EQUIPINTERFACETESTCommon.COLUMNTYPE.COMPLETEFLAG.GetHashCode().ToString()))
.ToList<ParameterConfig>();
if (monitorList.Count > 0)
{
OPCPLCAutomation gtxConnection = new OPCPLC.OPCPLCAutomation();
//opcServer服务器IP
string opcServerIP = ConfigurationManager.AppSettings.Get("OPCServerIP");
//opcServer服务名称
string opcServerName = ConfigurationManager.AppSettings.Get("OPCServerName");
gtxConnection.GetListOPCServers("127.0.0.1");
//连接Opc服务
gtxConnection.ConnectRemoteServer(opcServerName, "127.0.0.1");
gtxConnection.CreateGroup(m.MACHINECODDE + "-" + m.MOLDNUMBER + "-Monitor");
//变该模块下的所有参数信息
foreach (var pc in monitorList)
{
//初始化字典名称: 设备名称+模块编号+字段名称
string dicKeyStr = machineEntity.MACHINECODDE + "-" + m.MOLDNUMBER + "-" + pc.COLUMNCODE;
//初始化字段信息值为0
parameterValueDict_burn.Add(dicKeyStr, 0);
//获取opc中tagName
string itemName = pc.CONNECTIONSTRING;
clientHandleValue++;
clientHandleDict_burn.Add(clientHandleValue, dicKeyStr);
//将字典中的与PLC内存地址向绑定
parameterValueDict_burn[dicKeyStr] = gtxConnection.AddKepItem(itemName, clientHandleValue);
colunmConDict.Add(dicKeyStr, m.MACHINECODDE + "-" + m.MOLDNUMBER + "-Monitor");
}
gtxConnection.KepGroups.DefaultGroupIsActive = true;//激活组。
gtxConnection.KepGroups.DefaultGroupDeadband = 0;// 死区值,设为0时,服务器端该组内任何数据变化都通知组。
gtxConnection.KepGroups.DefaultGroupUpdateRate = 200;//默认组群的刷新频率为200ms
gtxConnection.KepGroup.UpdateRate = 200;//刷新频率为1秒。
gtxConnection.KepGroup.IsSubscribed = true;//使用订阅功能,即可以异步,默认false
gtxConnection.KepGroup.DataChange += new DIOPCGroupEvent_DataChangeEventHandler(KepGroup_DataChange);
//添加PLC连接信息
opcplcConnectionList_burn.Add(m.MACHINECODDE + "-" + m.MOLDNUMBER + "-Monitor", gtxConnection);
}
#endregion
}
#endregion
}
catch (Exception ex)
{
}
}
private void KepGroup_DataChange(int TransactionID, int NumItems, ref Array ClientHandles, ref Array ItemValues, ref Array Qualities, ref Array TimeStamps)
{
try
{
//延迟一秒
Thread.Sleep(1000);
//为了测试,所以加了控制台的输出,来查看事物ID号
//Console.WriteLine("********"+TransactionID.ToString()+"*********");
for (int i = 1; i <= NumItems; i++)
{
//获取写入的值
var itemValue = ItemValues.GetValue(i);
//获取客户端句柄
int chvalue = Convert.ToInt32(ClientHandles.GetValue(i));
//获取服务端字典key值
string dicKeyStr = clientHandleDict_burn[chvalue];
//获取设备信息
string machCode = dicKeyStr.Substring(0, dicKeyStr.IndexOf('-'));
string moldAndColumn = dicKeyStr.Substring(dicKeyStr.IndexOf('-') + 1);
//获取模块信息
string moldNumber = moldAndColumn.Substring(0, moldAndColumn.IndexOf('-'));
//获取字段名称
string columnCode = dicKeyStr.Substring(dicKeyStr.LastIndexOf('-') + 1);
ParameterConfig currentPC = paraConfigList_burn.First(o => o.MACHINECODDE == machCode && o.MOLDNUMBER == moldNumber && o.COLUMNCODE == columnCode);
//完成标记
if (currentPC.COLUMNTYPE == OpcHostEnumGeter.COLUMNTYPE.COMPLETEFLAG.GetHashCode().ToString())
{
//如果完成标记表示更新了加工参数
//获取所有的加工参数
if ((Boolean)itemValue == true)
{
Console.WriteLine(System.DateTime.Now.ToLongTimeString() + "完成标记修改为true");
List<ParameterConfig> paraList = paraConfigList_burn
.Where(o => o.MACHINECODDE == machCode && o.MOLDNUMBER == moldNumber && o.COLUMNTYPE == "0")
.ToList<ParameterConfig>();
Console.WriteLine("读取加工参数标记值为:" + opcplcConnectionList_burn["GJZSSB9-1-WriteData"].ReadtagValue(parameterValueDict_burn["GJZSSB9-1-READED"]).ToString());
Console.WriteLine("开始读取加工参数");
foreach (var parameter in paraList)
{
string item = parameter.MACHINECODDE + "-" + parameter.MOLDNUMBER + "-" + parameter.COLUMNCODE;
string conListKey = colunmConDict[item];
OPCPLCAutomation con = opcplcConnectionList_burn[conListKey];
var result = con.ReadtagValue(parameterValueDict_burn[item]);
if (result != null)
{
//if (parameter.COLUMNCODE == "DAY" || parameter.COLUMNCODE == "MONTH" || parameter.COLUMNCODE == "YEAR" || parameter.COLUMNCODE == "HOUR"
// || parameter.COLUMNCODE == "MINUTE" || parameter.COLUMNCODE == "SECOND")
//{
// Console.WriteLine(item.ToString() + "值为" + result.ToString());
//}
//else
//{
// int res = Int32.Parse(result.ToString(), System.Globalization.NumberStyles.HexNumber);
// Console.WriteLine(item.ToString() + "值为" + res.ToString());
//}
Console.WriteLine(item.ToString() + "值为" + result.ToString());
}
}
opcplcConnectionList_burn["GJZSSB9-1-WriteData"].WritetagValue(parameterValueDict_burn["GJZSSB9-1-READED"], true);
Console.WriteLine("修改已读取加工参数标记");
Console.WriteLine("-------读取加工参数完成-------");
}
else
{
Console.WriteLine("完成标记修改为false");
}
}
}
}
catch (Exception ex)
{
Console.WriteLine("系统出现异常:" + ex.Message);
}
}
}
}