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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Net;
using FObjBase;
using FLY.Thick.Base.IService;
using FLY.Thick.Base.OBJ_INTERFACE;
using FLY.Thick.Base.Common;
namespace FLY.Thick.Base.Client
{
public class ProfileServiceClient : FObj, IProfileService
{
IFConn mConn;
UInt32 mServerID;
public ProfileServiceClient(UInt32 serverid)
{
mServerID = serverid;
}
#region IProfileService 接口
string pname = "test_pname";
public string PName
{
set
{
if (pname != value)
{
pname = value;
NotifyPropertyChanged("PName");
}
}
get { return pname; }
}
int target=3000;
public int Target
{
get { return target; }
set
{
if (target != value)
{
target = value;
NotifyPropertyChanged("Target");
}
}
}
int alarm=100;
public int Alarm
{
get { return alarm; }
set
{
if (alarm != value)
{
alarm = value;
NotifyPropertyChanged("Alarm");
}
}
}
double comp=1;
public double Comp
{
get { return comp; }
set
{
comp = value;
NotifyPropertyChanged("Comp");
}
}
int shift=0;
public int Shift
{
get { return shift; }
set
{
if (shift != value)
{
shift = value;
NotifyPropertyChanged("Shift");
}
}
}
int beginNo=0;
public int BeginNo
{
get { return beginNo; }
set
{
if (beginNo != value)
{
beginNo = value;
NotifyPropertyChanged("BeginNo");
}
}
}
int endNo=40;
public int EndNo
{
get { return endNo; }
set
{
if (endNo != value)
{
endNo = value;
NotifyPropertyChanged("EndNo");
}
}
}
int dataBeginNo=2;
public int DataBeginNo
{
get { return dataBeginNo; }
set
{
if (dataBeginNo != value)
{
dataBeginNo = value;
NotifyPropertyChanged("DataBeginNo");
}
}
}
int dataEndNo = 30;
public int DataEndNo
{
get { return dataEndNo; }
set
{
if (dataEndNo != value)
{
dataEndNo = value;
NotifyPropertyChanged("DataEndNo");
}
}
}
/// <summary>
/// 应用 & 保存
/// </summary>
public void Apply()
{
ProfileParam p = new ProfileParam()
{
pname = PName,
target = Target,
alarm = Alarm,
comp = Comp,
shift = Shift,
beginNo = BeginNo,
endNo = EndNo,
dataBeginNo = DataBeginNo,
dataEndNo = DataEndNo
};
CurrObjSys.SetValueEx(mConn, mServerID, ID,
PROFILE_OBJ_INTERFACE.SET_PARAMS,
p.ToBytes());
}
/// <summary>
/// 获取产品列表, 返回类型为 List<string>
/// </summary>
/// <param name="AsyncDelegate"></param>
/// <param name="AsyncState"></param>
public void GetList(AsyncCBHandler AsyncDelegate, object AsyncState)
{
CurrObjSys.CallFunctionEx(mConn, mServerID, ID,
PROFILE_OBJ_INTERFACE.CALL_GETLIST,
null,
AsyncDelegate, AsyncState);
}
/// <summary>
/// 删除指定产品
/// </summary>
/// <param name="productname"></param>
public void Del(string productname)
{
PROFILE_OBJ_INTERFACE.Pack_String p = new PROFILE_OBJ_INTERFACE.Pack_String();
p.data = productname;
CurrObjSys.CallFunctionEx(mConn, mServerID, ID,
PROFILE_OBJ_INTERFACE.CALL_DEL, p.ToBytes());
}
/// <summary>
/// 读取指定产品,返回类型为 ProfileParam
/// </summary>
/// <param name="productname"></param>
/// <param name="AsyncDelegate"></param>
/// <param name="AsyncState"></param>
public void Read(string productname, AsyncCBHandler AsyncDelegate, object AsyncState)
{
CurrObjSys.CallFunctionEx(mConn, mServerID, ID,
PROFILE_OBJ_INTERFACE.CALL_READ,
new PROFILE_OBJ_INTERFACE.Pack_String() { data = productname }.ToBytes(),
AsyncDelegate, AsyncState);
}
#endregion
public override void Dispose()
{
CurrObjSys.ObjRemove(
this, mConn);
}
public override void ConnectNotify(IFConn from)
{
mConn = from;
if (from.IsConnected)
{
//获取所有数据,设置推送
CurrObjSys.GetValueEx(
mConn, mServerID, ID,
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 PROFILE_OBJ_INTERFACE.GET_PARAMS:
{
ProfileParam p = new ProfileParam();
if (!p.TryParse(infodata))
return;
PName = p.pname;
Target = p.target;
Alarm = p.alarm;
Comp = p.comp;
Shift = p.shift;
BeginNo = p.beginNo;
EndNo = p.endNo;
DataBeginNo = p.dataBeginNo;
DataEndNo = p.dataEndNo;
} 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 PROFILE_OBJ_INTERFACE.CALL_GETLIST:
{
PROFILE_OBJ_INTERFACE.Pack_StringList p = new PROFILE_OBJ_INTERFACE.Pack_StringList();
if (!p.TryParse(retdata))
return;
((AsyncCBHandler)AsyncDelegate)(AsyncState, p.list);
} break;
case PROFILE_OBJ_INTERFACE.CALL_READ:
{
ProfileParam p = new ProfileParam();
if (!p.TryParse(retdata))
return;
((AsyncCBHandler)AsyncDelegate)(AsyncState, p);
} break;
}
}
#region INotifyPropertyChanged 成员
public event PropertyChangedEventHandler PropertyChanged;
protected void NotifyPropertyChanged(string propertyname)
{
if (PropertyChanged != null)
{
PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyname));
}
}
#endregion
}
}