-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFneBase.cs
More file actions
1352 lines (1238 loc) · 44.1 KB
/
FneBase.cs
File metadata and controls
1352 lines (1238 loc) · 44.1 KB
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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// SPDX-License-Identifier: AGPL-3.0-only
/**
* Digital Voice Modem - Fixed Network Equipment Core Library
* AGPLv3 Open Source. Use is subject to license terms.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* @package DVM / Fixed Network Equipment Core Library
* @license AGPLv3 License (https://opensource.org/licenses/AGPL-3.0)
*
* Copyright (C) 2022-2025 Bryan Biedenkapp, N2PLL
*
*/
using System;
using System.Net;
using System.Security.Cryptography;
using fnecore.DMR;
using fnecore.P25;
using fnecore.NXDN;
using fnecore.Analog;
using fnecore.EDAC;
using fnecore.P25.KMM;
namespace fnecore
{
/// <summary>
/// Structure containing detailed information about a connected peer.
/// </summary>
public class PeerDetails
{
/// <summary>
/// Identity
/// </summary>
public string Identity;
/// <summary>
/// Receive Frequency
/// </summary>
public uint RxFrequency;
/// <summary>
/// Transmit Frequency
/// </summary>
public uint TxFrequency;
/// <summary>
/// Exteral Peer
/// </summary>
public bool ExternalPeer;
/// <summary>
/// Conventional Peer
/// </summary>
public bool ConventionalPeer;
/// <summary>
/// System View
/// </summary>
public bool SysView;
/// <summary>
/// Software Identifier
/// </summary>
public string Software;
/*
** System Information
*/
/// <summary>
/// Latitude
/// </summary>
public double Latitude;
/// <summary>
/// Longitude
/// </summary>
public double Longitude;
/// <summary>
/// Height
/// </summary>
public int Height;
/// <summary>
/// Location
/// </summary>
public string Location;
/*
** Channel Data
*/
/// <summary>
/// Transmit Offset (Mhz)
/// </summary>
public float TxOffsetMhz;
/// <summary>
/// Channel Bandwidth (Khz)
/// </summary>
public float ChBandwidthKhz;
/// <summary>
/// Channel ID
/// </summary>
public byte ChannelID;
/// <summary>
/// Channel Number
/// </summary>
public uint ChannelNo;
/// <summary>
/// Transmit Power
/// </summary>
public uint TxPower;
/*
** REST API
*/
/// <summary>
/// REST API Password
/// </summary>
public string Password;
/// <summary>
/// REST API Port
/// </summary>
public int Port;
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="PeerDetails"/> class.
/// </summary>
public PeerDetails()
{
/* stub */
}
} // public class PeerDetails
/// <summary>
/// Structure containing information about a connected peer.
/// </summary>
public class PeerInformation
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerID;
/// <summary>
/// Stream ID
/// </summary>
public uint StreamID;
/// <summary>
/// RTP Packet Sequence
/// </summary>
public ushort PacketSequence;
/// <summary>
/// Next expected RTP Packet Sequence
/// </summary>
public ushort NextPacketSequence;
/// <summary>
/// Peer IP EndPoint
/// </summary>
public IPEndPoint EndPoint;
/// <summary>
/// Salt value used for authentication.
/// </summary>
public uint Salt;
/// <summary>
/// Connection State
/// </summary>
public ConnectionState State;
/// <summary>
/// Number of pings received.
/// </summary>
public int PingsReceived;
/// <summary>
/// Date/Time of last ping.
/// </summary>
public DateTime LastPing;
/// <summary>
/// Peer Details Structure
/// </summary>
public PeerDetails Details = null;
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="PeerInformation"/> class.
/// </summary>
public PeerInformation()
{
Details = new PeerDetails();
}
} // public class PeerInformation
/// <summary>
/// Represents a talkgroup as announced from the FNE master.
/// </summary>
public class TalkgroupEntry
{
/// <summary>
/// Talkgroup ID.
/// </summary>
public uint ID;
/// <summary>
/// Slot Number.
/// </summary>
public byte Slot;
/// <summary>
///
/// </summary>
public bool Affiliated;
/// <summary>
///
/// </summary>
public bool NonPreferred;
/// <summary>
///
/// </summary>
public bool Invalid;
} // public class TalkgroupEntry
/// <summary>
/// Represents high availiability IP address data.
/// </summary>
public class PeerHAIPEntry
{
/// <summary>
/// IP Address
/// </summary>
public string Address;
/// <summary>
/// Port Number
/// </summary>
public int Port;
/// <summary>
///
/// </summary>
public IPEndPoint EndPoint;
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="PeerHAIPEntry"/> class.
/// </summary>
public PeerHAIPEntry()
{
Address = "127.0.0.1";
Port = 62031; // this should be a constant not a magic number -- but I digress
EndPoint = new IPEndPoint(IPAddress.Parse(Address), Port);
}
/// <summary>
/// Initializes a new instance of the <see cref="PeerHAIPEntry"/> class.
/// </summary>
/// <param name="address">IP Address</param>
/// <param name="port">Port number</param>
public PeerHAIPEntry(string address, int port)
{
Address = address;
Port = port;
EndPoint = new IPEndPoint(IPAddress.Parse(Address), Port);
}
} // public class PeerHAIPEntry
/// <summary>
/// Callback used to validate incoming DMR data.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="slot">Slot Number</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="frameType">Frame Type</param>
/// <param name="dataType">DMR Data Type</param>
/// <param name="streamId">Stream ID</param>
/// <param name="message">Raw message data</param>
/// <returns>True, if data stream is valid, otherwise false.</returns>
public delegate bool DMRDataValidate(uint peerId, uint srcId, uint dstId, byte slot, CallType callType, FrameType frameType, DMRDataType dataType, uint streamId, byte[] message);
/// <summary>
/// Event used to process incoming DMR data.
/// </summary>
public class DMRDataReceivedEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Source Address
/// </summary>
public uint SrcId { get; }
/// <summary>
/// Destination Address
/// </summary>
public uint DstId { get; }
/// <summary>
/// Slot Number
/// </summary>
public byte Slot { get; }
/// <summary>
/// Call Type (Group or Private)
/// </summary>
public CallType CallType { get; }
/// <summary>
/// Frame Type
/// </summary>
public FrameType FrameType { get; }
/// <summary>
/// DMR Data Type
/// </summary>
public DMRDataType DataType { get; }
/// <summary>
///
/// </summary>
public byte n { get; }
/// <summary>
/// RTP Packet Sequence
/// </summary>
public ushort PacketSequence { get; }
/// <summary>
/// Stream ID
/// </summary>
public uint StreamId { get; }
/// <summary>
/// Raw message data
/// </summary>
public byte[] Data { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="DMRDataReceivedEvent"/> class.
/// </summary>
private DMRDataReceivedEvent()
{
/* stub */
}
/// <summary>
/// Initializes a new instance of the <see cref="DMRDataReceivedEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="slot">Slot Number</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="frameType">Frame Type</param>
/// <param name="dataType">DMR Data Type</param>
/// <param name="n"></param>
/// <param name="pktSeq">RTP Packet Sequence</param>
/// <param name="streamId">Stream ID</param>
/// <param name="data">Raw message data</param>
public DMRDataReceivedEvent(uint peerId, uint srcId, uint dstId, byte slot, CallType callType, FrameType frameType, DMRDataType dataType, byte n, ushort pktSeq, uint streamId, byte[] data) : base()
{
this.PeerId = peerId;
this.SrcId = srcId;
this.DstId = dstId;
this.Slot = slot;
this.CallType = callType;
this.FrameType = frameType;
this.DataType = dataType;
this.n = n;
this.PacketSequence = pktSeq;
this.StreamId = streamId;
this.Data = new byte[data.Length];
Buffer.BlockCopy(data, 0, Data, 0, data.Length);
}
} // public class DMRDataReceivedEvent : EventArgs
/// <summary>
/// Event used to process incoming DMR In-Call control data.
/// </summary>
public class DMRInCallControlEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Destination Address
/// </summary>
public uint DstId { get; }
/// <summary>
/// Slot Number
/// </summary>
public byte Slot { get; }
/// <summary>
/// In-Call Control Command
/// </summary>
public byte Command { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="DMRInCallControlEvent"/> class.
/// </summary>
private DMRInCallControlEvent()
{
/* stub */
}
/// <summary>
/// Initializes a new instance of the <see cref="DMRInCallControlEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="dstId">Destination Address</param>
/// <param name="slot">Slot Number</param>
/// <param name="command">In-Call Command</param>
public DMRInCallControlEvent(uint peerId, uint dstId, byte slot, byte command) : base()
{
this.PeerId = peerId;
this.DstId = dstId;
this.Slot = slot;
this.Command = command;
}
} // public class DMRDataReceivedEvent : EventArgs
/// <summary>
/// Callback used to validate incoming P25 data.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="duid">P25 DUID</param>
/// <param name="frameType">Frame Type</param>
/// <param name="streamId">Stream ID</param>
/// <param name="message">Raw message data</param>
/// <returns>True, if data stream is valid, otherwise false.</returns>
public delegate bool P25DataValidate(uint peerId, uint srcId, uint dstId, CallType callType, P25DUID duid, FrameType frameType, uint streamId, byte[] message);
/// <summary>
/// Event used to process incoming P25 data.
/// </summary>
public class P25DataReceivedEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Source Address
/// </summary>
public uint SrcId { get; }
/// <summary>
/// Destination Address
/// </summary>
public uint DstId { get; }
/// <summary>
/// Call Type (Group or Private)
/// </summary>
public CallType CallType { get; }
/// <summary>
/// P25 DUID
/// </summary>
public P25DUID DUID { get; }
/// <summary>
/// Frame Type
/// </summary>
public FrameType FrameType { get; }
/// <summary>
/// RTP Packet Sequence
/// </summary>
public ushort PacketSequence { get; }
/// <summary>
/// Stream ID
/// </summary>
public uint StreamId { get; }
/// <summary>
/// Raw message data
/// </summary>
public byte[] Data { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="P25DataReceivedEvent"/> class.
/// </summary>
private P25DataReceivedEvent()
{
/* stub */
}
/// <summary>
/// Initializes a new instance of the <see cref="P25DataPreprocessEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="duid">P25 DUID</param>
/// <param name="frameType">Frame Type</param>
/// <param name="pktSeq">RTP Packet Sequence</param>
/// <param name="streamId">Stream ID</param>
/// <param name="data">Raw message data</param>
public P25DataReceivedEvent(uint peerId, uint srcId, uint dstId, CallType callType, P25DUID duid, FrameType frameType, ushort pktSeq, uint streamId, byte[] data) : base()
{
this.PeerId = peerId;
this.SrcId = srcId;
this.DstId = dstId;
this.CallType = callType;
this.DUID = duid;
this.FrameType = frameType;
this.PacketSequence = pktSeq;
this.StreamId = streamId;
this.Data = new byte[data.Length];
Buffer.BlockCopy(data, 0, Data, 0, data.Length);
}
} // public class P25DataReceivedEvent : EventArgs
/// <summary>
/// Event used to process incoming P25 In-Call control data.
/// </summary>
public class P25InCallControlEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Destination Address
/// </summary>
public uint DstId { get; }
/// <summary>
/// In-Call Control Command
/// </summary>
public byte Command { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="P25InCallControlEvent"/> class.
/// </summary>
private P25InCallControlEvent()
{
/* stub */
}
/// <summary>
/// Initializes a new instance of the <see cref="P25InCallControlEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="dstId">Destination Address</param>
/// <param name="command">In-Call Command</param>
public P25InCallControlEvent(uint peerId, uint dstId, byte command) : base()
{
this.PeerId = peerId;
this.DstId = dstId;
this.Command = command;
}
} // public class P25InCallControlEvent : EventArgs
/// <summary>
/// Callback used to validate incoming NXDN data.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="messageType">NXDN Message Type</param>
/// <param name="frameType">Frame Type</param>
/// <param name="streamId">Stream ID</param>
/// <param name="message">Raw message data</param>
/// <returns>True, if data stream is valid, otherwise false.</returns>
public delegate bool NXDNDataValidate(uint peerId, uint srcId, uint dstId, CallType callType, NXDNMessageType messageType, FrameType frameType, uint streamId, byte[] message);
/// <summary>
/// Event used to process incoming NXDN data.
/// </summary>
public class NXDNDataReceivedEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Source Address
/// </summary>
public uint SrcId { get; }
/// <summary>
/// Destination Address
/// </summary>
public uint DstId { get; }
/// <summary>
/// Call Type (Group or Private)
/// </summary>
public CallType CallType { get; }
/// <summary>
/// NXDN Message Type
/// </summary>
public NXDNMessageType MessageType { get; }
/// <summary>
/// Frame Type
/// </summary>
public FrameType FrameType { get; }
/// <summary>
/// RTP Packet Sequence
/// </summary>
public ushort PacketSequence { get; }
/// <summary>
/// Stream ID
/// </summary>
public uint StreamId { get; }
/// <summary>
/// Raw message data
/// </summary>
public byte[] Data { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="NXDNDataReceivedEvent"/> class.
/// </summary>
private NXDNDataReceivedEvent()
{
/* stub */
}
/// <summary>
/// Initializes a new instance of the <see cref="NXDNDataReceivedEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="messageType">NXDN Message Type</param>
/// <param name="frameType">Frame Type</param>
/// <param name="pktSeq">RTP Packet Sequence</param>
/// <param name="streamId">Stream ID</param>
/// <param name="data">Raw message data</param>
public NXDNDataReceivedEvent(uint peerId, uint srcId, uint dstId, CallType callType, NXDNMessageType messageType, FrameType frameType, ushort pktSeq, uint streamId, byte[] data) : base()
{
this.PeerId = peerId;
this.SrcId = srcId;
this.DstId = dstId;
this.CallType = callType;
this.MessageType = messageType;
this.FrameType = frameType;
this.PacketSequence = pktSeq;
this.StreamId = streamId;
this.Data = new byte[data.Length];
Buffer.BlockCopy(data, 0, Data, 0, data.Length);
}
} // public class NXDNDataReceivedEvent : EventArgs
/// <summary>
/// Event used to process incoming NXDN In-Call control data.
/// </summary>
public class NXDNInCallControlEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Destination Address
/// </summary>
public uint DstId { get; }
/// <summary>
/// In-Call Control Command
/// </summary>
public byte Command { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="NXDNInCallControlEvent"/> class.
/// </summary>
private NXDNInCallControlEvent()
{
/* stub */
}
/// <summary>
/// Initializes a new instance of the <see cref="NXDNInCallControlEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="dstId">Destination Address</param>
/// <param name="command">In-Call Command</param>
public NXDNInCallControlEvent(uint peerId, uint dstId, byte command) : base()
{
this.PeerId = peerId;
this.DstId = dstId;
this.Command = command;
}
} // public class NXDNInCallControlEvent : EventArgs
/// <summary>
/// Callback used to validate incoming analog data.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="audioFrameType">Analog Audio Frame Type</param>
/// <param name="frameType">Frame Type</param>
/// <param name="streamId">Stream ID</param>
/// <param name="message">Raw message data</param>
/// <returns>True, if data stream is valid, otherwise false.</returns>
public delegate bool AnalogDataValidate(uint peerId, uint srcId, uint dstId, CallType callType, AudioFrameType audioFrameType, FrameType frameType, uint streamId, byte[] message);
/// <summary>
/// Event used to process incoming analog data.
/// </summary>
public class AnalogDataReceivedEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Source Address
/// </summary>
public uint SrcId { get; }
/// <summary>
/// Destination Address
/// </summary>
public uint DstId { get; }
/// <summary>
/// Call Type (Group or Private)
/// </summary>
public CallType CallType { get; }
/// <summary>
/// Audio Frame Type
/// </summary>
public AudioFrameType AudioFrameType { get; }
/// <summary>
/// Frame Type
/// </summary>
public FrameType FrameType { get; }
/// <summary>
/// RTP Packet Sequence
/// </summary>
public ushort PacketSequence { get; }
/// <summary>
/// Stream ID
/// </summary>
public uint StreamId { get; }
/// <summary>
/// Raw message data
/// </summary>
public byte[] Data { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="AnalogDataReceivedEvent"/> class.
/// </summary>
private AnalogDataReceivedEvent()
{
/* stub */
}
/// <summary>
/// Initializes a new instance of the <see cref="AnalogDataReceivedEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="audioFrameType">Audio Message Type</param>
/// <param name="frameType">Frame Type</param>
/// <param name="pktSeq">RTP Packet Sequence</param>
/// <param name="streamId">Stream ID</param>
/// <param name="data">Raw message data</param>
public AnalogDataReceivedEvent(uint peerId, uint srcId, uint dstId, CallType callType, AudioFrameType audioFrameType, FrameType frameType, ushort pktSeq, uint streamId, byte[] data) : base()
{
this.PeerId = peerId;
this.SrcId = srcId;
this.DstId = dstId;
this.CallType = callType;
this.AudioFrameType = audioFrameType;
this.FrameType = frameType;
this.PacketSequence = pktSeq;
this.StreamId = streamId;
this.Data = new byte[data.Length];
Buffer.BlockCopy(data, 0, Data, 0, data.Length);
}
} // public class AnalogDataReceivedEvent : EventArgs
/// <summary>
/// Event used to process incoming analog In-Call control data.
/// </summary>
public class AnalogInCallControlEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Destination Address
/// </summary>
public uint DstId { get; }
/// <summary>
/// In-Call Control Command
/// </summary>
public byte Command { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="AnalogInCallControlEvent"/> class.
/// </summary>
private AnalogInCallControlEvent()
{
/* stub */
}
/// <summary>
/// Initializes a new instance of the <see cref="AnalogInCallControlEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="dstId">Destination Address</param>
/// <param name="command">In-Call Command</param>
public AnalogInCallControlEvent(uint peerId, uint dstId, byte command) : base()
{
this.PeerId = peerId;
this.DstId = dstId;
this.Command = command;
}
} // public class AnalogInCallControlEvent : EventArgs
/// <summary>
/// Callback used to process whether or not a peer is being ignored for traffic.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="srcId">Source Address</param>
/// <param name="dstId">Destination Address</param>
/// <param name="slot">Slot Number</param>
/// <param name="callType">Call Type (Group or Private)</param>
/// <param name="frameType">Frame Type</param>
/// <param name="dataType">DMR Data Type</param>
/// <param name="streamId">Stream ID</param>
/// <returns>True, if peer is ignored, otherwise false.</returns>
public delegate bool PeerIgnored(uint peerId, uint srcId, uint dstId, byte slot, CallType callType, FrameType frameType, DMRDataType dataType, uint streamId);
/// <summary>
/// Event when a peer connects.
/// </summary>
public class PeerConnectedEvent : EventArgs
{
/// <summary>
/// Peer ID
/// </summary>
public uint PeerId { get; }
/// <summary>
/// Peer Information
/// </summary>
public PeerInformation Information { get; }
/*
** Methods
*/
/// <summary>
/// Initializes a new instance of the <see cref="PeerConnectedEvent"/> class.
/// </summary>
/// <param name="peerId">Peer ID</param>
/// <param name="peer">Peer Information</param>
public PeerConnectedEvent(uint peerId, PeerInformation peer) : base()
{
this.PeerId = peerId;
this.Information = peer;
}
} // public class PeerConnectedEvent : EventArgs
/// <summary>
/// Event called when a kmm key response is received
/// </summary>
public class KeyResponseEvent : EventArgs
{
/// <summary>
/// KMM Message Id
/// </summary>
public byte MessageId { get; set; }
/// <summary>
/// <see cref="KmmModifyKey"/> instance
/// </summary>
public KmmModifyKey KmmKey { get; set; }
/// <summary>
/// Raw Data
/// </summary>
public byte[] Data { get; set; }
/*
** Methods
*/
public KeyResponseEvent(byte messageId, KmmModifyKey kmmKey, byte[] data) : base()
{
this.MessageId = messageId;
this.KmmKey = kmmKey;
this.Data = data;
}
}
/// <summary>
/// This class implements some base functionality for all other FNE network classes.
/// </summary>
public abstract class FneBase
{
protected readonly string systemName = string.Empty;
protected readonly uint peerId = 0;
protected static Random rand = null;
protected bool isStarted = false;
/*
** Properties
*/
/// <summary>
/// Gets the system name for this <see cref="FneBase"/>.
/// </summary>
public string SystemName => systemName;
/// <summary>
/// Gets the peer ID for this <see cref="FneBase"/>.
/// </summary>
public uint PeerId => peerId;
/// <summary>
/// Flag indicating whether this <see cref="FneBase"/> is running.
/// </summary>
public bool IsStarted => isStarted;
/// <summary>
/// Gets/sets the interval that peers will need to ping the master.
/// </summary>
public int PingTime
{
get;
set;
}
/// <summary>
/// Get/sets the current logging level of the <see cref="FneBase"/> instance.
/// </summary>
public LogLevel LogLevel
{
get;
set;
}
/// <summary>
/// Get/sets a flag that enables dumping the raw recieved packets to the log.
/// </summary>
/// <remarks>This will also require the <see cref="FneBase.LogLevel"/> be set to DEBUG.</remarks>
public bool RawPacketTrace
{
get;
set;
}
/*
** Events/Callbacks
*/
/// <summary>
/// Callback action that handles validating a DMR call stream.
/// </summary>
public DMRDataValidate DMRDataValidate = null;
/// <summary>
/// Event action that handles processing a DMR call stream.
/// </summary>
public event EventHandler<DMRDataReceivedEvent> DMRDataReceived;
/// <summary>
/// Event action that handles processing a DMR In-Call control request.
/// </summary>
public event EventHandler<DMRInCallControlEvent> DMRInCallControl;
/// <summary>
/// Callback action that handles validating a P25 call stream.
/// </summary>
public P25DataValidate P25DataValidate = null;
/// <summary>
/// Event action that handles preprocessing a P25 call stream.
/// </summary>
public event EventHandler<P25DataReceivedEvent> P25DataPreprocess;
/// <summary>
/// Event action that handles processing a P25 call stream.
/// </summary>
public event EventHandler<P25DataReceivedEvent> P25DataReceived;
/// <summary>
/// Event action that handles processing a P25 In-Call control request.
/// </summary>
public event EventHandler<P25InCallControlEvent> P25InCallControl;