| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436 |
- using Microsoft.Win32;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.IO;
- using System.Text;
- using System.Threading;
- using System.Windows.Forms;
- using System.Xml;
- using UAS_AutoPass.ToolClass;
- namespace UAS_XmlAnalysor
- {
- public partial class Form1 : Form
- {
- DataHelper dh;
- DataTable dt;
- Tip tipform;
- /// <summary>
- /// 用户编号
- /// </summary>
- string iusercode;
- /// <summary>
- /// 岗位资源
- /// </summary>
- string isource;
- /// <summary>
- /// 线别
- /// </summary>
- string ilinecode;
- /// <summary>
- /// 不良代码组
- /// </summary>
- string ibadgroup;
- /// <summary>
- /// 当前工序
- /// </summary>
- string istepcode;
- StringBuilder sql = new StringBuilder();
- DataTable DB;
- Thread InitDB;
- /// <summary>
- /// 缓存的文件
- /// </summary>
- public static string CachePath = Environment.GetEnvironmentVariable("windir").Substring(0, 1) + @":/UAS_MES/XmlAnalysor/Cache.xml";
- /// <summary>
- /// 缓存的文件夹
- /// </summary>
- public static string CachePathFolder = Environment.GetEnvironmentVariable("windir").Substring(0, 1) + @":/UAS_MES/XmlAnalysor/";
- private string oErrMessage;
- public Form1()
- {
- InitializeComponent();
- StartPosition = FormStartPosition.CenterScreen;
- tipform = new Tip();
- }
- public Form1(string iUserName, string iSource)
- {
- tipform = new Tip();
- InitializeComponent();
- iusercode = iUserName;
- isource = iSource.ToUpper();
- StartPosition = FormStartPosition.CenterScreen;
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- tipform.Show();
- CheckForIllegalCrossThreadCalls = false;
- FormBorderStyle = FormBorderStyle.FixedSingle;
- InitDB = new Thread(ConnectDB);
- //添加监控事件
- XmlWatcher.Created += new FileSystemEventHandler(XmlWatcher_Created);
- SetLoadingWindow stw = new SetLoadingWindow(InitDB, "正在启动程序");
- stw.StartPosition = FormStartPosition.CenterScreen;
- stw.ShowDialog();
- List<string> CacheInf = new List<string>();
- DB = (DataTable)dh.ExecuteSql("select ms_pwd,ma_user,ma_address,ma_inneraddress from master", "select");
- Master.DataSource = DB;
- Master.DisplayMember = "ma_user";
- Master.ValueMember = "ma_user";
- //获取缓存信息
- try
- {
- FolderPath.Text = BaseUtil.GetCacheData("FolderPath").ToString();
- BackUpFolderPath.Text = BaseUtil.GetCacheData("BackUpFolderPath").ToString();
- Master.Text = BaseUtil.GetCacheData("Master").ToString();
- AutoStart.Checked = (bool)BaseUtil.GetCacheData("AutoStart");
- }
- catch (Exception ex) { Console.WriteLine(ex.Message); }
- for (int i = 0; i < DB.Rows.Count; i++)
- {
- if (Master.Text == DB.Rows[i]["ma_user"].ToString())
- {
- DataHelper.DBConnectionString = "Connection Timeout=0;Pooling=false;Password=select!#%*(;User ID=" + DB.Rows[i]["ma_user"].ToString() + ";Pooling=false;Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=" + DB.Rows[i]["ma_inneraddress"].ToString() + ")(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)));";
- dh = new DataHelper();
- }
- }
- //获取岗位资源相关信息
- dt = (DataTable)dh.ExecuteSql("select sc_linecode,sc_stepcode,st_badgroupcode from source left join step on sc_stepcode=st_code where sc_code='" + isource + "'", "select");
- if (dt.Rows.Count > 0)
- {
- ilinecode = dt.Rows[0]["sc_linecode"].ToString();
- istepcode = dt.Rows[0]["sc_stepcode"].ToString();
- ibadgroup = dt.Rows[0]["st_badgroupcode"].ToString();
- }
- }
- private void ConnectDB()
- {
- dh = new DataHelper();
- }
- private void StartWatch_Click(object sender, EventArgs e)
- {
- if (FolderPath.Text == "" || BackUpFolderPath.Text == "")
- {
- OperateResult.AppendText("请选择监控文件夹和备份文件夹\n");
- return;
- }
- else
- {
- if (!Directory.Exists(FolderPath.Text))
- {
- OperateResult.AppendText("监控文件夹不存在\n");
- return;
- }
- if (!Directory.Exists(BackUpFolderPath.Text))
- {
- OperateResult.AppendText("备份文件夹不存在\n");
- return;
- }
- }
- if (FolderPath.Text == BackUpFolderPath.Text)
- {
- OperateResult.AppendText("监控文件夹和备份文件夹不能相同\n");
- return;
- }
- for (int i = 0; i < DB.Rows.Count; i++)
- {
- if (Master.Text == DB.Rows[i]["ma_user"].ToString())
- {
- DataHelper.DBConnectionString = "Connection Timeout=0;Pooling=false;Password=select!#%*(;User ID=" + DB.Rows[i]["ma_user"].ToString() + ";Pooling=false;Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=" + DB.Rows[i]["ma_inneraddress"].ToString() + ")(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)));";
- dh = new DataHelper();
- }
- }
- if (!dh.CheckExist("source", "sc_code='" + isource + "' and sc_statuscode='AUDITED'"))
- {
- OperateResult.AppendText("岗位资源错误或者未审核\n");
- return;
- }
- XmlWatcher.Path = FolderPath.Text;
- XmlWatcher.Filter = "*.xml";
- XmlWatcher.EnableRaisingEvents = true;
- BaseUtil.SetCacheData("FolderPath", FolderPath.Text);
- BaseUtil.SetCacheData("BackUpFolderPath", BackUpFolderPath.Text);
- BaseUtil.SetCacheData("Source", isource);
- BaseUtil.SetCacheData("Master", Master.Text);
- BaseUtil.SetCacheData("AutoStart", AutoStart.Checked);
- StartWatch.Enabled = false;
- ChooseFolder.Enabled = false;
- ChooseBackUpFolder.Enabled = false;
- StopWatch.Enabled = true;
- OperateResult.AppendText("开始执行监控\n");
- }
- public void CreateNode(XmlDocument xmlDoc, XmlNode parentNode, string name, string value)
- {
- XmlNode node = xmlDoc.CreateNode(XmlNodeType.Element, name, null);
- node.InnerText = value;
- parentNode.AppendChild(node);
- }
- public void SetAutoRun()
- {
- if (AutoStart.Checked) //设置开机自启动
- {
- string path = Application.ExecutablePath;
- RegistryKey rk = Registry.LocalMachine;
- RegistryKey rk2 = rk.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run");
- rk2.SetValue("UAS_XML解析器.exe", path);
- rk2.Close();
- rk.Close();
- }
- else //取消开机自启动
- {
- string path = Application.ExecutablePath;
- RegistryKey rk = Registry.LocalMachine;
- RegistryKey rk2 = rk.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run");
- rk2.DeleteValue("UAS_XML解析器.exe", false);
- rk2.Close();
- rk.Close();
- }
- }
- private void XmlWatcher_Created(object sender, FileSystemEventArgs e)
- {
- while (true)
- {
- try
- {
- using (Stream stream = File.Open(e.FullPath, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite))
- {
- if (stream != null)
- break;
- }
- }
- catch (Exception ex)
- {
- Console.WriteLine(ex.Message);
- }
- }
- string test_result = "";
- string oMSID = "";
- string oErrMessage = "";
- string testDate = "";
- string testTime = "";
- XmlReader myReader = XmlReader.Create(FolderPath.Text + @"\" + e.Name);
- //获取文件名的序列号,如SA123456.xml
- string sncode = e.Name.Split('.')[0];
- string makecode = "";
- //获取序列号ID最大的工单号
- string iMakeCode = dh.getFieldDataByCondition("makeserial", "ms_makecode", "ms_sncode='" + sncode + "' order by ms_id desc").ToString();
- OperateResult.AppendText("读取文件" + e.Name + "\n");
- //获取采集的项目名称
- List<string> name = new List<string>();
- //获取采集项目的结果
- List<string> result = new List<string>();
- int name_or_result = 0;
- while (myReader.Read())
- {
- if (myReader.NodeType == XmlNodeType.Element && myReader.Name == "test" && myReader.IsStartElement())
- {
- test_result = myReader.GetAttribute("test_result");
- testDate = myReader.GetAttribute("test_date");
- testTime = myReader.GetAttribute("test_time");
- }
- if (myReader.NodeType == XmlNodeType.Text)
- {
- if (name_or_result % 2 == 0)
- {
- name.Add(myReader.Value);
- name_or_result++;
- }
- else
- {
- result.Add(myReader.Value);
- name_or_result++;
- }
- }
- }
- string test_date = testDate + " " + testTime;
- string status = "";
- string errmessage = "";
- bool NoteAlready = false;
- LogicHandler.GetMakeInfo(sncode, out makecode, out status, out errmessage);
- if (ma_code.Text != makecode && makecode != "" && ma_code.Text != "" && status != "2")
- {
- string ChangeMakeCode = MessageBox.Show(this.ParentForm, "序列号" + sncode + "所属工单不同,是否切换?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
- //如果选择不切换赋值当前界面工单
- if (ChangeMakeCode != "Yes")
- {
- makecode = ma_code.Text;
- }
- else
- {
- NoteAlready = true;
- }
- }
- if (LogicHandler.CheckStepSNAndMacode(iMakeCode, isource, sncode, iusercode, out iMakeCode, out oMSID, out oErrMessage))
- {
- if (!NoteAlready)
- {
- if (makecode != ma_code.Text && ma_code.Text != "")
- {
- string ChangeMakeCode = MessageBox.Show(this.ParentForm, "序列号所属工单不同,是否切换?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
- //如果选择不切换赋值当前界面工单
- if (ChangeMakeCode == "Yes")
- {
- ma_code.Text = makecode;
- }
- else
- {
- OperateResult.AppendText(">>请重新采集序列号\n");
- tipform.startthread("请重新采集序列号", test_result);
- return;
- }
- }
- }
- //获取序列号ID最大的工单
- dt = (DataTable)dh.ExecuteSql("select ms_makecode,ms_id from makeserial where ms_sncode='" + sncode + "' order by ms_id desc", "select");
- if (dt.Rows.Count > 0)
- {
- ma_code.Text = dt.Rows[0]["ms_makecode"].ToString();
- makecode = dt.Rows[0]["ms_makecode"].ToString();
- switch (test_result)
- {
- case "OK":
- if (!LogicHandler.SetStepResult(makecode, isource, sncode, "自动过站采集", test_result, iusercode, out oErrMessage))
- {
- OperateResult.AppendText(oErrMessage + "\n");
- tipform.startthread(oErrMessage, test_result);
- return;
- }
- tipform.startthread("序列号 " + sncode + "通过检测", test_result);
- break;
- case "NG":
- //RecordBadInfo(sncode, makecode, e.Name, "", badcode.ToArray(), badlocation.ToArray());
- ////所有的序列号均采集为良品
- //if (!LogicHandler.SetTestNGDetail(sncode, makecode, iusercode, isource, test_result, out oErrMessage))
- //{
- // OperateResult.AppendText(oErrMessage + "\n");
- // tipform.startthread(oErrMessage, test_result);
- // return;
- //}
- tipform.startthread("序列号 " + sncode + "未通过检测", test_result);
- break;
- default:
- break;
- }
- LogicHandler.AutoPassLog(sncode, isource, makecode, test_date, istepcode, ilinecode, e.Name, test_result == "NG" ? "1" : "0", "0");
- }
- }
- else
- {
- OperateResult.AppendText(oErrMessage + "\n");
- tipform.startthread(oErrMessage, "NG");
- return;
- }
- string sql = "insert into STEPTESTDETAIL(std_id,std_makecode,std_sn,std_subclass1,std_testresult,std_indate,";
- sql += "std_rescode,std_testdate,std_testtime,std_date) values(STEPTESTDETAIL_seq.nextval, '" + iMakeCode + "', ";
- sql += "'" + sncode + "',:std_subclass1,:std_testresult, sysdate,'" + isource + "',to_char(to_date('" + testDate + "','YYYY/MM/DD'), 'YYYYMMDD'),";
- sql += "to_char(to_date('" + testTime + "','hh24:mi:ss'), 'hh24miss'),to_date('" + test_date + "','YYYY/MM/DD hh24:mi:ss'))";
- dh.BatchInsert(sql, new string[] { "std_subclass1", "std_testresult" }, name.ToArray(), result.ToArray());
- myReader.Close();
- FileInfo file = new FileInfo(FolderPath.Text + @"\" + e.Name);
- if (file.Exists)
- {
- try
- {
- for (int i = 1; i <= 20; i++)
- {
- if (!File.Exists(BackUpFolderPath.Text + @"\" + e.Name))
- {
- file.MoveTo(BackUpFolderPath.Text + @"\" + e.Name);
- OperateResult.AppendText("成功解析文件" + e.Name + "\n");
- //tipform.startthread(e.Name);
- break;
- }
- else if (!File.Exists(BackUpFolderPath.Text + @"\" + e.Name.Split('.')[0] + "(" + i + ")" + "." + e.Name.Split('.')[1]))
- {
- file.MoveTo(BackUpFolderPath.Text + @"\" + e.Name.Split('.')[0] + "(" + i + ")" + "." + e.Name.Split('.')[1]);
- OperateResult.AppendText("成功解析文件" + e.Name + "\n");
- //tipform.startthread(e.Name);
- break;
- }
- }
- }
- catch (Exception ex)
- {
- OperateResult.AppendText(e.Name + ex.Message + "\n");
- }
- }
- }
- private void StopWatch_Click(object sender, EventArgs e)
- {
- XmlWatcher.EnableRaisingEvents = false;
- StartWatch.Enabled = true;
- ChooseFolder.Enabled = true;
- ChooseBackUpFolder.Enabled = true;
- StopWatch.Enabled = false;
- OperateResult.AppendText("停止执行监控\n");
- }
- private void Clean_Click(object sender, EventArgs e)
- {
- OperateResult.Clear();
- }
- private void ChooseFolder_Click(object sender, EventArgs e)
- {
- FolderBrowserDialog folder = new FolderBrowserDialog();
- folder.Description = "选择监控文件夹";
- DialogResult result = folder.ShowDialog();
- if (result == DialogResult.OK)
- {
- FolderPath.Text = folder.SelectedPath;
- }
- }
- private void ReadNodeFromXML(string FileName)
- {
- }
- private void ChooseBackUpFolder_Click(object sender, EventArgs e)
- {
- FolderBrowserDialog folder = new FolderBrowserDialog();
- folder.Description = "选择备份文件夹";
- DialogResult result = folder.ShowDialog();
- if (result == DialogResult.OK)
- {
- BackUpFolderPath.Text = folder.SelectedPath;
- }
- }
- private void Form1_FormClosing(object sender, FormClosingEventArgs e)
- {
- string ExitConfirm = MessageBox.Show(this, "确认退出?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
- if (ExitConfirm != "Yes")
- {
- WindowState = FormWindowState.Minimized;
- e.Cancel = true;
- }
- }
- private void AutoStart_CheckedChanged(object sender, EventArgs e)
- {
- SetAutoRun();
- }
-
- }
- }
|