-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.cs
510 lines (426 loc) · 17.5 KB
/
Main.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
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ExportHistorianTagDataToCSV
{
public partial class Main : Form
{
private readonly HistorianDA histDA = new HistorianDA();
public class DateRange
{
public int Id { get; set; }
public DateTime From { get; set; }
public DateTime To { get; set; }
}
public List<DateRange> dateRangeList { get; set; }
public List<DateRange> DateRangeList
{
get { return dateRangeList; }
set { dateRangeList = value; }
}
public List<string> tagNameList { get; set; }
public List<string> TagNameList
{
get { return tagNameList; }
set { tagNameList = value; }
}
public class ComboBoxItem
{
public string Text { get; set; }
public object Value { get; set; }
public override string ToString()
{
return Text;
}
}
public Main()
{
InitializeComponent();
InitializeForm();
TagNameList = new List<string>();
DateRangeList = new List<DateRange>();
}
private void InitializeForm()
{
groupFilterControls.Enabled = false;
groupQueryOptions.Enabled = false;
btnExport.Enabled = false;
lblServerName.Text = histDA.IHistSrv;
rbSamplingType1.Checked = true;
dtStartDateTime.MaxDate = DateTime.Now.Date;
dtEndDateTime.MaxDate = DateTime.Now.Date;
dtStartDateTime.Value = DateTime.Now.Date.AddDays(-1);
dtEndDateTime.Value = DateTime.Now.Date;
comboSamplingTimeUnit.SelectedIndex = 0;
}
private void btnServerConn_Click(object sender, EventArgs e)
{
if (!histDA.IsConnected)
{
histDA.Connect();
if (histDA.IsConnected)
{
lblServerName.ForeColor = Color.Green;
btnServerConn.Text = "Disconnect";
groupFilterControls.Enabled = true;
groupQueryOptions.Enabled = true;
btnExport.Enabled = true;
}
}
else
{
histDA.Disconnect();
if (!histDA.IsConnected)
{
lblServerName.ForeColor = Color.Red;
btnServerConn.Text = "Connect";
groupFilterControls.Enabled = false;
groupQueryOptions.Enabled = false;
btnExport.Enabled = false;
}
}
}
private void btnFilterTag_Click(object sender, EventArgs e)
{
Cursor = Cursors.WaitCursor;
if (histDA.IsConnected)
{
string filterText = tbTagFilterInput.Text;
if (!string.IsNullOrWhiteSpace(filterText))
{
var tagList = histDA.QueryFilteredTags(filterText);
if (tagList != null && tagList.Count != 0)
{
lblFilteredTagCount.Text = tagList.Count + " tag have been found";
comboTagList.DataSource = tagList.ToList();
btnAddToQueryList.Enabled = true;
}
else
{
btnAddToQueryList.Enabled = false;
MessageBox.Show("No tags have been found!");
}
}
else
{
MessageBox.Show("The tag filter textbox is empty! Use the mask BC.* to query all the tags.");
}
}
else
{
MessageBox.Show("First, establish the connection with the server.");
}
Cursor = Cursors.Default;
}
private void rbSamplingType1_CheckedChanged(object sender, EventArgs e)
{
var rb = sender as RadioButton;
if (rb.Checked)
{
numIntervalSampleNr.Enabled = true;
comboSamplingTimeUnit.Enabled = true;
numSampleNr.Value = 0;
numSampleNr.Enabled = false;
}
}
private void rbSamplingType2_CheckedChanged(object sender, EventArgs e)
{
var rb = sender as RadioButton;
if (rb.Checked)
{
numIntervalSampleNr.Value = 0;
numIntervalSampleNr.Enabled = false;
comboSamplingTimeUnit.Enabled = false;
numSampleNr.Enabled = true;
}
}
private async void btnExport_Click(object sender, EventArgs e)
{
var btn = sender as Button;
btn.Enabled = false;
btn.Text = "Please wait...";
try
{
uint numOfSamples = 0;
if(DateRangeList.Count > 0 && TagNameList.Count > 0)
{
string samplingTimeUnit = comboSamplingTimeUnit.Text;
if (!samplingTimeUnit.In("Minutes", "Hours"))
throw new InvalidOperationException("Sampling unit is not set!");
int numIntervalSamples = (int)numIntervalSampleNr.Value;
if (numIntervalSamples != 0)
{
if (rbSamplingType1.Checked)
{
foreach (var dateInterval in DateRangeList)
{
if (samplingTimeUnit == "Minutes")
{
numOfSamples = (uint)(numIntervalSamples * (dateInterval.To - dateInterval.From).TotalMinutes);
}
if (samplingTimeUnit == "Hours")
{
numOfSamples = (uint)(numIntervalSamples * (dateInterval.To - dateInterval.From).TotalHours);
}
}
if (numOfSamples < 16777216)
{
foreach (string tagName in TagNameList)
{
var tagData = new DataTable();
foreach (var dateInterval in DateRangeList)
{
if (!samplingTimeUnit.In("Minutes", "Hours")) return;
numOfSamples = (uint)numIntervalSampleNr.Value;
if (numOfSamples == 0)
{
MessageBox.Show("Please specify the number of the samples!");
return;
}
if (samplingTimeUnit == "Minutes")
{
numOfSamples = (uint)(numIntervalSamples * (dateInterval.To - dateInterval.From).TotalMinutes);
}
if (samplingTimeUnit == "Hours")
{
numOfSamples = (uint)(numIntervalSamples * (dateInterval.To - dateInterval.From).TotalHours);
}
tagData.Merge(await InterpolatedDataQueryAsync(dateInterval.From, dateInterval.To, numOfSamples, tagName));
}
ConvertAndSaveToCSV(tagData, tagName);
}
}
else
{
MessageBox.Show("The number of samles are too high, over 16 million! Change the query interval shorter or the number of smaples lower.");
}
}
}
else
{
MessageBox.Show("The number of samles is zero!");
}
if (rbSamplingType2.Checked)
{
numOfSamples = (uint)numSampleNr.Value;
if (numOfSamples != 0 && numOfSamples < 16777216)
{
foreach (string tagName in TagNameList)
{
var tagData = await InterpolatedDataQueryAsync(DateRangeList[0].From, DateRangeList[0].To, numOfSamples, tagName);
ConvertAndSaveToCSV(tagData, tagName);
}
}
else
{
MessageBox.Show("Please specify the number of the samples!");
}
}
}
else
{
MessageBox.Show("Please specify at least one tag and one date interval!");
}
}
catch(Exception ex)
{
MessageBox.Show("Error during processing data: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
btn.Enabled = true;
btn.Text = "Export .csv";
}
}
private void comboSamplingTimeUnit_SelectedIndexChanged(object sender, EventArgs e)
{
var combo = sender as ComboBox;
if(combo.Text == "Minutes")
{
numIntervalSampleNr.Maximum = 240;
}
else
{
numIntervalSampleNr.Maximum = 14400;
}
}
private async Task<DataTable> InterpolatedDataQueryAsync(DateTime st, DateTime et, uint samples, string tagName)
{
try
{
return await Task.Run(() => histDA.QueryTagInterpolatedValues(st, et, samples, tagName));
}
catch(Exception ex)
{
MessageBox.Show("An error happened during tag data query: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return null;
}
}
private void ConvertAndSaveToCSV(DataTable tagData, string tagName)
{
const string header = "Tagname;Value;Quality;Timestamp";
const string filter = "CSV file (*.csv)|*.csv| All Files (*.*)|*.*";
SaveFileDialog saveFileDialog1 = new SaveFileDialog
{
Filter = filter,
FileName = tagName
};
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
string filename = saveFileDialog1.FileName;
using (StreamWriter swr =
new StreamWriter(File.Open(filename, FileMode.CreateNew), Encoding.Default, 1000000))
{
swr.WriteLine(header);
foreach (DataRow dr in tagData.Rows)
{
swr.WriteLine(string.Join(";", dr.ItemArray));
}
swr.Close();
}
MessageBox.Show("File sucessfully saved.", "File saved", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
private void Main_FormClosing(object sender, FormClosingEventArgs e)
{
histDA.Disconnect();
}
private void btnAddToQueryList_Click(object sender, EventArgs e)
{
string tagName = (string)comboTagList.SelectedValue;
if (!string.IsNullOrEmpty(tagName))
{
if (!TagNameList.Contains(tagName))
{
TagNameList.Add(tagName);
comboQueryTagList.DataSource = new BindingSource(TagNameList, null);
if (TagNameList.Count > 0)
{
btnRemoveFromQueryList.Enabled = true;
}
lblQueryTagCount.Text = TagNameList.Count.ToString() + " tag(s) have been added";
}
}
else
{
MessageBox.Show("Please specify a tag!");
}
}
private void btnRemoveFromQueryList_Click(object sender, EventArgs e)
{
if (comboQueryTagList.SelectedIndex > -1)
{
string tagName = (string)comboQueryTagList.SelectedValue;
if (!string.IsNullOrEmpty(tagName))
{
if (TagNameList.Contains(tagName))
{
TagNameList.Remove(tagName);
comboQueryTagList.DataSource = new BindingSource(TagNameList, null);
if (TagNameList.Count == 0)
{
comboQueryTagList.Text = string.Empty;
btnRemoveFromQueryList.Enabled = false;
}
lblQueryTagCount.Text = "Query tag count: " + TagNameList.Count.ToString();
}
}
else
{
MessageBox.Show("Please select a tag from the list!");
}
}
}
private void btnAddIntervalToQueryList_Click(object sender, EventArgs e)
{
DateTime queryStartTime, queryEndTime;
queryStartTime = dtStartDateTime.Value;
queryEndTime = dtEndDateTime.Value;
if(queryStartTime < queryEndTime)
{
if(DateRangeList.Count == 0 || !IsThereOverlap(DateRangeList, queryStartTime, queryEndTime))
{
var dateRange = new DateRange()
{
Id = DateRangeList.Count == 0 ? 1 : DateRangeList.Max(x => x.Id) + 1,
From = queryStartTime,
To = queryEndTime
};
DateRangeList.Add(dateRange);
comboQueryDateRangeList.Items.Clear();
foreach (DateRange dr in DateRangeList.OrderBy(x => x.From))
{
var queryDateRangeItem = new ComboBoxItem
{
Value = dr.Id,
Text = $"{dr.From} - {dr.To}"
};
comboQueryDateRangeList.Items.Add(queryDateRangeItem);
}
comboQueryDateRangeList.SelectedIndex = 0;
lblFilteredDateIntervalCount.Text = "Date range count: " + DateRangeList.Count.ToString();
btnRemoveIntervalFromQueryList.Enabled = true;
}
else
{
MessageBox.Show("There are overlapping dates! Please check the selected date interval.");
}
}
else
{
MessageBox.Show("Please specify the query start and end dates correctly! Start date must be smaller than end date.");
}
}
private void btnRemoveIntervalFromQueryList_Click(object sender, EventArgs e)
{
if (comboQueryDateRangeList.SelectedIndex > -1)
{
var dateIntervalId = (ComboBoxItem)comboQueryDateRangeList.SelectedItem;
DateRangeList.RemoveAll(x => x.Id == (int)dateIntervalId.Value);
comboQueryDateRangeList.Items.Clear();
if (DateRangeList.Count > 0)
{
foreach (DateRange dr in DateRangeList.OrderBy(x => x.From))
{
var queryDateRangeItem = new ComboBoxItem
{
Value = dr.Id,
Text = $"{dr.From} - {dr.To}"
};
comboQueryDateRangeList.Items.Add(queryDateRangeItem);
}
comboQueryDateRangeList.SelectedIndex = 0;
}
else
{
comboQueryDateRangeList.Text = string.Empty;
btnRemoveIntervalFromQueryList.Enabled = false;
}
lblFilteredDateIntervalCount.Text = "Date range count: " + DateRangeList.Count.ToString();
}
}
public bool IsThereOverlap(List<DateRange> dateList, DateTime start, DateTime end)
{
foreach(DateRange dr in dateList.OrderBy(x => x.From))
{
return Min(dr.From, dr.To) < Max(start, end) && Max(dr.From, dr.To) > Min(start, end);
}
return false;
}
public static DateTime Max(DateTime d1, DateTime d2)
{
return d1 > d2 ? d1 : d2;
}
public static DateTime Min(DateTime d1, DateTime d2)
{
return d2 > d1 ? d1 : d2;
}
}
}