-
Notifications
You must be signed in to change notification settings - Fork 0
/
PIDA.cs
427 lines (338 loc) · 17.7 KB
/
PIDA.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
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
using OSIsoft.AF;
using OSIsoft.AF.Asset;
using OSIsoft.AF.Data;
using OSIsoft.AF.PI;
using OSIsoft.AF.Time;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace CopyTagsRawDataFromGEProficyToOsisoftPI
{
class PIDA : IDisposable
{
#region Statics
//private const string _piSystemName = "WHBC-PIAF";
private const string _piServerName = "WHBC-PIDA";
//public const string _piServerIP = "xxx.xxx.xxx.xxx";
private const string _piDatabaseString = "BC-PIAF";
private static readonly NetworkCredential piCred = new NetworkCredential(@"user", "password", "domain");
private const string _dateFormat = "yyyy.MM.dd. HH:mm:ss";
private const int _pointPageSize = 1000;
private PIServer piServer;
private PISystem piSystem;
private AFDatabase piDatabase;
#endregion
private bool IsConnected()
{
if (piSystem != null && piDatabase != null)
return piSystem.ConnectionInfo.IsConnected && piServer.ConnectionInfo.IsConnected; //returns connection status, the piServer and piSystems should be checked separately
else return false;
}
public PIPoint FindTagPIPointIfExists(string tagName)
{
//PIPoint.FindPIPoint Method doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_PI_PIPoint_FindPIPoint_1.htm
return PIPoint.FindPIPoint(piServer, tagName);
}
public bool InsertTagValues(string tagName, DataTable values, bool compression)
{
Connect();
try
{
var piTag = FindTagPIPointIfExists(tagName);
if (piTag != null)
{
string piPointPath = $@"\\PIServer[{_piServerName}]\PIPoint[{piTag.Name}]";
//AFObject.FindObject Method doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_AFObject_FindObject_2.htm
var afObject = AFObject.FindObject(piPointPath, piDatabase);
//AFUpdateOption enum doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFUpdateOption.htm
var afInsertMode = AFUpdateOption.Insert; //Add the value to the archive. Any existing values at the same time are not overwritten.
if (!compression)
{
afInsertMode = AFUpdateOption.InsertNoCompression; //Add the value to the archive without compression. If this value is written to the snapshot, the previous snapshot value will be written to the archive, without regard to compression settings. Note that if a subsequent snapshot value is written without the InsertNoCompression option, the value added with the InsertNoCompression option is still subject to compression.
}
//AFBufferOption enum doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFBufferOption.htm
var afBuffer = AFBufferOption.BufferIfPossible;
//AFValue Constructor (AFValue) doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_Asset_AFValue__ctor_4.htm
var valuesToWrite = new List<AFValue>();
foreach (DataRow value in values.Rows)
{
var afTimeStamp = new AFTime("*");
if ((DateTime)value["TimeStamp"] != DateTime.MinValue || (DateTime)value["TimeStamp"] <= DateTime.Now) //default -> set AFTime to DateTime.Now
{
afTimeStamp = new AFTime((DateTime)value["TimeStamp"]);
}
if (afObject is AFAttribute afAttribute)
{
var afValue = new AFValue(afAttribute, value["Value"], afTimeStamp)
{
//AFValueStatus enum doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Asset_AFValueStatus.htm
Status = (string)value["Quality"] == "Bad" ? AFValueStatus.Bad : AFValueStatus.Good
};
valuesToWrite.Add(afValue);
}
else
{
valuesToWrite.Clear();
break;
}
}
if (valuesToWrite.Count > 0)
{
//Perform a bulk write. Use a single local call to PI Buffer Subsystem if possible.
//AFListData is the class that provides the bulk write method.
//AFListData.UpdateValues method doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_Data_AFListData_UpdateValues_1.htm
var errors = AFListData.UpdateValues(valuesToWrite, afInsertMode, afBuffer);
//AFListData.UpdateValues method returns AFErrors<AFValue>: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_AFErrors_1.htm
if (errors != null)
{
//TODO: handle errors
Console.WriteLine("!!! An error occured during inserting AFValues.");
return false;
}
return true;
}
else return false;
}
else return false;
}
catch (Exception e)
{
Console.WriteLine("Error at inserting values into PI systems: " + e.Message);
return false;
}
finally
{
Disconnect();
}
}
public bool UpdateTagValues(string tagName, DataTable values, bool replace)
{
Connect();
try
{
var piTag = FindTagPIPointIfExists(tagName);
if (piTag != null)
{
string piPointPath = $@"\\PIServer[{_piServerName}]\PIPoint[{piTag.Name}]";
//AFObject.FindObject Method doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_AFObject_FindObject_2.htm
var afObject = AFObject.FindObject(piPointPath, piDatabase);
//AFUpdateOption enum doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFUpdateOption.htm
var afInsertMode = AFUpdateOption.Replace; //Add the value to the archive. If any values exist at the same time, will overwrite one of them and set its Substituted flag.
//var afInsertMode = AFUpdateOption.NoReplace; //Add the value to the archive only if no value exists at the same time. If a value already exists for that time, the passed value is ignored.
if (!replace)
{
afInsertMode = AFUpdateOption.ReplaceOnly; //Replace an existing value in the archive at the specified time. If no existing value is found, the passed value is ignored.
}
//AFBufferOption enum doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFBufferOption.htm
var afBuffer = AFBufferOption.BufferIfPossible;
//AFValue Constructor (AFValue) doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_Asset_AFValue__ctor_4.htm
var valuesToWrite = new List<AFValue>();
foreach (DataRow value in values.Rows)
{
var afTimeStamp = new AFTime("*");
if ((DateTime)value["TimeStamp"] != DateTime.MinValue || (DateTime)value["TimeStamp"] <= DateTime.Now) //default -> set AFTime to DateTime.Now
{
afTimeStamp = new AFTime((DateTime)value["TimeStamp"]);
}
if (afObject is AFAttribute afAttribute)
{
var afValue = new AFValue(afAttribute, value["Value"], afTimeStamp)
{
//AFValueStatus enum doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Asset_AFValueStatus.htm
Status = (string)value["Quality"] == "Bad" ? AFValueStatus.Bad : AFValueStatus.Good
};
valuesToWrite.Add(afValue);
}
else
{
valuesToWrite.Clear();
break;
}
}
if (valuesToWrite.Count > 0)
{
//Perform a bulk write. Use a single local call to PI Buffer Subsystem if possible.
//AFListData is the class that provides the bulk write method.
//AFListData.UpdateValues method doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_Data_AFListData_UpdateValues_1.htm
var errors = AFListData.UpdateValues(valuesToWrite, afInsertMode, afBuffer);
//AFListData.UpdateValues method returns AFErrors<AFValue>: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_AFErrors_1.htm
if (errors != null)
{
//TODO: handle errors
Console.WriteLine("!!! An error occured during updating AFValues.");
return false;
}
return true;
}
else return false;
}
else return false;
}
catch (Exception e)
{
Console.WriteLine("Error at inserting values into PI systems: " + e.Message);
return false;
}
finally
{
Disconnect();
}
}
public bool DeleteTagValues(AFValues values)
{
Connect();
try
{
//AFUpdateOption enum doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFUpdateOption.htm
var afInsertMode = AFUpdateOption.Remove; //Remove the value from the archive if a value exists at the passed time.
//AFBufferOption enum doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFBufferOption.htm
var afBuffer = AFBufferOption.BufferIfPossible;
//AFValue Constructor (AFValue) doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_Asset_AFValue__ctor_4.htm
var valuesToWrite = new List<AFValue>();
foreach (var afValue in values)
{
valuesToWrite.Add(afValue);
}
if (valuesToWrite.Count > 0)
{
//Perform a bulk write. Use a single local call to PI Buffer Subsystem if possible.
//AFListData is the class that provides the bulk write method.
//AFListData.UpdateValues method doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_Data_AFListData_UpdateValues_1.htm
var errors = AFListData.UpdateValues(valuesToWrite, afInsertMode, afBuffer);
//AFListData.UpdateValues method returns AFErrors<AFValue>: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_AFErrors_1.htm
if (errors != null)
{
//TODO: handle errors
Console.WriteLine("!!! An error occured during removing AFValues.");
return false;
}
return true;
}
else return false;
}
catch (Exception e)
{
Console.WriteLine("Error at inserting values into PI systems: " + e.Message);
return false;
}
finally
{
Disconnect();
}
}
public AFValues QueryTagRawValues(string tagName, DateTime start, DateTime end)
{
var afValues = new AFValues();
Connect();
var afStart = new AFTime(start);
var afEnd = new AFTime(end);
var afTimeRange = new AFTimeRange(afStart, afEnd);
//AFBoundaryType enumeration doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFBoundaryType.htm
var afBoundatyType = AFBoundaryType.Inside; //query points inside start and endtime
var piTag = PIPoint.FindPIPoint(piServer, tagName);
string piPointPath = $@"\\PIServer[{_piServerName}]\PIPoint[{piTag.Name}]";
var afObject = AFObject.FindObject(piPointPath, piDatabase);
if (afObject is AFAttribute afAttribute)
{
//AFBoundaryType enumeration doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFBoundaryType.htm
//AFData.RecordedValues method doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_Data_AFData_RecordedValue.htm
afValues = afAttribute.Data.RecordedValues(
timeRange: afTimeRange,
boundaryType: afBoundatyType,
desiredUOM: null,
filterExpression: null,
includeFilteredValues: false);
}
Disconnect();
return afValues;
}
public AFValues QueryTagRawValues(string tagName, DateTime start, int valueCount, bool goForward)
{
var afValues = new AFValues();
Connect();
var afStart = new AFTime(start);
//AFBoundaryType enumeration doc: https://docs.osisoft.com/bundle/af-sdk/page/html/T_OSIsoft_AF_Data_AFBoundaryType.htm
var afBoundatyType = AFBoundaryType.Inside; //query points inside start and endtime
var piTag = PIPoint.FindPIPoint(piServer, tagName);
string piPointPath = $@"\\PIServer[{_piServerName}]\PIPoint[{piTag.Name}]";
var afObject = AFObject.FindObject(piPointPath, piDatabase);
if (afObject is AFAttribute afAttribute)
{
//AFData.RecordedValuesByCount method doc: https://docs.osisoft.com/bundle/af-sdk/page/html/M_OSIsoft_AF_Data_AFData_RecordedValuesByCount.htm
afValues = afAttribute.Data.RecordedValuesByCount(
startTime: afStart,
count: valueCount,
boundaryType: afBoundatyType,
forward: goForward,
desiredUOM: null,
filterExpression: null,
includeFilteredValues: false);
}
Disconnect();
return afValues;
}
//private void PrintAFValues(AFValues afValues)
//{
// if (afValues != null)
// {
// foreach (var afValue in afValues)
// {
// Console.WriteLine("Tag: {0}, Timestamp (Local): {1}, Value: {2}, Quality: {3}", afValue.PIPoint, afValue.Timestamp.LocalTime, GetStringValue(afValue), afValue.IsGood.ToString());
// }
// }
// else
// {
// Console.WriteLine("Query returned result of NULL. Check Tag and query syntax!");
// }
//}
private void Connect()
{
if (!IsConnected())
{
try
{
//piServer = new PIServers().DefaultPIServer; //connect to the default PI server
piServer = new PIServers()[_piServerName]; //connect to the specified server
if (piServer == null)
throw new InvalidOperationException("PI Server was not found.");
//piServer.Connect(piCred);
piServer.Connect();
piSystem = piServer.PISystem; //trying to get the PI system
if (piSystem == null)
piSystem = new PISystems().DefaultPISystem; //connect to the default PI system
//piSystem = new PISystems()[_piSystemName];
if (piSystem == null)
throw new InvalidOperationException("PI Systems was not found.");
piSystem.Connect(piCred);
piDatabase = piSystem.Databases[_piDatabaseString]; //specify PI system database
if (piDatabase == null)
throw new InvalidOperationException("PI Database was not found.");
}
catch (PIConnectionException ex)
{
Console.WriteLine("PI connection Exception occured: " + ex.Message);
throw;
}
if (!IsConnected())
{
throw new Exception("Unable connect to PI server.");
}
}
}
private void Disconnect()
{
if (IsConnected())
{
piSystem.Disconnect();
piServer.Disconnect();
}
}
private float ConvertTimeStampToFloat(DateTime timeStamp) =>
(float)timeStamp.ToOADate() * 1000000;
public void Dispose() => piSystem.Disconnect(); //simply disconnectingv
}
}