WeightSystemServiceClient.cs 8.26 KB
Newer Older
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FObjBase;

using System.Reflection;
using Misc;
using System.ComponentModel;
using System.Net;
using System.Xml;
using FLY.Modbus;
using FLY.Weight2.Server.Model;
using FLY.Weight2.OBJ_INTERFACE;
using FLY.Weight2.IService;
using FLY.Weight2.Common;
using FLY.OBJComponents.Client;
using FLY.OBJComponents.IService;
using System.Collections.ObjectModel;

using System.IO;

namespace FLY.Weight2.Client
{
    public class WeightSystemServiceClient: FObjServiceClient, IWeightSystemService, IPropertyOpt
    {

        #region IWeightSystemService 接口

        public ObservableCollection<WeighterC> Items { get; } = new ObservableCollection<WeighterC>();

        public WeighterAccessory Accessory { get; } = new WeighterAccessory();

        /// <summary>
        /// PLC代理系统
        /// </summary>
        public IPLCProxySystemService PLCos { get; set; }

        /// <summary>
        /// 流量记录周期,单位s
        /// </summary>
        public int FlowInterval { get; set; } = 10;

        /// <summary>
        /// 层数
        /// </summary>
        public int ItemsCnt { get; set; } = 3;

        #endregion

51
        string[] NumberNames;
52 53 54 55 56 57 58 59 60 61 62 63 64
        SyncPropServiceClient syncPropServiceClient;


        public event Action ResetItemsEvent;
        /// <summary>
        /// TODO
        /// </summary>
        /// <param name="serviceId"></param>
        public WeightSystemServiceClient(UInt32 serviceId) : base(serviceId) {
            Init();
        }
        public WeightSystemServiceClient(UInt32 serviceId, string connName) : base(serviceId) {
            ConnName = connName;
65 66 67
            filePath = connName + "." + filePath;
            Init();
            
68 69 70 71

            FObjServiceClientManager.Instance.Connect_to_Another_OBJSys(connName, this);
        }

72 73
        string GetNumber(int index) {
            string number;
74

75 76 77 78 79 80 81 82 83 84 85 86
            if (NumberNames != null
                && index < NumberNames.Count()
                && !string.IsNullOrEmpty(NumberNames[index]))
            {
                number = NumberNames[index];
            }
            else
            {
                number = ((char)('A' + index)).ToString();
            }
            return number;
        }
87 88 89 90 91 92
        /// <summary>
        /// 以给定的各层仓数创建,当接收到 BinCnts变化,
        /// 重新修改各层, 删除,或添加
        /// </summary>
        void Init()
        {
93 94
            if (!LoadNumberNames())
                SaveNumberNames();
95 96 97
            Load();
            for (int i = 0; i < ItemsCnt; i++)
            {
98 99
                string number = GetNumber(i);
                WeighterC w = new WeighterC(number,i);
100 101 102 103 104 105 106
                Items.Add(w);
            }

            //--------------------------------------------------------------
            //属性同步
            Dictionary<string, INotifyPropertyChanged> objnames = new Dictionary<string, INotifyPropertyChanged>();
            objnames.Add(".", this);
107
            objnames.Add(nameof(Accessory), Accessory);
108
            for (int i = 0; i < Items.Count(); i++)
109
                objnames.Add($"{nameof(Items)}[{i}]", Items[i]);
110 111 112 113 114 115
            
            syncPropServiceClient = new SyncPropServiceClient(mServerID + 1, objnames);

            //--------------------------------------------------------------
            //PLC代理,用于添加更新任务
            Dictionary<string, INotifyPropertyChanged> objnames2 = new Dictionary<string, INotifyPropertyChanged>();
116
            objnames2.Add(nameof(Accessory), Accessory);
117
            for (int i = 0; i < Items.Count(); i++)
118
                objnames2.Add($"{nameof(Items)}[{i}]", Items[i]);
119 120 121 122 123 124 125 126 127 128 129 130 131 132

            PLCos = new PLCProxySystemServiceClient(mServerID + 2, objnames2);




            this.PropertyChanged += WeightSystemClient_PropertyChanged;
        }

        string filePath = "weightSystemClient.json";
        void Save() 
        {
            WeightSystemClientJsonDb jsonDb = new WeightSystemClientJsonDb()
            {
133
                ItemsCnt = ItemsCnt,
134 135 136 137 138 139 140 141 142 143
            };
            string json = Newtonsoft.Json.JsonConvert.SerializeObject(jsonDb);
            File.WriteAllText(filePath, json);
        }
        void Load() {
            if (!File.Exists(filePath))
                return;
            string json =File.ReadAllText(filePath);
            var p = Newtonsoft.Json.JsonConvert.DeserializeObject< WeightSystemClientJsonDb>(json);
            ItemsCnt = p.ItemsCnt;
144 145 146 147 148 149 150 151 152 153 154

        }
        string filePath_number = "weightSystemClientNumberNames.json";
        bool LoadNumberNames() 
        {
            if (!File.Exists(filePath_number))
                return false;
            string json = File.ReadAllText(filePath_number);
            var p = Newtonsoft.Json.JsonConvert.DeserializeObject<NumberNamesJsonDb>(json);
            NumberNames = p.NumberNames;
            return true;
155
        }
156 157 158 159 160 161 162 163 164 165 166
        void SaveNumberNames()
        {
            NumberNamesJsonDb jsonDb = new NumberNamesJsonDb
            {
                NumberNames = NumberNames
            };
            string json = Newtonsoft.Json.JsonConvert.SerializeObject(jsonDb);
            File.WriteAllText(filePath_number, json);
        }


167 168
        private void WeightSystemClient_PropertyChanged(object sender, PropertyChangedEventArgs e)
        {
169
            if (e.PropertyName == nameof(ItemsCnt))
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
            {
                ResetItems();
                Save();
            }
        }

        /// <summary>
        /// 重新创建 Items
        /// </summary>
        void ResetItems()
        {

            int last_itemcnt = Items.Count();

            for (int i = 0; i < Items.Count(); i++)
            {
                if (i < ItemsCnt)
                {

                }
                else
                {
                    //多出来的Item 都要删除
                    int remove_cnt = Items.Count() - ItemsCnt;
                    for (i = 0; i < remove_cnt; i++)
                        Items.RemoveAt(Items.Count() - 1);

                    goto _step1;
                }
            }

            for (int i = Items.Count(); i < ItemsCnt; i++)
            {
                //少了,需要添加
204 205
                string number = GetNumber(i);
                WeighterC w = new WeighterC(number,i);
206 207 208 209 210 211 212 213 214 215 216 217 218
                Items.Add(w);
            }

        _step1:
            //处理属性同步
            if (last_itemcnt == Items.Count())//数量相同,不需要处理
                goto _step2;

            if (last_itemcnt < Items.Count())
            {
                //少了需要添加
                for (int i = last_itemcnt; i < Items.Count(); i++)
                {
219 220
                    syncPropServiceClient.Add($"{nameof(Items)}[{i}]", Items[i]);
                    PLCos.ObjNames.Add($"{nameof(Items)}[{i}]", Items[i]);
221 222 223 224 225 226 227
                }
            }
            else
            {
                //多了需要删除
                for (int i = Items.Count(); i < last_itemcnt; i++)
                {
228 229
                    syncPropServiceClient.Remove($"{nameof(Items)}[{i}]");
                    PLCos.ObjNames.Remove($"{nameof(Items)}[{i}]");
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
                }
            }

        _step2:
            ResetItemsEvent?.Invoke();
            return;
        }
        public override UInt32[] GetIDs()
        {
            List<UInt32> IDs = new List<uint>
            {
                ID,
                syncPropServiceClient.ID,
            };
            IDs.AddRange(((PLCProxySystemServiceClient)PLCos).GetIDs());
            return IDs.ToArray();
        }
        public override void ConnectNotify(IFConn from)
        {
            base.ConnectNotify(from);
            if (from.IsConnected)
            {

                CurrObjSys.SenseConfigEx(mConn, mServerID, ID,
                    0xffffffff, SENSE_CONFIG.ADD);
            }
        }

        public string[] GetSyncPropNames()
        {
            return new string[]{
261 262
                nameof(FlowInterval),
                nameof(ItemsCnt)
263 264 265 266 267 268 269 270 271 272 273 274
                };
        }

        public string[] GetNoSyncPropNames()
        {
            return null;
        }

    }

    public class WeightSystemClientJsonDb 
    {
275 276 277 278 279
        public int ItemsCnt;
    }
    public class NumberNamesJsonDb
    {
        public string[] NumberNames;
280 281
    }
}