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
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RealTimeGraphX
{
/// <summary>
/// Represents an <see cref="IGraphDataPoint"/> base class.
/// </summary>
/// <seealso cref="RealTimeGraphX.IGraphDataPoint" />
public abstract class GraphDataPoint : IGraphDataPoint
{
#region IComparable
/// <summary>
/// Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
/// </summary>
/// <param name="obj">An object to compare with this instance.</param>
/// <returns>
/// A value that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance precedes <paramref name="obj" /> in the sort order. Zero This instance occurs in the same position in the sort order as <paramref name="obj" />. Greater than zero This instance follows <paramref name="obj" /> in the sort order.
/// </returns>
public abstract int CompareTo(object obj);
/// <summary>
/// Determines whether the specified <see cref="System.Object" />, is equal to this instance.
/// </summary>
/// <param name="obj">The <see cref="System.Object" /> to compare with this instance.</param>
/// <returns>
/// <c>true</c> if the specified <see cref="System.Object" /> is equal to this instance; otherwise, <c>false</c>.
/// </returns>
public override bool Equals(object obj)
{
return base.Equals(obj);
}
/// <summary>
/// Returns a hash code for this instance.
/// </summary>
/// <returns>
/// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
/// </returns>
public override int GetHashCode()
{
return base.GetHashCode();
}
#endregion
#region Logical Operators
/// <summary>
/// Implements the operator >.
/// </summary>
/// <returns>
/// The result of the operator.
/// </returns>
public static bool operator >(GraphDataPoint a, GraphDataPoint b)
{
return a.CompareTo(b) == 1;
}
/// <summary>
/// Implements the operator <.
/// </summary>
/// <returns>
/// The result of the operator.
/// </returns>
public static bool operator <(GraphDataPoint a, GraphDataPoint b)
{
return a.CompareTo(b) == -1;
}
/// <summary>
/// Implements the operator ==.
/// </summary>
/// <returns>
/// The result of the operator.
/// </returns>
public static bool operator ==(GraphDataPoint a, GraphDataPoint b)
{
if (Object.ReferenceEquals(a, null) && Object.ReferenceEquals(b, null)) return true;
if (Object.ReferenceEquals(a, null) && !Object.ReferenceEquals(b, null)) return false;
return a.CompareTo(b) == 0;
}
/// <summary>
/// Implements the operator !=.
/// </summary>
/// <returns>
/// The result of the operator.
/// </returns>
public static bool operator !=(GraphDataPoint a, GraphDataPoint b)
{
if (Object.ReferenceEquals(a, null) && Object.ReferenceEquals(b, null)) return false;
if (Object.ReferenceEquals(a, null) && !Object.ReferenceEquals(b, null)) return true;
return a.CompareTo(b) != 0;
}
#endregion
#region Arithmetic Operators
/// <summary>
/// Implements the operator -.
/// </summary>
/// <returns>
/// The result of the operator.
/// </returns>
public static GraphDataPoint operator -(GraphDataPoint a, GraphDataPoint b)
{
return (GraphDataPoint)a.Subtract(b);
}
/// <summary>
/// Implements the operator +.
/// </summary>
/// <returns>
/// The result of the operator.
/// </returns>
public static GraphDataPoint operator +(GraphDataPoint a, GraphDataPoint b)
{
return (GraphDataPoint)a.Add(b);
}
/// <summary>
/// Implements the operator /.
/// </summary>
/// <returns>
/// The result of the operator.
/// </returns>
public static GraphDataPoint operator /(GraphDataPoint a, GraphDataPoint b)
{
return (GraphDataPoint)a.Divide(b);
}
/// <summary>
/// Implements the operator *.
/// </summary>
/// <returns>
/// The result of the operator.
/// </returns>
public static GraphDataPoint operator *(GraphDataPoint a, GraphDataPoint b)
{
return (GraphDataPoint)a.Multiply(b);
}
#endregion
#region IGraphDataPoint
/// <summary>
/// Sums the value of this instance with another instance value and returns the result.
/// </summary>
/// <param name="other">The other instance.</param>
/// <returns></returns>
public abstract IGraphDataPoint Add(IGraphDataPoint other);
/// <summary>
/// Subtract the value of another instance from this instance and returns the result.
/// </summary>
/// <param name="other">The other instance.</param>
/// <returns></returns>
public abstract IGraphDataPoint Subtract(IGraphDataPoint other);
/// <summary>
/// Multiplies the value of this instance with another instance value and returns the result.
/// </summary>
/// <param name="other">The other instance.</param>
/// <returns></returns>
public abstract IGraphDataPoint Multiply(IGraphDataPoint other);
/// <summary>
/// Divides the value of this instance with another instance value and returns the result.
/// </summary>
/// <param name="other">The other instance.</param>
/// <returns></returns>
public abstract IGraphDataPoint Divide(IGraphDataPoint other);
/// <summary>
/// Returns the percentage value of this instance between the specified minimum and maximum values.
/// </summary>
/// <param name="min">The minimum.</param>
/// <param name="max">The maximum.</param>
/// <returns></returns>
public abstract double ComputeRelativePosition(IGraphDataPoint min, IGraphDataPoint max);
/// <summary>
/// Returns the absolute value of the specified percentage value between the specified minimum and maximum values.
/// </summary>
/// <param name="min">The minimum.</param>
/// <param name="max">The maximum.</param>
/// <param name="percentage">The percentage.</param>
/// <returns></returns>
public abstract IGraphDataPoint ComputeAbsolutePosition(IGraphDataPoint min, IGraphDataPoint max, double percentage);
/// <summary>
/// Creates a range of values from the specified minimum and maximum.
/// </summary>
/// <param name="min">The minimum.</param>
/// <param name="max">The maximum.</param>
/// <param name="count">The count.</param>
/// <returns></returns>
public abstract IEnumerable<IGraphDataPoint> CreateRange(IGraphDataPoint min, IGraphDataPoint max, int count);
/// <summary>
/// Gets the inner value.
/// </summary>
/// <returns></returns>
public abstract object GetValue();
/// <summary>
/// Sets the inner value.
/// </summary>
/// <param name="value">The value.</param>
public abstract void SetValue(object value);
/// <summary>
/// Returns a formated string of this data point.
/// </summary>
/// <param name="format">The format.</param>
/// <returns></returns>
public abstract string ToString(string format);
/// <summary>
/// Parses the specified value.
/// </summary>
/// <param name="value">The value.</param>
/// <returns></returns>
public abstract IGraphDataPoint Parse(string value);
#endregion
#region Properties
/// <summary>
/// Gets the type of this graph data point.
/// </summary>
public Type Type
{
get { return GetType(); }
}
#endregion
}
/// <summary>
/// Represents an <see cref="IGraphDataPoint"/> base class.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="TDataType">The type of the data type.</typeparam>
/// <seealso cref="RealTimeGraphX.GraphDataPoint" />
public abstract class GraphDataPoint<T, TDataType> : GraphDataPoint where T : IComparable where TDataType : GraphDataPoint<T, TDataType>
{
#region Properties
/// <summary>
/// Gets or sets the encapsulated data point value.
/// </summary>
public T Value { get; set; }
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="GraphDataPoint{T, TDataType}"/> class.
/// </summary>
public GraphDataPoint()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="GraphDataPoint{T, TDataType}"/> class.
/// </summary>
/// <param name="value">The value.</param>
public GraphDataPoint(T value)
{
Value = value;
}
#endregion
#region IComparable
/// <summary>
/// Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
/// </summary>
/// <param name="obj">An object to compare with this instance.</param>
/// <returns>
/// A value that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance precedes <paramref name="obj" /> in the sort order. Zero This instance occurs in the same position in the sort order as <paramref name="obj" />. Greater than zero This instance follows <paramref name="obj" /> in the sort order.
/// </returns>
public override int CompareTo(object obj)
{
if (Object.ReferenceEquals(obj, null)) return -1;
GraphDataPoint<T, TDataType> b = obj as GraphDataPoint<T, TDataType>;
return Value.CompareTo(b.Value);
}
/// <summary>
/// Determines whether the specified <see cref="System.Object" />, is equal to this instance.
/// </summary>
/// <param name="obj">The <see cref="System.Object" /> to compare with this instance.</param>
/// <returns>
/// <c>true</c> if the specified <see cref="System.Object" /> is equal to this instance; otherwise, <c>false</c>.
/// </returns>
public override bool Equals(object obj)
{
var @base = obj as GraphDataPoint<T, TDataType>;
return @base != null &&
EqualityComparer<T>.Default.Equals(Value, @base.Value);
}
/// <summary>
/// Returns a hash code for this instance.
/// </summary>
/// <returns>
/// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
/// </returns>
public override int GetHashCode()
{
return -1937169414 + EqualityComparer<T>.Default.GetHashCode(Value);
}
#endregion
#region ToString
/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <returns>
/// A <see cref="System.String" /> that represents this instance.
/// </returns>
public override string ToString()
{
return Value.ToString();
}
#endregion
#region IGraphDataPoint
/// <summary>
/// Gets the inner value.
/// </summary>
/// <returns></returns>
public override object GetValue()
{
return Value;
}
/// <summary>
/// Sets the inner value.
/// </summary>
/// <param name="value">The value.</param>
public override void SetValue(object value)
{
Value = (T)value;
}
#endregion
#region Parsing
/// <summary>
/// Parses the specified value and returns a new instance of <see cref="TDataType"/> data point.
/// </summary>
/// <param name="value">The value.</param>
/// <returns></returns>
public static TDataType ParseFrom(String value)
{
return Activator.CreateInstance<TDataType>().Parse(value) as TDataType;
}
#endregion
#region Implicit Operators
/// <summary>
/// Performs an implicit conversion from <see cref="T"/> to <see cref="GraphDataPoint{T, TDataType}"/>.
/// </summary>
/// <param name="value">The value.</param>
/// <returns>
/// The result of the conversion.
/// </returns>
public static implicit operator GraphDataPoint<T, TDataType>(T value)
{
return Activator.CreateInstance(typeof(TDataType), value) as GraphDataPoint<T, TDataType>;
}
/// <summary>
/// Performs an implicit conversion from <see cref="GraphDataPoint{T, TDataType}"/> to <see cref="T"/>.
/// </summary>
/// <param name="instance">The instance.</param>
/// <returns>
/// The result of the conversion.
/// </returns>
public static implicit operator T(GraphDataPoint<T, TDataType> instance)
{
return instance.Value;
}
#endregion
}
}
|