-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathConfigurationCell.cs
369 lines (315 loc) · 15.4 KB
/
ConfigurationCell.cs
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
//******************************************************************************************************
// ConfigurationCell.cs - Gbtc
//
// Copyright © 2012, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See
// the NOTICE file distributed with this work for additional information regarding copyright ownership.
// The GPA licenses this file to you under the MIT License (MIT), the "License"; you may
// not use this file except in compliance with the License. You may obtain a copy of the License at:
//
// http://www.opensource.org/licenses/MIT
//
// Unless agreed to in writing, the subject software distributed under the License is distributed on an
// "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Refer to the
// License for the specific language governing permissions and limitations.
//
// Code Modification History:
// ----------------------------------------------------------------------------------------------------
// 11/12/2004 - J. Ritchie Carroll
// Generated original version of source code.
// 09/15/2009 - Stephen C. Wills
// Added new header and license agreement.
// 12/17/2012 - Starlynn Danyelle Gilliam
// Modified Header.
//
//******************************************************************************************************
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.Serialization;
using GSF.Units.EE;
// ReSharper disable VirtualMemberCallInConstructor
namespace GSF.PhasorProtocols.IEEEC37_118
{
/// <summary>
/// Represents the IEEE C37.118 implementation of a <see cref="IConfigurationCell"/> that can be sent or received.
/// </summary>
[Serializable]
public class ConfigurationCell : ConfigurationCellBase
{
#region [ Members ]
// Fields
private FormatFlags m_formatFlags;
#endregion
#region [ Constructors ]
/// <summary>
/// Creates a new <see cref="ConfigurationCell"/>.
/// </summary>
/// <param name="parent">The reference to parent <see cref="IConfigurationFrame"/> of this <see cref="ConfigurationCell"/>.</param>
public ConfigurationCell(IConfigurationFrame parent)
: base(parent, 0, Common.MaximumPhasorValues, Common.MaximumAnalogValues, Common.MaximumDigitalValues)
{
// Define new parsing state which defines constructors for key configuration values
State = new ConfigurationCellParsingState(
PhasorDefinition.CreateNewDefinition,
IEEEC37_118.FrequencyDefinition.CreateNewDefinition,
AnalogDefinition.CreateNewDefinition,
DigitalDefinition.CreateNewDefinition);
}
/// <summary>
/// Creates a new <see cref="ConfigurationCell"/> from specified parameters.
/// </summary>
/// <param name="parent">The reference to parent <see cref="ConfigurationFrame1"/> of this <see cref="ConfigurationCell"/>.</param>
/// <param name="idCode">The numeric ID code for this <see cref="ConfigurationCell"/>.</param>
/// <param name="nominalFrequency">The nominal <see cref="LineFrequency"/> of the <see cref="FrequencyDefinition"/> of this <see cref="ConfigurationCell"/>.</param>
public ConfigurationCell(ConfigurationFrame1 parent, ushort idCode, LineFrequency nominalFrequency)
: this(parent)
{
IDCode = idCode;
NominalFrequency = nominalFrequency;
}
/// <summary>
/// Creates a new <see cref="ConfigurationCell"/> from serialization parameters.
/// </summary>
/// <param name="info">The <see cref="SerializationInfo"/> with populated with data.</param>
/// <param name="context">The source <see cref="StreamingContext"/> for this deserialization.</param>
protected ConfigurationCell(SerializationInfo info, StreamingContext context)
: base(info, context)
{
// Deserialize configuration cell
m_formatFlags = (FormatFlags)info.GetValue("formatFlags", typeof(FormatFlags));
}
#endregion
#region [ Properties ]
/// <summary>
/// Gets a reference to the parent <see cref="ConfigurationFrame1"/> for this <see cref="ConfigurationCell"/>.
/// </summary>
public new ConfigurationFrame1 Parent
{
get => base.Parent as ConfigurationFrame1;
set => base.Parent = value;
}
/// <summary>
/// Gets or sets format flags of this <see cref="ConfigurationCell"/>.
/// </summary>
/// <remarks>
/// These are bit flags, use properties to change basic values.
/// </remarks>
[EditorBrowsable(EditorBrowsableState.Advanced)]
public FormatFlags FormatFlags
{
get => m_formatFlags;
set => m_formatFlags = value;
}
/// <summary>
/// Gets or sets the <see cref="DataFormat"/> for the <see cref="IPhasorDefinition"/> objects in the <see cref="ConfigurationCellBase.PhasorDefinitions"/> of this <see cref="ConfigurationCell"/>.
/// </summary>
public override DataFormat PhasorDataFormat
{
get => (m_formatFlags & FormatFlags.Phasors) > 0 ? DataFormat.FloatingPoint : DataFormat.FixedInteger;
set
{
if (value == DataFormat.FloatingPoint)
m_formatFlags |= FormatFlags.Phasors;
else
m_formatFlags &= ~FormatFlags.Phasors;
}
}
/// <summary>
/// Gets or sets the <see cref="CoordinateFormat"/> for the <see cref="IPhasorDefinition"/> objects in the <see cref="ConfigurationCellBase.PhasorDefinitions"/> of this <see cref="ConfigurationCell"/>.
/// </summary>
public override CoordinateFormat PhasorCoordinateFormat
{
get => (m_formatFlags & FormatFlags.Coordinates) > 0 ? CoordinateFormat.Polar : CoordinateFormat.Rectangular;
set
{
if (value == CoordinateFormat.Polar)
m_formatFlags |= FormatFlags.Coordinates;
else
m_formatFlags &= ~FormatFlags.Coordinates;
}
}
/// <summary>
/// Gets or sets the <see cref="DataFormat"/> of the <see cref="FrequencyDefinition"/> of this <see cref="ConfigurationCell"/>.
/// </summary>
public override DataFormat FrequencyDataFormat
{
get => (m_formatFlags & FormatFlags.Frequency) > 0 ? DataFormat.FloatingPoint : DataFormat.FixedInteger;
set
{
if (value == DataFormat.FloatingPoint)
m_formatFlags |= FormatFlags.Frequency;
else
m_formatFlags &= ~FormatFlags.Frequency;
}
}
/// <summary>
/// Gets or sets the <see cref="DataFormat"/> for the <see cref="IAnalogDefinition"/> objects in the <see cref="ConfigurationCellBase.AnalogDefinitions"/> of this <see cref="ConfigurationCell"/>.
/// </summary>
public override DataFormat AnalogDataFormat
{
get => (m_formatFlags & FormatFlags.Analog) > 0 ? DataFormat.FloatingPoint : DataFormat.FixedInteger;
set
{
if (value == DataFormat.FloatingPoint)
m_formatFlags |= FormatFlags.Analog;
else
m_formatFlags &= ~FormatFlags.Analog;
}
}
/// <summary>
/// Gets the length of the <see cref="HeaderImage"/>.
/// </summary>
protected override int HeaderLength => base.HeaderLength + 10;
/// <summary>
/// Gets the binary header image of the <see cref="ConfigurationCell"/> object.
/// </summary>
protected override byte[] HeaderImage
{
get
{
byte[] buffer = new byte[HeaderLength];
int index = 0;
base.HeaderImage.CopyImage(buffer, ref index, base.HeaderLength);
BigEndian.CopyBytes(IDCode, buffer, index);
BigEndian.CopyBytes((ushort)m_formatFlags, buffer, index + 2);
BigEndian.CopyBytes((ushort)PhasorDefinitions.Count, buffer, index + 4);
BigEndian.CopyBytes((ushort)AnalogDefinitions.Count, buffer, index + 6);
BigEndian.CopyBytes((ushort)DigitalDefinitions.Count, buffer, index + 8);
return buffer;
}
}
/// <summary>
/// Gets the length of the <see cref="FooterImage"/>.
/// </summary>
protected override int FooterLength => base.FooterLength + PhasorDefinitions.Count * PhasorDefinition.ConversionFactorLength + AnalogDefinitions.Count * AnalogDefinition.ConversionFactorLength + DigitalDefinitions.Count * DigitalDefinition.ConversionFactorLength + (Parent.DraftRevision > DraftRevision.Draft6 ? 2 : 0);
/// <summary>
/// Gets the binary footer image of the <see cref="ConfigurationCell"/> object.
/// </summary>
protected override byte[] FooterImage
{
get
{
byte[] buffer = new byte[FooterLength];
int x, index = 0;
// Include conversion factors in configuration cell footer
for (x = 0; x < PhasorDefinitions.Count; x++)
{
if (PhasorDefinitions[x] is PhasorDefinition phasorDefinition)
phasorDefinition.ConversionFactorImage.CopyImage(buffer, ref index, PhasorDefinition.ConversionFactorLength);
}
for (x = 0; x < AnalogDefinitions.Count; x++)
{
if (AnalogDefinitions[x] is AnalogDefinition analogDefinition)
analogDefinition.ConversionFactorImage.CopyImage(buffer, ref index, AnalogDefinition.ConversionFactorLength);
}
for (x = 0; x < DigitalDefinitions.Count; x++)
{
if (DigitalDefinitions[x] is DigitalDefinition digitalDefinition)
digitalDefinition.ConversionFactorImage.CopyImage(buffer, ref index, DigitalDefinition.ConversionFactorLength);
}
// Include nominal frequency
base.FooterImage.CopyImage(buffer, ref index, base.FooterLength);
// Include configuration count (new for version 7.0)
if (Parent.DraftRevision > DraftRevision.Draft6)
BigEndian.CopyBytes(RevisionCount, buffer, index);
return buffer;
}
}
/// <summary>
/// <see cref="Dictionary{TKey,TValue}"/> of string based property names and values for the <see cref="ConfigurationCell"/> object.
/// </summary>
public override Dictionary<string, string> Attributes
{
get
{
Dictionary<string, string> baseAttributes = base.Attributes;
baseAttributes.Add("Format Flags", $"{(int)m_formatFlags}: {m_formatFlags}");
return baseAttributes;
}
}
#endregion
#region [ Methods ]
/// <summary>
/// Parses the binary header image.
/// </summary>
/// <param name="buffer">Binary image to parse.</param>
/// <param name="startIndex">Start index into <paramref name="buffer"/> to begin parsing.</param>
/// <param name="length">Length of valid data within <paramref name="buffer"/>.</param>
/// <returns>The length of the data that was parsed.</returns>
protected override int ParseHeaderImage(byte[] buffer, int startIndex, int length)
{
IConfigurationCellParsingState state = State;
int index = startIndex;
// Parse out station name
index += base.ParseHeaderImage(buffer, startIndex, length);
IDCode = BigEndian.ToUInt16(buffer, index);
m_formatFlags = (FormatFlags)BigEndian.ToUInt16(buffer, index + 2);
// Parse out total phasors, analogs and digitals defined for this device
state.PhasorCount = BigEndian.ToUInt16(buffer, index + 4);
state.AnalogCount = BigEndian.ToUInt16(buffer, index + 6);
state.DigitalCount = BigEndian.ToUInt16(buffer, index + 8);
index += 10;
return index - startIndex;
}
/// <summary>
/// Parses the binary footer image.
/// </summary>
/// <param name="buffer">Binary image to parse.</param>
/// <param name="startIndex">Start index into <paramref name="buffer"/> to begin parsing.</param>
/// <param name="length">Length of valid data within <paramref name="buffer"/>.</param>
/// <returns>The length of the data that was parsed.</returns>
protected override int ParseFooterImage(byte[] buffer, int startIndex, int length)
{
int x, index = startIndex;
// Parse conversion factors from configuration cell footer
for (x = 0; x < PhasorDefinitions.Count; x++)
{
if (PhasorDefinitions[x] is PhasorDefinition phasorDefinition)
index += phasorDefinition.ParseConversionFactor(buffer, index);
}
for (x = 0; x < AnalogDefinitions.Count; x++)
{
if (AnalogDefinitions[x] is AnalogDefinition analogDefinition)
index += analogDefinition.ParseConversionFactor(buffer, index);
}
for (x = 0; x < DigitalDefinitions.Count; x++)
{
if (DigitalDefinitions[x] is DigitalDefinition digitalDefinition)
index += digitalDefinition.ParseConversionFactor(buffer, index);
}
// Parse nominal frequency
index += base.ParseFooterImage(buffer, index, length);
// Parse out configuration count (new for version 7.0)
if (Parent.DraftRevision > DraftRevision.Draft6)
{
RevisionCount = BigEndian.ToUInt16(buffer, index);
index += 2;
}
return index - startIndex;
}
/// <summary>
/// Populates a <see cref="SerializationInfo"/> with the data needed to serialize the target object.
/// </summary>
/// <param name="info">The <see cref="SerializationInfo"/> to populate with data.</param>
/// <param name="context">The destination <see cref="StreamingContext"/> for this serialization.</param>
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData(info, context);
// Serialize configuration cell
info.AddValue("formatFlags", m_formatFlags, typeof(FormatFlags));
}
#endregion
#region [ Static ]
// Static Methods
// Delegate handler to create a new IEEE C37.118 configuration cell
internal static IConfigurationCell CreateNewCell(IChannelFrame parent, IChannelFrameParsingState<IConfigurationCell> state, int index, byte[] buffer, int startIndex, out int parsedLength)
{
ConfigurationCell configCell = new(parent as IConfigurationFrame);
parsedLength = configCell.ParseBinaryImage(buffer, startIndex, 0);
return configCell;
}
#endregion
}
}