public void addHeart(int num, string name, string effect, int price, float benefit)
    {
        HeartInfo Heart_ = new HeartInfo();

        Heart_.num     = num;
        Heart_.name    = name;
        Heart_.effect  = effect;
        Heart_.price   = price;
        Heart_.benefit = benefit;

        heartList.Add(Heart_);
    }
Exemplo n.º 2
0
        /// <summary>
        /// 通信异常处理
        /// </summary>
        /// <param name="i">CommonFunction.heart[i].Id和 CommonFunction.heart[i].Type </param>
        private void Message_f(HeartInfo hi)
        {
            speech.Speak("警告!" + Environment.NewLine + "第" + hi.Id + "台电脑的" + hi.Type + "平台通信异常");
            DialogResult dr = MessageBox.Show("第" + hi.Id + "台电脑的" + hi.Type + "平台通信异常" + Environment.NewLine + "是否暂时禁用此检测平台",
                                              "警告!",
                                              MessageBoxButtons.YesNo,
                                              MessageBoxIcon.Error,
                                              MessageBoxDefaultButton.Button1,
                                              MessageBoxOptions.DefaultDesktopOnly);

            if (dr == DialogResult.Yes && hi.State.Equals("异常"))
            {
                hi.State = "禁用";
                //修改检测平台状态为异常
                switch (hi.Type)
                {
                case "命令检测":
                    Myadapter_p.UpdatePlatCom("异常", hi.Id);
                    break;

                case "Ic检测":
                    Myadapter_p.UpdatePlatIc("异常", hi.Id);
                    break;

                case "初检模式表":
                    Myadapter_p.UpdatePlatChu_msb("异常", hi.Id);
                    break;

                case "初检修正仪":
                    Myadapter_p.UpdatePlatChu_xzy("异常", hi.Id);
                    break;

                case "初检超声波":
                    Myadapter_p.UpdatePlatChu_csb("异常", hi.Id);
                    break;

                case "终检":
                    Myadapter_p.UpdatePlatZho("异常", hi.Id);
                    break;
                }
                Thread.Sleep(50);
                CommonFunction.platm.ChangePlat();
            }
            else
            {
                hi.State = "正常";
            }
        }
Exemplo n.º 3
0
 /// <summary>
 /// 返回心跳类型
 /// </summary>
 /// <param name="dr"></param>
 /// <param name="type1">PlatChus</param>
 /// <param name="type2">PlatChup</param>
 /// <returns></returns>
 private HeartInfo Hti(DataRow dr, string type1, string type2, string type3)
 {
     if (!dr[type1].ToString().Equals("空闲"))
     {
         return(null);
     }
     else
     {
         HeartInfo temp = new HeartInfo
         {
             Id    = (int)dr["Id"],
             IP    = dr["IP"].ToString(),
             Type  = type3,
             Port  = dr[type2].ToString(),
             Ke_al = 00,
             State = "正常"
         };
         return(temp);
     }
 }
Exemplo n.º 4
0
        /// <summary>
        /// datable转化为list,应用于心跳机制
        /// </summary>
        /// <param name="ds">dataset</param>
        /// <param name="index">datable的索引</param>
        /// <returns></returns>
        private List <HeartInfo> Dt2IList(DataTable dt)
        {
            List <HeartInfo> result = new List <HeartInfo>();

            foreach (DataRow dr in dt.Rows)
            {
                HeartInfo temp = new HeartInfo();
                temp = Hti(dr, "PlatComs", "PlatComp", "命令检测");
                if (temp != null)
                {
                    result.Add(temp);
                }
                temp = Hti(dr, "PlatIcs", "PlatIcp", "Ic检测");
                if (temp != null)
                {
                    result.Add(temp);
                }
                temp = Hti(dr, "PlatChus_msb", "PlatChup_msb", "初检模式表");
                if (temp != null)
                {
                    result.Add(temp);
                }
                temp = Hti(dr, "PlatChus_xzy", "PlatChup_xzy", "初检修正仪");
                if (temp != null)
                {
                    result.Add(temp);
                }
                temp = Hti(dr, "PlatChus_csb", "PlatChup_csb", "初检超声波");
                if (temp != null)
                {
                    result.Add(temp);
                }
                temp = Hti(dr, "PlatZhos", "PlatZhop", "终检");
                if (temp != null)
                {
                    result.Add(temp);
                }
            }
            return(result);
        }
Exemplo n.º 5
0
        /// <summary>
        /// id+ip+port+type+入网/出网(1+4+2+1+1)
        /// </summary>
        /// <param name="session"></param>
        /// <param name="requestInfo"></param>
        public override void ExecuteCommand(MySession session, MyRequestInfo requestInfo)
        {
            lock (CommonFunction.obj_66)
            {
                string re = "00";
                bool   f;
                bool   isallowexit;
                Myadapter_p = new Dt_PlateInfoTableAdapter();
                myadapter_w = new DT_WaringPlatTableAdapter();
                var    info = requestInfo;
                int    id   = Convert.ToInt32(info.Data.Substring(2, 2), 16);
                string ip   = DataHelper.Str2IP(info.Data.Substring(4, 8));
                string port = Convert.ToInt32(info.Data.Substring(12, 4), 16).ToString();
                string type = info.Data.Substring(16, 2);
                string cmd  = info.Data.Substring(18, 2);
                //入网 根据id查询数据库(有,更新数据)(没有,插入数据)
                //出网 根据id查询数据库(有,更新数据) (没有,不做操作) 检查其状态是否可以立即出网,并回复。若不可以标记状态为待出网,通知其下次上传。
                //更新platinfo 和 heart 入网成功加入heart,出网成功移除heart,dictionary存储heartinfo
                //加锁,当执行01操作时不能执行出网操作,避免
                if (cmd.Equals("AA"))
                {
                    //入网
                    try
                    {
                        pl = Replat(id);
                        if (pl == null)
                        {
                            pl = new PlatInfo();
                            f  = false;
                        }
                        else
                        {
                            f = true;
                        }
                        switch (type)
                        {
                        case "01":
                            heart       = new HeartInfo(id, "命令检测", ip, port, 00, "正常");
                            pl.PlatComs = "空闲";
                            pl.PlatComp = port;
                            break;

                        case "02":
                            heart      = new HeartInfo(id, "IC卡卡控", ip, port, 00, "正常");
                            pl.PlatIcs = "空闲";
                            pl.PlatIcp = port;
                            break;

                        case "03":
                            heart           = new HeartInfo(id, "膜式表初检", ip, port, 00, "正常");
                            pl.PlatChus_msb = "空闲";
                            pl.PlatChup_msb = port;
                            break;

                        case "04":
                            heart           = new HeartInfo(id, "修正仪初检", ip, port, 00, "正常");
                            pl.PlatChus_xzy = "空闲";
                            pl.PlatChup_xzy = port;
                            break;

                        case "05":
                            heart           = new HeartInfo(id, "超声波初检", ip, port, 00, "正常");
                            pl.PlatChus_csb = "空闲";
                            pl.PlatChup_csb = port;
                            break;

                        case "06":
                            heart       = new HeartInfo(id, "终检", ip, port, 00, "正常");
                            pl.PlatZhos = "空闲";
                            pl.PlatZhop = port;
                            break;
                        }
                        pl.IP = ip;
                        pl.id = id;
                        if (f)
                        {
                            Myadapter_p.UpdatePlat(
                                pl.IP,
                                pl.PlatComs,
                                pl.PlatIcs,
                                pl.PlatChus_msb,
                                pl.PlatChus_xzy,
                                pl.PlatChus_csb,
                                pl.PlatZhos,
                                pl.PlatComp,
                                pl.PlatIcp,
                                pl.PlatChup_msb,
                                pl.PlatChup_xzy,
                                pl.PlatChup_csb,
                                pl.PlatZhop,
                                pl.id);
                        }
                        else
                        {
                            Myadapter_p.InsertPlat(
                                pl.id,
                                pl.IP,
                                pl.PlatComs,
                                pl.PlatIcs,
                                pl.PlatChus_msb,
                                pl.PlatChus_xzy,
                                pl.PlatChus_csb,
                                pl.PlatZhos,
                                pl.PlatComp,
                                pl.PlatIcp,
                                pl.PlatChup_msb,
                                pl.PlatChup_xzy,
                                pl.PlatChup_csb,
                                pl.PlatZhop);
                        }
                        //入网成功
                        CommonFunction.platInfos[id]     = pl;
                        CommonFunction.hearts[id + type] = heart;
                        re = "AA";
                        //此检测平台是否为异常的平台,修改数据库
                        DataTable dtw = myadapter_w.GetDataBy_it(id.ToString(), heart.Type, 0);
                        if (dtw.Rows.Count != 0)
                        {
                            myadapter_w.UpdateMP(1, DateTime.Now, heart.Type, id.ToString(), 0);
                            PostLl(id.ToString(), heart.Type, "正常");
                        }
                        LogHelper.Info(id + " " + type + " 入网成功");
                    }
                    catch (Exception e)
                    {
                        LogHelper.Error("入网失败" + e);
                        re = "55";
                    }
                }
                else if (cmd.Equals("55"))
                {
                    //出网
                    lock (CommonFunction.obj_44)
                    {
                        try
                        {
                            pl = Replat(id);
                            if (pl != null)
                            {
                                switch (type)
                                {
                                case "01":
                                    if (pl.PlatComs.Equals("空闲") || pl.PlatComs.Equals("待出网"))
                                    {
                                        pl.PlatComs = "未启用";
                                        isallowexit = true;
                                    }
                                    else
                                    {
                                        pl.PlatComs = "待出网";
                                        isallowexit = false;
                                    }
                                    break;

                                case "02":
                                    if (pl.PlatIcs.Equals("空闲") || pl.PlatIcs.Equals("待出网"))
                                    {
                                        pl.PlatIcs  = "未启用";
                                        isallowexit = true;
                                    }
                                    else
                                    {
                                        pl.PlatIcs  = "待出网";
                                        isallowexit = false;
                                    }
                                    break;

                                case "03":
                                    if (pl.PlatChus_msb.Equals("空闲") || pl.PlatChus_msb.Equals("待出网"))
                                    {
                                        pl.PlatChus_msb = "未启用";
                                        isallowexit     = true;
                                    }
                                    else
                                    {
                                        pl.PlatChus_msb = "待出网";
                                        isallowexit     = false;
                                    }
                                    break;

                                case "04":
                                    if (pl.PlatChus_xzy.Equals("空闲") || pl.PlatChus_xzy.Equals("待出网"))
                                    {
                                        pl.PlatChus_xzy = "未启用";
                                        isallowexit     = true;
                                    }
                                    else
                                    {
                                        pl.PlatChus_xzy = "待出网";
                                        isallowexit     = false;
                                    }
                                    break;

                                case "05":
                                    if (pl.PlatChus_csb.Equals("空闲") || pl.PlatChus_csb.Equals("待出网"))
                                    {
                                        pl.PlatChus_csb = "未启用";
                                        isallowexit     = true;
                                    }
                                    else
                                    {
                                        pl.PlatChus_csb = "待出网";
                                        isallowexit     = false;
                                    }
                                    break;

                                case "06":
                                    if (pl.PlatZhos.Equals("空闲") || pl.PlatZhos.Equals("待出网"))
                                    {
                                        pl.PlatZhos = "未启用";
                                        isallowexit = true;
                                    }
                                    else
                                    {
                                        pl.PlatZhos = "待出网";
                                        isallowexit = false;
                                    }
                                    break;

                                default:
                                    isallowexit = false;
                                    break;
                                }
                                Myadapter_p.UpdatePlat(
                                    pl.IP,
                                    pl.PlatComs,
                                    pl.PlatIcs,
                                    pl.PlatChus_msb,
                                    pl.PlatChus_xzy,
                                    pl.PlatChus_csb,
                                    pl.PlatZhos,
                                    pl.PlatComp,
                                    pl.PlatIcp,
                                    pl.PlatChup_msb,
                                    pl.PlatChup_xzy,
                                    pl.PlatChup_csb,
                                    pl.PlatZhop,
                                    pl.id);
                                CommonFunction.platInfos[id] = pl;
                                if (isallowexit)
                                {
                                    CommonFunction.hearts.Remove(id + type);
                                    re = "AA";
                                    LogHelper.Info(id + " " + type + " 出网成功");
                                }
                                else
                                {
                                    re = "BB";
                                }
                            }
                        }
                        catch (Exception e)
                        {
                            LogHelper.Error("出网失败" + e);
                            re = "55";
                        }
                    }
                }
                try
                {
                    //回复检测平台,入网成功或失败,出网成功或失败或等一次检测
                    IPAddress Ip      = IPAddress.Parse(ip);
                    int       Port    = Convert.ToInt32(port);
                    string    send_66 = DownCommond.GenerateSendFrame("66" + re, info, true, false);
                    Socket    socket  = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                    socket.Connect(Ip, Port);
                    socket.Send(DataHelper.Str2Byte(send_66));
                    socket.Close();
                    LogHelper.Info("回复66:" + send_66);
                }
                catch (Exception e)
                {
                    LogHelper.Error("无法连接入网检测平台" + e);
                }
            }
        }