BlowingFixProfileServiceClient.cs 4.84 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
using FLY.Thick.Blowing.Common;
潘栩锋's avatar
潘栩锋 committed
2 3 4
using FLY.Thick.Blowing.IService;
using FLY.Thick.Blowing.OBJ_INTERFACE;
using FObjBase;
5
using Newtonsoft.Json;
潘栩锋's avatar
潘栩锋 committed
6 7 8 9 10 11 12
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace FLY.Thick.Blowing.Client
{
13
    public class BlowingFixProfileServiceClient : FObjServiceClient, IBlowingFixProfileService
潘栩锋's avatar
潘栩锋 committed
14 15
    {

16
        public BlowingFixProfileServiceClient(UInt32 serviceId) : base(serviceId) { }
17

18
        public BlowingFixProfileServiceClient(UInt32 serviceId, string connName) : base(serviceId, connName) { }
潘栩锋's avatar
潘栩锋 committed
19 20

        #region IProfileService  接口
21 22 23

        public BlowingFixProfileParam Param { get; } = new BlowingFixProfileParam();

潘栩锋's avatar
潘栩锋 committed
24 25 26 27 28 29 30


        /// <summary>
        /// 应用 &amp; 保存
        /// </summary>
        public void Apply()
        {
31
            string json = JsonConvert.SerializeObject(Param);
潘栩锋's avatar
潘栩锋 committed
32 33
            CurrObjSys.SetValueEx(mConn, mServerID, ID,
                BLOWINGFIX_PROFILE_OBJ_INTERFACE.SET_PARAMS,
34
                Misc.Converter.StringToBytes(json));
潘栩锋's avatar
潘栩锋 committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
        }



        /// <summary>
        /// 获取产品列表, 返回类型为 List&lt;string&gt;
        /// </summary>
        /// <param name="AsyncDelegate"></param>
        /// <param name="AsyncState"></param>
        public void GetList(AsyncCBHandler AsyncDelegate, object AsyncState)
        {
            CurrObjSys.CallFunctionEx(mConn, mServerID, ID,
                BLOWINGFIX_PROFILE_OBJ_INTERFACE.CALL_GETLIST,
                null,
                AsyncDelegate, AsyncState);
        }

        /// <summary>
        /// 删除指定产品
        /// </summary>
        /// <param name="productname"></param>
        public void Del(string productname)
        {
58 59
            string json = JsonConvert.SerializeObject(productname);

潘栩锋's avatar
潘栩锋 committed
60
            CurrObjSys.CallFunctionEx(mConn, mServerID, ID,
61
                BLOWINGFIX_PROFILE_OBJ_INTERFACE.CALL_DEL, Misc.Converter.StringToBytes(json));
潘栩锋's avatar
潘栩锋 committed
62 63 64 65 66 67 68 69 70 71
        }

        /// <summary>
        /// 读取指定产品,返回类型为 ProfileParam
        /// </summary>
        /// <param name="productname"></param>
        /// <param name="AsyncDelegate"></param>
        /// <param name="AsyncState"></param>
        public void Read(string productname, AsyncCBHandler AsyncDelegate, object AsyncState)
        {
72 73
            string json = JsonConvert.SerializeObject(productname);

潘栩锋's avatar
潘栩锋 committed
74 75
            CurrObjSys.CallFunctionEx(mConn, mServerID, ID,
                BLOWINGFIX_PROFILE_OBJ_INTERFACE.CALL_READ,
76
                Misc.Converter.StringToBytes(json),
潘栩锋's avatar
潘栩锋 committed
77 78 79 80 81 82
                AsyncDelegate, AsyncState);
        }
        #endregion



83

潘栩锋's avatar
潘栩锋 committed
84 85
        public override void ConnectNotify(IFConn from)
        {
86
            base.ConnectNotify(from);
潘栩锋's avatar
潘栩锋 committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
            if (from.IsConnected)
            {
                //获取所有数据,设置推送
                CurrObjSys.GetValueEx(
                    mConn, mServerID, ID,
                    BLOWINGFIX_PROFILE_OBJ_INTERFACE.GET_PARAMS);

                CurrObjSys.SenseConfigEx(
                    mConn, mServerID, ID,
                    0xffffffff,
                    SENSE_CONFIG.ADD);
            }
        }
        public override void PushGetValue(IFConn from, uint srcid, ushort memid, byte[] infodata)
        {
            switch (memid)
            {
                case BLOWINGFIX_PROFILE_OBJ_INTERFACE.GET_PARAMS:
                    {
106 107
                        string json = Misc.Converter.BytesToString(infodata);
                        BlowingFixProfileParam p = JsonConvert.DeserializeObject<BlowingFixProfileParam>(json);
潘栩锋's avatar
潘栩锋 committed
108

109
                        Misc.PropertiesManager.CopyTo(p, Param);
潘栩锋's avatar
潘栩锋 committed
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127

                    }
                    break;
            }
        }
        public override void PushInfo(IFConn from, uint srcid, ushort infoid, byte[] infodata)
        {

            PushGetValue(from, srcid, infoid, infodata);


        }
        public override void PushCallFunction(IFConn from, uint srcid, uint magic, ushort funcid, byte[] retdata, object AsyncDelegate, object AsyncState)
        {
            switch (funcid)
            {
                case BLOWINGFIX_PROFILE_OBJ_INTERFACE.CALL_GETLIST:
                    {
128 129 130
                        string json = Misc.Converter.BytesToString(retdata);
                        List<string> p = JsonConvert.DeserializeObject<List<string>>(json);
                        ((AsyncCBHandler)AsyncDelegate)(AsyncState, p);
潘栩锋's avatar
潘栩锋 committed
131 132 133 134
                    }
                    break;
                case BLOWINGFIX_PROFILE_OBJ_INTERFACE.CALL_READ:
                    {
135 136 137
                        string json = Misc.Converter.BytesToString(retdata);
                        BlowingFixProfileParam p = JsonConvert.DeserializeObject<BlowingFixProfileParam>(json);
                        
潘栩锋's avatar
潘栩锋 committed
138 139 140 141 142 143 144
                        ((AsyncCBHandler)AsyncDelegate)(AsyncState, p);
                    }
                    break;
            }
        }
    }
}