IBCSystem.cs 5.43 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2
using FLY.IBC.Common;
using FLY.IBC.IService;
潘栩锋's avatar
潘栩锋 committed
3
using FLY.IBC.Server.Model;
潘栩锋's avatar
潘栩锋 committed
4 5 6 7 8
using FLY.Modbus;
using FLY.OBJComponents.Common;
using FLY.OBJComponents.IService;
using FLY.OBJComponents.Server;
using FObjBase;
潘栩锋's avatar
潘栩锋 committed
9
using Newtonsoft.Json;
潘栩锋's avatar
潘栩锋 committed
10 11 12 13
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
潘栩锋's avatar
潘栩锋 committed
14
using System.IO;
潘栩锋's avatar
潘栩锋 committed
15 16 17 18 19 20
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.IBC.Server
{
潘栩锋's avatar
潘栩锋 committed
21 22
    [JsonObject(MemberSerialization.OptIn)]
    public class IBCSystem : IIBCSystemService
潘栩锋's avatar
潘栩锋 committed
23 24 25 26 27 28
    {
        #region IIBCSystem
        /// <summary>
        /// 数据
        /// </summary>
        public IBCData Item { get; } = new IBCData();
潘栩锋's avatar
潘栩锋 committed
29 30

        private int ctrlInterval = 5;
潘栩锋's avatar
潘栩锋 committed
31
        /// <summary>
潘栩锋's avatar
潘栩锋 committed
32
        /// 控制记录周期,单位s, 最小值为2
潘栩锋's avatar
潘栩锋 committed
33
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
34
        [JsonProperty]
潘栩锋's avatar
潘栩锋 committed
35 36 37 38 39 40 41 42 43 44 45 46 47
        public int CtrlInterval
        {
            get { return ctrlInterval; }
            set
            {
                if (value < 2)
                    value = 2;
                if (ctrlInterval != value)
                {
                    ctrlInterval = value;
                }
            }
        }
潘栩锋's avatar
潘栩锋 committed
48 49 50 51 52 53

        private PLCProxySystem plcos = new PLCProxySystem();
        /// <summary>
        /// PLC代理系统
        /// </summary>
        public IPLCProxySystemService PLCos { get { return plcos; } }
潘栩锋's avatar
潘栩锋 committed
54

潘栩锋's avatar
潘栩锋 committed
55 56 57
        #endregion


潘栩锋's avatar
潘栩锋 committed
58 59 60
        /// <summary>
        /// 报警系统
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
61
        WarningSystem warning;
潘栩锋's avatar
潘栩锋 committed
62 63 64 65 66 67 68 69 70 71 72 73
        /// <summary>
        /// 记录到数据库
        /// </summary>
        HistoryDb historyDb;
        /// <summary>
        /// 报警配置
        /// </summary>
        ErrorConf errorConf;
        /// <summary>
        /// 周期保存Ibc数据
        /// </summary>
        PeriodicallySaveData<Db_Width> psdWidth;
潘栩锋's avatar
潘栩锋 committed
74

潘栩锋's avatar
潘栩锋 committed
75 76 77 78
        public IBCSystem()
        {
            Load();

潘栩锋's avatar
潘栩锋 committed
79
            //加载PLC寄存器 文件
潘栩锋's avatar
潘栩锋 committed
80
            AddConfigFile("WS.xml");
潘栩锋's avatar
潘栩锋 committed
81 82 83 84 85
        }
        public void Init(HistoryDb historyDb ,WarningSystem warning)
        {
            this.historyDb = historyDb;
            this.warning = warning;
潘栩锋's avatar
潘栩锋 committed
86 87 88

            //--------------------------------------------------------------------------------
            //报警配置
89
            errorConf = new ErrorConf(PLCos, this.warning, "IBC");
潘栩锋's avatar
潘栩锋 committed
90

潘栩锋's avatar
潘栩锋 committed
91 92 93
            byte code = 0;
            errorConf.AddErrorAction(
                Item, ref code);
潘栩锋's avatar
潘栩锋 committed
94

潘栩锋's avatar
潘栩锋 committed
95
            errorConf.InitError();
潘栩锋's avatar
潘栩锋 committed
96

潘栩锋's avatar
潘栩锋 committed
97 98 99 100 101 102 103
            //--------------------------------------------------------------------------------
            //历史数据记录
            
            //添加任务
            PLCos.SetPlan("Item", new string[] {
                        "FilmWidth","InletAirFreq","OutletAirFreq"
                    }, 0);
潘栩锋's avatar
潘栩锋 committed
104

潘栩锋's avatar
潘栩锋 committed
105 106 107 108 109 110 111
            psdWidth = new PeriodicallySaveData<Db_Width>();
            psdWidth.Init(
                CtrlInterval,
                this.historyDb.AddWidthRange,
                () => {
                    if (!PLCos.IsConnectedWithPLC)
                        return null;
潘栩锋's avatar
潘栩锋 committed
112

潘栩锋's avatar
潘栩锋 committed
113 114
                    if (Item.InletAirFreq < 2 && Item.OutletAirFreq < 2)//没有工作!!!!
                        return null;
潘栩锋's avatar
潘栩锋 committed
115

潘栩锋's avatar
潘栩锋 committed
116 117 118 119 120 121 122 123 124 125 126
                    //记录数据
                    return new Db_Width()
                    {
                        Time = DateTime.Now,
                        FilmWidth = Math.Round(Item.FilmWidth, 1),
                        InletAirFreq = Math.Round(Item.InletAirFreq, 1),
                        OutletAirFreq = Math.Round(Item.OutletAirFreq, 1)
                    };
                });
            //--------------------------------------------------------------------------------
            //PLC初始化
潘栩锋's avatar
潘栩锋 committed
127 128
            plcos.Init();

潘栩锋's avatar
潘栩锋 committed
129

潘栩锋's avatar
潘栩锋 committed
130 131

        }
潘栩锋's avatar
潘栩锋 committed
132
        
潘栩锋's avatar
潘栩锋 committed
133 134 135 136 137 138 139
        void AddConfigFile(string configfile)
        {
            PLCGroup plcgroup = new PLCGroup();
            plcgroup.Load(configfile);

            foreach (PLCGroup.PLCDevice device in plcgroup.Devices)
            {
140
                var plc = new Modbus.WithThread.ModbusMapper_Client(device.EP);
潘栩锋's avatar
潘栩锋 committed
141 142 143 144 145 146 147 148 149 150 151 152
                plcos.PLCs.Add(plc);
            }

            //objname 转 obj
            PLCos.ObjNames.Add("Item", Item);


            foreach (PLCGroup.PLCVariable var in plcgroup.Variables)
            {
                if (var.DeviceIndex < 0 || var.DeviceIndex >= plcos.PLCs.Count)
                    continue;

153 154
                List<Modbus.DataToRegs> drs = plcos.DRMap;
                var plc = plcos.PLCs[var.DeviceIndex];
潘栩锋's avatar
潘栩锋 committed
155

156
                Modbus.DataToRegs dr = plc.MapDataToRegs(
潘栩锋's avatar
潘栩锋 committed
157 158 159 160 161 162
                    ModbusMapper.TranslateToPLCAddressArea(var.Mode),
                    var.Addr,
                    ModbusMapper.TranslateToREG_TYPE(var.Type),
                    var.Scale,
                    Item,
                    var.PropertyName);
163

潘栩锋's avatar
潘栩锋 committed
164 165 166
                if (dr != null)
                    drs.Add(dr);
            }
167 168
            foreach (var plc in plcos.PLCs)
                plc.Build();
潘栩锋's avatar
潘栩锋 committed
169 170
        }

潘栩锋's avatar
潘栩锋 committed
171

潘栩锋's avatar
潘栩锋 committed
172 173 174
        public event PropertyChangedEventHandler PropertyChanged;
        
        void Save()
潘栩锋's avatar
潘栩锋 committed
175
        {
潘栩锋's avatar
潘栩锋 committed
176 177
            string json = JsonConvert.SerializeObject(this, Formatting.Indented);
            File.WriteAllText("ibc.json", json);
潘栩锋's avatar
潘栩锋 committed
178
        }
潘栩锋's avatar
潘栩锋 committed
179
        void Load()
潘栩锋's avatar
潘栩锋 committed
180
        {
潘栩锋's avatar
潘栩锋 committed
181 182 183 184 185 186 187 188 189 190 191
            if (!File.Exists("ibc.json"))
                return;
            string json = File.ReadAllText("ibc.json");
            try
            {
                JsonConvert.PopulateObject(json, this);
            }
            catch 
            {
            
            }
潘栩锋's avatar
潘栩锋 committed
192
        }
潘栩锋's avatar
潘栩锋 committed
193
    }
潘栩锋's avatar
潘栩锋 committed
194

潘栩锋's avatar
潘栩锋 committed
195
}