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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FObjBase;
using static FLY.Thick.BulkDataModule.BulkDataService;
using System.Collections.Specialized;
namespace FLY.Thick.BulkDataModule
{
/// <summary>
/// 功能
/// 1. 获取横向扫描图,变化时推送变化量
/// 3. 获取指定分区范围的纵向趋势图,变化时推送变化量
/// 5. 获取 幅信息(基本没用)
/// 6. 删去全部数据
/// </summary>
public class BULKDATA_OBJ_INTERFACE
{
public const UInt32 ID = 0x003C0001;
#region Pack
public class Pack_CallPushNewFrameDataParam : IPack
{
public int mix;//混合数
#region IPack 成员
public virtual byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(mix));
return buf.ToArray();
}
public virtual bool TryParse(byte[] value)
{
int count = 4;
if (value.Length < count)
return false;
int idx = 0;
mix = BitConverter.ToInt32(value, idx);
idx += 4;
return true;
}
#endregion
}
public class Pack_CallPushNewFrameDataReturn : Pack_CallPushNewFrameDataParam
{
//输出
public int bookmark = -1;//结果对应的 bookmark
public DateTime dt = DateTime.MinValue;//结果对应的 时间
public FR_DATA_TYPE type = FR_DATA_TYPE.INVALID;//结果.数据是否有效
public int[] result = null;//结果, 当needPush=true, 以后推送时,只发送变化了的数据
#region IPack 成员
public override byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(mix));
buf.AddRange(BitConverter.GetBytes(bookmark));
buf.AddRange(BitConverter.GetBytes(dt.Ticks));
buf.Add((byte)type);
int len=0;
if (result != null)
len = result.Length;
buf.AddRange(BitConverter.GetBytes(len));
if(len>0)
{
foreach (int dat in result)
buf.AddRange(BitConverter.GetBytes(dat));
}
return buf.ToArray();
}
public override bool TryParse(byte[] value)
{
int count = 4 + 4 + 8 + 1 + 4;
if (value.Length < count)
return false;
int idx = 0;
mix = BitConverter.ToInt32(value, idx);
idx += 4;
bookmark = BitConverter.ToInt32(value, idx);
idx += 4;
dt = new DateTime(BitConverter.ToInt64(value, idx));
idx += 8;
type = (FR_DATA_TYPE)value[idx];
idx += 1;
int length = BitConverter.ToInt32(value, idx);
idx += 4;
count += length * 4;
if (value.Length < count)
return false;
if (length > 0)
{
result = new int[length];
for (int i = 0; i < length; i++)
{
result[i] = BitConverter.ToInt32(value, idx);
idx += 4;
}
}
else
{
result = null;
}
return true;
}
#endregion
}
public class Pack_CallClosePushNewFrameData : Pack_CallPushNewFrameDataParam
{
}
public class Pack_CallGetFrameDataParam : Pack_CallClosePushFrameData
{
public bool NeedPush;//当数据变化时,是否需要推送
#region IPack 成员
public override byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(NeedPush));
buf.AddRange(BitConverter.GetBytes(bm));
buf.AddRange(BitConverter.GetBytes(mix));
return buf.ToArray();
}
public override bool TryParse(byte[] value)
{
if (value == null)
return false;
//TODO
int count = 9;
if (value.Length < count)
return false;
int idx = 0;
NeedPush = BitConverter.ToBoolean(value, idx);
idx += 1;
bm = BitConverter.ToInt32(value, idx);
idx += 4;
mix = BitConverter.ToInt32(value, idx);
idx += 4;
return true;
}
#endregion
}
public class Pack_CallGetFrameDataReturn : Pack_CallGetFrameDataParam
{
//输出
public int bookmark = -1;//结果对应的 bookmark
public DateTime dt = DateTime.MinValue;//结果对应的 时间
public int fromBoltIndex = 0;//开始分区index
public int toBoltIndex = 0;//结束分区index
public FR_DATA_TYPE type = FR_DATA_TYPE.INVALID;//结果.数据是否有效
public int[] result = null;//结果, 当needPush=true, 以后推送时,只发送变化了的数据
#region IPack 成员
public override byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(NeedPush));//1
buf.AddRange(BitConverter.GetBytes(bm));//2
buf.AddRange(BitConverter.GetBytes(mix));//3
buf.AddRange(BitConverter.GetBytes(bookmark));//4
buf.AddRange(BitConverter.GetBytes(dt.Ticks));//5
buf.AddRange(BitConverter.GetBytes(fromBoltIndex));//6
buf.AddRange(BitConverter.GetBytes(toBoltIndex));//7
buf.Add((byte)type);//8
if (result != null)
{
buf.AddRange(BitConverter.GetBytes((int)result.Length));//9
foreach (int dat in result)
buf.AddRange(BitConverter.GetBytes(dat));
}
else
{
buf.AddRange(BitConverter.GetBytes((int)0));//9
}
return buf.ToArray();
}
public override bool TryParse(byte[] value)
{
int count = 1 + 4 * 2+ 4 + 8+ 4*2 + 1 + 4;
if (value.Length < count)
return false;
int idx = 0;
NeedPush = BitConverter.ToBoolean(value, idx);//1
idx++;
bm = BitConverter.ToInt32(value, idx);//2
idx += 4;
mix = BitConverter.ToInt32(value, idx);//3
idx += 4;
bookmark = BitConverter.ToInt32(value, idx);//4
idx += 4;
dt = new DateTime(BitConverter.ToInt64(value, idx));//5
idx += 8;
fromBoltIndex = BitConverter.ToInt32(value, idx);//6
idx += 4;
toBoltIndex = BitConverter.ToInt32(value, idx);//7
idx += 4;
type = (FR_DATA_TYPE)value[idx];//8
idx += 1;
int length = BitConverter.ToInt32(value, idx);//9
idx += 4;
count += length * 4;
if (value.Length < count)
return false;
if (length > 0)
{
result = new int[length];
for (int i = 0; i < length; i++)
{
result[i] = BitConverter.ToInt32(value, idx);
idx += 4;
}
}
else
{
result = null;
}
return true;
}
#endregion
}
public class Pack_CallClosePushFrameData : IPack
{
public int bm;//标记, 当bm>0 为bookmark,当bm <=0 为往前面数
public int mix;//混合数
#region IPack 成员
public virtual byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(bm));
buf.AddRange(BitConverter.GetBytes(mix));
return buf.ToArray();
}
public virtual bool TryParse(byte[] value)
{
int count = 8;
if (value.Length < count)
return false;
int idx = 0;
bm = BitConverter.ToInt32(value, idx);
idx += 4;
mix = BitConverter.ToInt32(value, idx);
idx += 4;
return true;
}
#endregion
}
public class Pack_CallGetTrendDataParam : Pack_CallClosePushTrendData
{
public bool NeedPush;//当数据变化时,是否需要推送
public int len;//获取的长度
#region IPack 成员
public override byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(NeedPush));
buf.AddRange(BitConverter.GetBytes(len));
buf.AddRange(BitConverter.GetBytes(mix));
buf.AddRange(BitConverter.GetBytes(fromBoltNo));
buf.AddRange(BitConverter.GetBytes(toBoltNo));
return buf.ToArray();
}
public override bool TryParse(byte[] value)
{
int count = 1+4*4;
if (value.Length < count)
return false;
int idx = 0;
NeedPush = BitConverter.ToBoolean(value, idx);
idx++;
len = BitConverter.ToInt32(value, idx);
idx += 4;
mix = BitConverter.ToInt32(value, idx);
idx += 4;
fromBoltNo = BitConverter.ToInt32(value, idx);
idx += 4;
toBoltNo = BitConverter.ToInt32(value, idx);
idx += 4;
return true;
}
#endregion
}
public class Pack_CallGetTrendDataReturn : Pack_CallGetTrendDataParam
{
//输出
/// <summary>
/// 结果修改的位置; 1 在上一次数据最后一位的后面添加; 0 在上一次数据最后一位 开始修改;
/// </summary>
public int edit_position = 1;
public TrendDataCell[] result = null;//结果,当 长度=0,数据被清空!!
#region IPack 成员
public override byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(NeedPush));
buf.AddRange(BitConverter.GetBytes(len));
buf.AddRange(BitConverter.GetBytes(mix));
buf.AddRange(BitConverter.GetBytes(fromBoltNo));
buf.AddRange(BitConverter.GetBytes(toBoltNo));
buf.AddRange(BitConverter.GetBytes(edit_position));
if (result != null)
{
buf.AddRange(BitConverter.GetBytes((int)result.Length));
foreach (TrendDataCell dat in result)
buf.AddRange(dat.ToBytes());
}
else
{
buf.AddRange(BitConverter.GetBytes((int)0));
}
return buf.ToArray();
}
public override bool TryParse(byte[] value)
{
int count = 1 + 4 * 6;
if (value.Length < count)
return false;
int idx = 0;
NeedPush = BitConverter.ToBoolean(value, idx);
idx++;
len = BitConverter.ToInt32(value, idx);
idx += 4;
mix = BitConverter.ToInt32(value, idx);
idx += 4;
fromBoltNo = BitConverter.ToInt32(value, idx);
idx += 4;
toBoltNo = BitConverter.ToInt32(value, idx);
idx += 4;
edit_position = BitConverter.ToInt32(value, idx);
idx += 4;
int length = BitConverter.ToInt32(value, idx);
idx += 4;
count += length * 20;
if (value.Length < count)
return false;
if (length > 0)
{
result = new TrendDataCell[length];
for (int i = 0; i < length; i++)
{
result[i] = new TrendDataCell();
if (!result[i].TryParse(value, idx))
{
return false;
}
idx += 20;
}
}
else
{
result = null;
}
return true;
}
#endregion
}
public class Pack_CallClosePushTrendData : IPack
{
public int mix;//混合数
public int fromBoltNo;//开始分区index
public int toBoltNo;//结束分区index
#region IPack 成员
public virtual byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(mix));
buf.AddRange(BitConverter.GetBytes(fromBoltNo));
buf.AddRange(BitConverter.GetBytes(toBoltNo));
return buf.ToArray();
}
public virtual bool TryParse(byte[] value)
{
int count = 3 * 4;
if (value.Length < count)
return false;
int idx = 0;
mix = BitConverter.ToInt32(value, idx);
idx += 4;
fromBoltNo = BitConverter.ToInt32(value, idx);
idx += 4;
toBoltNo = BitConverter.ToInt32(value, idx);
idx += 4;
return true;
}
#endregion
}
public class Pack_CallGetListReponse : IPack2
{
public List<FR_DATA> list = new List<FR_DATA>();
#region IPack 成员
public virtual byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(list.Count));
for (int i = 0; i < list.Count; i++)
{
buf.AddRange(list[i].ToBytes());
}
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
int cnt;
return TryParse(value, 0, out cnt);
}
public bool TryParse(byte[] value, int index, out int cnt)
{
cnt = 4;
if (value.Length < (index + cnt))
return false;
int idx = index;
int len = BitConverter.ToInt32(value, idx);
idx += 4;
list.Clear();
if (len <= 0)
{
return true;
}
for (int i = 0; i < len; i++)
{
int c;
FR_DATA t = new FR_DATA();
if (!t.TryParse(value, idx, out c))
return false;
list.Add(t);
idx += c;
cnt += c;
}
return true;
}
#endregion
}
public class Pack_PushChanged : IPack2
{
public NotifyDatasChangedAction Action;
public FR_DATA data;
#region IPack 成员
public virtual byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes((int)Action));
if (data == null)
data = new FR_DATA();
buf.AddRange(data.ToBytes());
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
int cnt;
return TryParse(value, 0, out cnt);
}
public bool TryParse(byte[] value, int index, out int cnt)
{
cnt = 4;
if (value.Length < (index + cnt))
return false;
int idx = index;
Action = (NotifyDatasChangedAction)BitConverter.ToInt32(value, idx);
idx += 4;
int c;
FR_DATA t = new FR_DATA();
if (!t.TryParse(value, idx, out c))
return false;
idx += c;
cnt += c;
data = t;
return true;
}
#endregion
}
public class Pack_Params
{
public int count;
public int currentbookmark;
public int nbolts;
public int boltNo1st;
#region IPack实现
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(count));
buf.AddRange(BitConverter.GetBytes(currentbookmark));
buf.AddRange(BitConverter.GetBytes(nbolts));
buf.AddRange(BitConverter.GetBytes(boltNo1st));
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
int cnt = 4*4;
if (value.Length < cnt)
return false;
int idx = 0;
count = BitConverter.ToInt32(value, idx);
idx += 4;
currentbookmark = BitConverter.ToInt32(value, idx);
idx += 4;
nbolts = BitConverter.ToInt32(value, idx);
idx += 4;
boltNo1st = BitConverter.ToInt32(value, idx);
idx += 4;
return true;
}
#endregion
}
#endregion
#region GET/SET/CALL/PUSH
#region GET
/// <summary>
/// Pack_Params
/// </summary>
public const UInt16 GET_PARAMS = 15;
#endregion
#region CALL
/// <summary>
/// Pack_CallGetFrameDataParam
/// Pack_CallGetFrameDataReturn
/// </summary>
public const UInt16 CALL_GET_FRAMEDATA = 1;//横向
/// <summary>
/// Pack_CallClosePushFrameData
/// </summary>
public const UInt16 CALL_CLOSE_PUSH_FRAMEDATA = 2;//关闭推送
/// <summary>
/// param:Pack_CallGetTrendDataParam;
/// return:Pack_CallGetTrendDataReturn
/// </summary>
public const UInt16 CALL_GET_TRENDDATA = 3;//获取指定分区范围的纵向趋势图
/// <summary>
/// Pack_CallClosePushTrendData
/// </summary>
public const UInt16 CALL_CLOSE_PUSH_TRENDDATA = 4;//关闭推送
/// <summary>
/// no pack
/// </summary>
public const UInt16 CALL_CLEAR = 6;//清空
/// <summary>
/// Pack_CallPushNewFrameDataParam
/// Pack_CallPushNewFrameDataReturn
/// </summary>
public const UInt16 CALL_PUSH_NEWFRAMEDATA = 7;//横向
/// <summary>
/// Pack_CallClosePushNewFrameData
/// </summary>
public const UInt16 CALL_CLOSE_PUSH_NEWFRAMEDATA = 8;//关闭推送
/// <summary>
/// Pack_CallGetFrameDataMixRequest
/// Pack_CallGetFrameDataMixReponse
/// </summary>
public const UInt16 CALL_GET_FRAMEDATAMIX = 9;//横向
/// <summary>
/// Pack_CallClosePushFrameDataMixRequest
/// </summary>
public const UInt16 CALL_CLOSE_PUSH_FRAMEDATAMIX = 10;//关闭推送
/// <summary>
/// 获取最新的10幅数据
/// Reponse: Pack_CallGetListReponse < FR_DATA >
/// </summary>
public const UInt16 CALL_GET_LIST_NEW_10 = 11;
/// <summary>
/// 获取最新的10幅数据其它数据
/// Reponse: Pack_CallGetListReponse < FR_DATA >
/// </summary>
public const UInt16 CALL_GET_LIST_OTHER = 12;
#endregion
#region PUSH
//永远没有push,用callfunction 推送回去
/// <summary>
/// Pack_Params
/// </summary>
public const UInt16 PUSH_PARAMS = 15;
/// <summary>
/// Reponse: FR_DATA
/// </summary>
public const UInt16 PUSH_CHANGED = 16;
#endregion
#endregion
}
}