BulkDataServiceClientAdv.cs 37.4 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Collections.ObjectModel;

namespace FLY.Thick.BulkDataModule
{
    public class BulkDataServiceClientAdv
    {
        public IBulkDataService bulkdata;

        public BulkDataServiceClientAdv(IBulkDataService bulkdata)
            : base()
        {
            this.bulkdata = bulkdata;
            bulkdata.PropertyChanged+=new PropertyChangedEventHandler(BulkdataClient_PropertyChanged);
            bulkdata = new BulkDataServiceClient();
        }

        void BulkdataClient_PropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            if (e.PropertyName == "IsReady")
            {
                if (bulkdata.IsReady)
                {
                    //所有都要向服务器重新注册
                    List<BulkDataGraph> send = new List<BulkDataGraph>();

                    foreach (BulkDataGraph graph in mGraphs)
                    {
                        if (!send.Exists(graph.IsEquals))
                        {
                            Regist(graph);
                            send.Add(graph);
                        }
                    }
                }
            }
        }

        public abstract class BulkDataGraph : INotifyPropertyChanged
        {
            /// <summary>
            /// 注册事件
            /// </summary>
            public event Action<BulkDataGraph> RegistEvent;

            /// <summary>
            /// 通知界面已经更新了,重画界面
            /// </summary>
            /// <param name="obj"></param>
            public event Action<BulkDataGraph> UpdateEvent;

            #region 参数


            private int mix;
            /// <summary>
            /// 混合数
            /// </summary>
            public int Mix
            {
                get
                {
                    return mix;
                }
                set
                {
                    if (mix != value)
                    {
                        mix = value;

                        NotifyPropertyChanged("Mix");
                        NotifyRegistEvent();
                    }
                }
            }
            #endregion

            public abstract void CopyTo(BulkDataGraph g);
            public abstract void Update(object obj);
            public abstract bool IsEquals(object obj);

            protected void NotifyRegistEvent()
            {
                RegistEvent?.Invoke(this);
            }
            protected void NotifyUpdateEvent()
            {
                UpdateEvent?.Invoke(this);
            }

            #region INotifyPropertyChanged 成员
            protected void NotifyPropertyChanged(string PropertyName)
            {
                if (this.PropertyChanged != null)
                    this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs(PropertyName));
            }
            public event PropertyChangedEventHandler PropertyChanged;
            #endregion
        }
        /// <summary>
        /// 横向扫描数据请求与结果
        /// </summary>
        public class BulkDataGraphFrame : BulkDataGraph
        {
            public override string ToString()
            {
                return "BM = " + BM.ToString()+"(" + BookMark.ToString() + ")";
            }
            public BulkDataGraphFrame()
            {
                //this.RegistEvent += new Action<BulkDataGraph>(delegate(BulkDataGraph obj) { Frame.Clear(); });
            }


            #region 参数
            private int bm;
            /// <summary>
            /// 标记, 当bm &gt;0 为bookmark,当bm &lt;=0 为往前面数
            /// </summary>
            public int BM
            {
                get
                {
                    return bm;
                }
                set
                {

                    if (bm != value)
                    {
                        bm = value;
                        NotifyPropertyChanged("BM");
                        NotifyRegistEvent();
                    }
                }
            }
            #endregion
            #region 返回结果
            private FR_DATA_TYPE type;
            /// <summary>
            /// 结果.数据是否有效
            /// </summary>
            public FR_DATA_TYPE Type
            {
                get
                {
                    return type;
                }
                set
                {
                    type = value;
                    NotifyPropertyChanged("Type");
                }
            }

            private int bookmark;
            /// <summary>
            /// 结果对应的 bookmark
            /// </summary>
            public int BookMark
            {
                get
                {
                    return bookmark;
                }
                set
                {
                    bookmark = value;
                    NotifyPropertyChanged("BookMark");
                    NotifyPropertyChanged("Info");
                }
            }
            private DateTime dt;
            /// <summary>
            /// 结果对应的 时间
            /// </summary>
            public DateTime TimeMark
            {
                get
                {
                    return dt;
                }
                set
                {
                    dt = value;
                    NotifyPropertyChanged("TimeMark");
                    NotifyPropertyChanged("Info");
                }
            }
            public string Info
            {
                get
                {
                    return "<" + BookMark.ToString() + "> " + TimeMark.ToShortTimeString();
                }
            }
            private ObservableCollection<int> frame = new ObservableCollection<int>();
            /// <summary>
            /// 会动态更新,界面只要绑定就好了
            /// </summary>
            public ObservableCollection<int> Frame
            {
                get
                {
                    return frame;
                }
            }
            #endregion
            /// <summary>
            /// 复制数据到 g
            /// </summary>
            /// <param name="g"></param>
            public override void CopyTo(BulkDataGraph g)
            {
                BulkDataGraphFrame graph = g as BulkDataGraphFrame;
                graph.BookMark = BookMark;
                graph.TimeMark = TimeMark;
                graph.Type = Type;
                graph.Frame.Clear();
                foreach (var i in Frame)
                {
                    graph.Frame.Add(i);
                }
                NotifyUpdateEvent();
            }

            public override bool IsEquals(object obj)
            {
                if (obj is BulkDataGraphFrame)
                {
                    BulkDataGraphFrame g = obj as BulkDataGraphFrame;

                    if ((g.BM == BM) && (g.Mix == Mix))
                    {
                        return true;
                    }
                    return false;
                }
                else if (obj is BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataReturn)
                {
                    BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataReturn g = obj as BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataReturn;
                    if ((g.bm == BM) && (g.mix == Mix))
                    {
                        return true;
                    }
                    return false;
                }
                return false;
            }
            public override void Update(object obj)
            {
                if (obj is BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataReturn)
                {
                    BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataReturn pack = obj as BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataReturn;

                    BookMark = pack.bookmark;//结果对应的 bookmark
                    TimeMark = pack.dt;//结果对应的 时间
                    Type = pack.type;//结果.数据是否有效
                    if (BookMark == 1) 
                    {
                    
                    }
                    if (BookMark != -1)
                    {
                        for (int i = Frame.Count - 1; i < pack.toBoltIndex; i++)
                        {
                            Frame.Add(Misc.MyBase.NULL_VALUE);
                        }
                        for (int i = 0; i < pack.result.Length; i++)
                        {
                            Frame[pack.fromBoltIndex + i] = pack.result[i];
                        }
                    }
                    else
                    {
                        Frame.Clear();
                    }
                    NotifyUpdateEvent();
                }
            }
        }


        /// <summary>
        /// 横向扫描数据请求与结果
        /// </summary>
        public class BulkDataGraphFrameMix : BulkDataGraph
        {
            public override string ToString()
            {
                return "BM = " + BM.ToString() + "(" + BookMark.ToString() + ")";
            }
            public BulkDataGraphFrameMix()
            {
                //this.RegistEvent += new Action<BulkDataGraph>(delegate(BulkDataGraph obj) { Frame.Clear(); });
            }


            #region 参数
            private int bm;
            /// <summary>
            /// 标记, 当bm &gt;0 为bookmark,当bm &lt;=0 为往前面数
            /// </summary>
            public int BM
            {
                get
                {
                    return bm;
                }
                set
                {

                    if (bm != value)
                    {
                        bm = value;
                        NotifyPropertyChanged("BM");
                        NotifyRegistEvent();
                    }
                }
            }

            private DateTime start_dt;
            /// <summary>
            /// 要求的开始时间
            /// </summary>
            public DateTime StartDT
            {
                get
                {
                    return start_dt;
                }
                set
                {
                    start_dt = value;
                    NotifyPropertyChanged("StartDT");
                    NotifyRegistEvent();
                }
            }




            #endregion
            #region 返回结果
            private FR_DATA_TYPE type;
            /// <summary>
            /// 结果.数据是否有效
            /// </summary>
            public FR_DATA_TYPE Type
            {
                get
                {
                    return type;
                }
                set
                {
                    type = value;
                    NotifyPropertyChanged("Type");
                }
            }

            private int bookmark;
            /// <summary>
            /// 结果对应的 bookmark
            /// </summary>
            public int BookMark
            {
                get
                {
                    return bookmark;
                }
                set
                {
                    bookmark = value;
                    NotifyPropertyChanged("BookMark");
                    NotifyPropertyChanged("Info");
                }
            }
            private DateTime dt;
            /// <summary>
            /// 结果对应的 时间
            /// </summary>
            public DateTime TimeMark
            {
                get
                {
                    return dt;
                }
                set
                {
                    dt = value;
                    NotifyPropertyChanged("TimeMark");
                    NotifyPropertyChanged("Info");
                }
            }
            private DateTime act_start_dt;
            /// <summary>
            /// 实际的开始时间
            /// </summary>
            public DateTime ActStartDT
            {
                get
                {
                    return act_start_dt;
                }
                set
                {
                    act_start_dt = value;
                    NotifyPropertyChanged("ActStartDT");
                    NotifyPropertyChanged("Info");
                }
            }
            public string Info
            {
                get
                {
                    if (ActStartDT != TimeMark)
                    {
                        return "<" + BookMark.ToString() + "> " + ActStartDT.ToShortTimeString() + "-" + TimeMark.ToShortTimeString();
                    }
                    else
                    {
                        return "<" + BookMark.ToString() + "> " + TimeMark.ToShortTimeString();
                    }
                }
            }
            private ObservableCollection<FrameDataCell> frame = new ObservableCollection<FrameDataCell>();
            /// <summary>
            /// 会动态更新,界面只要绑定就好了
            /// </summary>
            public ObservableCollection<FrameDataCell> Frame
            {
                get
                {
                    return frame;
                }
            }
            #endregion
            /// <summary>
            /// 复制数据到 g
            /// </summary>
            /// <param name="g"></param>
            public override void CopyTo(BulkDataGraph g)
            {
                BulkDataGraphFrameMix graph = g as BulkDataGraphFrameMix;
                graph.BookMark = BookMark;
                graph.TimeMark = TimeMark;
                graph.StartDT = StartDT;
                graph.ActStartDT = ActStartDT;
                graph.Type = Type;
                graph.Frame.Clear();
                foreach (var i in Frame)
                {
                    graph.Frame.Add(i);
                }
                NotifyUpdateEvent();
            }

            public override bool IsEquals(object obj)
            {
                if (obj is BulkDataGraphFrameMix)
                {
                    BulkDataGraphFrameMix g = obj as BulkDataGraphFrameMix;

                    if ((g.BM == BM) && (g.Mix == Mix) && (g.StartDT == StartDT))
                    {
                        return true;
                    }
                    return false;
                }
                else if (obj is Pack_CallGetFrameDataMixReponse)
                {
                    Pack_CallGetFrameDataMixReponse g = obj as Pack_CallGetFrameDataMixReponse;
                    if ((g.bm == BM) && (g.mix == Mix) && (g.start_dt == StartDT))
                    {
                        return true;
                    }
                    return false;
                }
                return false;
            }
            public override void Update(object obj)
            {
                if (obj is Pack_CallGetFrameDataMixReponse)
                {
                    Pack_CallGetFrameDataMixReponse pack = obj as Pack_CallGetFrameDataMixReponse;

                    BookMark = pack.bookmark;//结果对应的 bookmark
                    TimeMark = pack.dt;//结果对应的 时间
                    ActStartDT = pack.act_startDt;//结果对应的 实际开始时间
                    Type = pack.type;//结果.数据是否有效
                    if (BookMark == 1)
                    {

                    }
                    if (BookMark != -1)
                    {
                        for (int i = Frame.Count - 1; i < pack.toBoltIndex; i++)
                        {
                            Frame.Add(new FrameDataCell() { Avg = Misc.MyBase.NULL_VALUE, Sigma = Misc.MyBase.NULL_VALUE });
                        }
                        for (int i = 0; i < pack.result.Length; i++)
                        {
                            Frame[pack.fromBoltIndex + i] = pack.result[i];
                        }
                    }
                    else
                    {
                        Frame.Clear();
                    }
                    NotifyUpdateEvent();
                }
            }
        }
        /// <summary>
        /// 纵向扫描数据
        /// </summary>
        public class BulkDataGraphTrend : BulkDataGraph
        {
            public override string ToString()
            {
                return "[" + FromBoltNo.ToString() + "," + ToBoltNo.ToString() + "]";
            }
            public BulkDataGraphTrend()
            {
                this.RegistEvent += new Action<BulkDataGraph>(delegate(BulkDataGraph obj) { Frame.Clear(); });
            }


            #region 参数
            private int len = 120;
            /// <summary>
            /// 获取的长度, types最大体积保持在 len内
            /// </summary>
            public int Len
            {
                get
                {
                    return len;

                }
                set
                {

                    len = value;
                    NotifyPropertyChanged("Len");
                    NotifyRegistEvent();

                }

            }

            private int fromBoltNo;
            /// <summary>
            /// 开始分区no
            /// </summary>
            public int FromBoltNo
            {
                set
                {
                    if (fromBoltNo != value)
                    {
                        fromBoltNo = value;
                        NotifyPropertyChanged("FromBoltNo");

                        NotifyRegistEvent();
                    }
                }
                get
                {
                    return fromBoltNo;
                }
            }
            private int toBoltNo;
            /// <summary>
            /// /结束分区no
            /// </summary>
            public int ToBoltNo
            {
                set
                {
                    if (toBoltNo != value)
                    {
                        toBoltNo = value;
                        NotifyPropertyChanged("ToBoltIndex");
                        NotifyRegistEvent();
                    }
                }
                get
                {
                    return toBoltNo;
                }
            }
            #endregion
            #region 返回结果
            private ObservableCollection<TrendDataCell> frame = new ObservableCollection<TrendDataCell>();//
            /// <summary>
            /// 会动态更新,界面只要绑定就好了
            /// </summary>
            public ObservableCollection<TrendDataCell> Frame
            {
                get
                {
                    return frame;
                }
            }
            #endregion

            public override bool IsEquals(object obj)
            {
                if (obj is BulkDataGraphTrend)
                {
                    BulkDataGraphTrend g = obj as BulkDataGraphTrend;
                    if ((g.Mix == Mix) &&
                        (g.Len == Len))
                    {
                        if (((g.FromBoltNo == Misc.MyBase.NULL_VALUE) || (g.ToBoltNo == Misc.MyBase.NULL_VALUE)) &&
                            ((FromBoltNo == Misc.MyBase.NULL_VALUE) || (ToBoltNo == Misc.MyBase.NULL_VALUE)))
                        {
                            return true;
                        }

                        if ((g.FromBoltNo == FromBoltNo) &&
                            (g.ToBoltNo == ToBoltNo))
                        {
                            return true;
                        }
                        return false;
                    }

                    return false;
                }
                else if (obj is BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataReturn)
                {
                    BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataReturn g = obj as BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataReturn;
                    if ((g.mix == Mix) &&
                        (g.len == Len))
                    {
                        if (((g.fromBoltNo == Misc.MyBase.NULL_VALUE) || (g.toBoltNo == Misc.MyBase.NULL_VALUE)) &&
                            ((FromBoltNo == Misc.MyBase.NULL_VALUE) || (ToBoltNo == Misc.MyBase.NULL_VALUE)))
                        {
                            return true;
                        }

                        if ((g.fromBoltNo == FromBoltNo) &&
                            (g.toBoltNo == ToBoltNo))
                        {
                            return true;
                        }
                        return false;
                    }
                    return false;
                }
                return false;
            }
            public override void Update(object obj)
            {
                if (obj is BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataReturn)
                {
                    BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataReturn pack = obj as BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataReturn;
                    if(pack.result!=null)
                    {
                        //接收的数据是从后先前排的。 pack.result[0] 是最新的数据
                        //Frame 是从前向后排的,Frame.Last() 是最新的数据

                        //position pack.result 这数列放入 Frame 的位置
                        int position = Frame.Count - 1 - (pack.result.Length - 1 - pack.edit_position);
                        if (position < 0) position = 0;

                        int cnt = Frame.Count;

                        for (int i = position, j = 0; j < pack.result.Length; i++, j++)
                        {
                            int idx = pack.result.Length - 1 - j;
                            if (i < cnt)
                            {
                                Frame[i] = pack.result[idx];
                            }
                            else
                            {
                                Frame.Add(pack.result[idx]);
                            }
                        }

                        while (Frame.Count > Len)
                        {
                            Frame.RemoveAt(0);
                        }
                    }
                    else
                    {
                        Frame.Clear();
                    }
                    NotifyUpdateEvent();
                }
            }
            public override void CopyTo(BulkDataGraph g)
            {
                BulkDataGraphTrend graph = g as BulkDataGraphTrend;
                graph.Frame.Clear();
                foreach (var i in Frame)
                {
                    graph.Frame.Add(i);
                }
                NotifyUpdateEvent();
            }
        }
        /// <summary>
        /// 横向扫描数据请求与结果 最新数据
        /// </summary>
        public class BulkDataGraphNewFrame : BulkDataGraph
        {
            public override string ToString()
            {
                return "(" + BookMark.ToString() + ")";
            }
            public BulkDataGraphNewFrame()
            {
                //this.RegistEvent += new Action<BulkDataGraph>(delegate(BulkDataGraph obj) { Frame.Clear(); });
            }

            #region 参数

            #endregion
            #region 返回结果
            private FR_DATA_TYPE type;
            /// <summary>
            /// 结果.数据是否有效
            /// </summary>
            public FR_DATA_TYPE Type
            {
                get
                {
                    return type;
                }
                set
                {
                    type = value;
                    NotifyPropertyChanged("Type");
                }
            }

            private int bookmark;
            /// <summary>
            /// 结果对应的 bookmark
            /// </summary>
            public int BookMark
            {
                get
                {
                    return bookmark;
                }
                set
                {
                    bookmark = value;
                    NotifyPropertyChanged("BookMark");
                    NotifyPropertyChanged("Info");
                }
            }
            private DateTime dt;
            /// <summary>
            /// 结果对应的 时间
            /// </summary>
            public DateTime TimeMark
            {
                get
                {
                    return dt;
                }
                set
                {
                    dt = value;
                    NotifyPropertyChanged("TimeMark");
                    NotifyPropertyChanged("Info");
                }
            }
            public string Info
            {
                get
                {
                    return "<" + BookMark.ToString() + "> " + TimeMark.ToShortTimeString();
                }
            }
            private ObservableCollection<int> frame = new ObservableCollection<int>();
            /// <summary>
            /// 会动态更新,界面只要绑定就好了
            /// </summary>
            public ObservableCollection<int> Frame
            {
                get
                {
                    return frame;
                }
            }
            #endregion
            /// <summary>
            /// 复制数据到 g
            /// </summary>
            /// <param name="g"></param>
            public override void CopyTo(BulkDataGraph g)
            {
                BulkDataGraphNewFrame graph = g as BulkDataGraphNewFrame;
                graph.BookMark = BookMark;
                graph.TimeMark = TimeMark;
                graph.Type = Type;
                graph.Frame.Clear();
                foreach (var i in Frame)
                {
                    graph.Frame.Add(i);
                }
                NotifyUpdateEvent();
            }

            public override bool IsEquals(object obj)
            {
                if (obj is BulkDataGraphNewFrame)
                {
                    BulkDataGraphNewFrame g = obj as BulkDataGraphNewFrame;

                    if (g.Mix == Mix)
                    {
                        return true;
                    }
                    return false;
                }
                else if (obj is BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataReturn)
                {
                    BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataReturn g = obj as BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataReturn;
                    if (g.mix == Mix)
                    {
                        return true;
                    }
                    return false;
                }
                return false;
            }
            public override void Update(object obj)
            {
                if (obj is BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataReturn)
                {
                    BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataReturn pack = obj as BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataReturn;

                    BookMark = pack.bookmark;//结果对应的 bookmark
                    TimeMark = pack.dt;//结果对应的 时间
                    Type = pack.type;//结果.数据是否有效
                    if(pack.result!=null && pack.result.Length>0)
                   {
                        for (int i = 0; i < pack.result.Length; i++)
                        {
                            while (i >= Frame.Count())
                                Frame.Add(Misc.MyBase.NULL_VALUE);
                            
                            Frame[i] = pack.result[i];
                        }
                    }
                    else
                    {
                        Frame.Clear();
                    }
                    NotifyUpdateEvent();
                }
            }
        }
        ObservableCollection<BulkDataGraph> mGraphs = new ObservableCollection<BulkDataGraph>();

        void Regist(BulkDataGraph graph) 
        {
            if (graph is BulkDataGraphFrame) 
            {
                BulkDataGraphFrame graph_frame = graph as BulkDataGraphFrame;
                bulkdata.GetFrameData(
                    new BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataParam()
                    {
                        NeedPush = true,
                        bm = graph_frame.BM,
                        mix = graph_frame.Mix
                    },
                    delegate(object AsyncState, object retData)
                    {
                        BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataReturn reponse = retData as BULKDATA_OBJ_INTERFACE.Pack_CallGetFrameDataReturn;
                        //找出所有graph,更新
                     
                        var gl = from g in mGraphs where g.IsEquals(reponse) select g;
                        if (gl.Count() == 0)
                        {
                            //接收到没有要求的推送,取消推送请求
                            UnRegist(
                            new BulkDataGraphFrame()
                            {
                                Mix = reponse.mix,
                                BM = reponse.bm
                            });
                        }
                        else
                        {
                            foreach (BulkDataGraphFrame g in gl)
                            {
                                g.Update(reponse);
                            }
                        }
                    }, this);
            }
            else if (graph is BulkDataGraphFrameMix)
            {
                BulkDataGraphFrameMix graph_frame = graph as BulkDataGraphFrameMix;
                bulkdata.GetFrameDataMix(
                    new Pack_CallGetFrameDataMixRequest()
                    {
                        NeedPush = true,
                        bm = graph_frame.BM,
                        mix = graph_frame.Mix,
                        start_dt = graph_frame.StartDT
                    },
                    delegate (object AsyncState, object retData)
                    {
                        Pack_CallGetFrameDataMixReponse reponse = retData as Pack_CallGetFrameDataMixReponse;
                        //找出所有graph,更新

                        var gl = from g in mGraphs where g.IsEquals(reponse) select g;
                        if (gl.Count() == 0)
                        {
                            //接收到没有要求的推送,取消推送请求
                            UnRegist(
                            new BulkDataGraphFrameMix()
                            {
                                Mix = reponse.mix,
                                BM = reponse.bm,
                                StartDT = reponse.start_dt
                            });
                        }
                        else
                        {
                            foreach (BulkDataGraphFrameMix g in gl)
                            {
                                g.Update(reponse);
                            }
                        }
                    }, this);
            }
            else if (graph is BulkDataGraphTrend) 
            {
                BulkDataGraphTrend graph_trend = graph as BulkDataGraphTrend;
                bulkdata.GetTrendData(
                    new BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataParam()
                    {
                        NeedPush = true,
                        len = graph_trend.Len,
                        mix = graph_trend.Mix,
                        fromBoltNo = graph_trend.FromBoltNo,
                        toBoltNo = graph_trend.ToBoltNo
                    },
                    delegate(object AsyncState, object retData)
                    {
                        BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataReturn reponse = retData as BULKDATA_OBJ_INTERFACE.Pack_CallGetTrendDataReturn;
                        
                        //找出所有graph,更新
                        var gl = from g in mGraphs where g.IsEquals(reponse) select g;
                        if (gl.Count() == 0)
                        {
                            UnRegist(
                                //接收到没有要求的推送,取消推送请求
                            new BulkDataGraphTrend()
                            {
                                Mix = reponse.mix,
                                Len = reponse.len,
                                FromBoltNo = reponse.fromBoltNo,
                                ToBoltNo = reponse.toBoltNo
                            });
                        }
                        else
                        {
                            foreach (BulkDataGraphTrend g in gl)
                            {
                                g.Update(reponse);
                            }
                        }
                    }, this);
            }
            else if (graph is BulkDataGraphNewFrame)
            {
                BulkDataGraphNewFrame graph_frame = graph as BulkDataGraphNewFrame;
                bulkdata.PushNewFrameData(
                    new BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataParam()
                    {
                        mix = graph_frame.Mix
                    },
                    delegate(object AsyncState, object retData)
                    {
                        BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataReturn reponse = retData as BULKDATA_OBJ_INTERFACE.Pack_CallPushNewFrameDataReturn;
                        //找出所有graph,更新

                        var gl = from g in mGraphs where g.IsEquals(reponse) select g;
                        if (gl.Count() == 0)
                        {
                            //接收到没有要求的推送,取消推送请求
                            UnRegist(
                            new BulkDataGraphNewFrame()
                            {
                                Mix = reponse.mix
                            });
                        }
                        else
                        {
                            foreach (BulkDataGraphNewFrame g in gl)
                            {
                                g.Update(reponse);
                            }
                        }
                    }, this);
            }
        }
        void UnRegist(BulkDataGraph graph) 
        {
            if (graph is BulkDataGraphFrame)
            {
                BulkDataGraphFrame graph_frame = graph as BulkDataGraphFrame;
                bulkdata.ClosePushFrameData(
                    new BULKDATA_OBJ_INTERFACE.Pack_CallClosePushFrameData()
                    {
                        bm = graph_frame.BM,
                        mix = graph_frame.Mix
                    },this);
            }
            else if (graph is BulkDataGraphFrameMix)
            {
                BulkDataGraphFrameMix graph_frame = graph as BulkDataGraphFrameMix;
                bulkdata.ClosePushFrameDataMix(
                    new Pack_CallClosePushFrameDataMixRequest()
                    {
                        bm = graph_frame.BM,
                        mix = graph_frame.Mix,
                        start_dt = graph_frame.StartDT
                    }, this);
            }
            else if (graph is BulkDataGraphTrend)
            {
                BulkDataGraphTrend graph_trend = graph as BulkDataGraphTrend;
                bulkdata.ClosePushTrendData(
                    new BULKDATA_OBJ_INTERFACE.Pack_CallClosePushTrendData()
                    {
                        mix = graph_trend.Mix,
                        fromBoltNo =graph_trend.FromBoltNo,
                        toBoltNo = graph_trend.ToBoltNo
                    }, this);
            }
            else if (graph is BulkDataGraphNewFrame)
            {
                BulkDataGraphNewFrame graph_trend = graph as BulkDataGraphNewFrame;
                bulkdata.ClosePushNewFrameData(
                    new BULKDATA_OBJ_INTERFACE.Pack_CallClosePushNewFrameData()
                    {
                        mix = graph_trend.Mix
                    }, this);
            }
        }
        void _Add(BulkDataGraph graph)
        {
            //检测列表中是否已经有一样的graph
            //有的话,直接把数据复制过来
            var gl = from g in mGraphs where g.IsEquals(graph) select g;

            if (gl.Count() > 0)
            {
                //有相同数据,直接把数据复制过来
                gl.ElementAt(0).CopyTo(graph);
                mGraphs.Add(graph);
            }
            else
            {
                mGraphs.Add(graph);

                //没有, 需要向服务器注册
                if (bulkdata.IsReady)
                {
                    Regist(graph);
                }
            }
        }
        public void Add(BulkDataGraph graph)
        {
            _Add(graph);
            graph.RegistEvent +=new Action<BulkDataGraph>(graph_RegistEvent);
        }

        void graph_RegistEvent(BulkDataGraph obj)
        {
            //当数据被修改,应该重新注册
            //数据已被修改,没法找到原来的数据,只能接收到推送时,发现不存在,把它删除

            mGraphs.Remove(obj);
            _Add(obj);
        }

        public void Remove(BulkDataGraph graph)
        {
            //检测列表是否只有一个graph
            //当只有一个,需要向服务器解除注册
            var gl = from g in mGraphs where g.IsEquals(graph) select g;
            if (gl.Count() == 1)
            {
                if (bulkdata.IsReady)
                {
                    UnRegist(graph);
                }
            }

            mGraphs.Remove(graph);
        }

        public void Clear()
        {
            bulkdata.Clear();
        }
    }
}