-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparamwarehouse.cpp
545 lines (435 loc) · 12.9 KB
/
paramwarehouse.cpp
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
#include "paramwarehouse.h"
ParamWarehouse::ParamWarehouse()
{
boxSet = NULL;
setSize = 0;
}
int ParamWarehouse::getSetSize()
{
return setSize;
}
ParameterBox ParamWarehouse::getBox(int index)
{
ParameterBox returner;
if ((boxSet != NULL) && (index < setSize)){
returner.setUp(boxSet[index].getCount(), boxSet[index].getAddr(),boxSet[index].getToken(), boxSet[index].getType());
returner.setTitle(boxSet[index].getTitle());
for (int i = 0; i < boxSet[index].getCount(); i++)
{
returner.setMotorParameter(boxSet[index].getMotorParameter(i), i);
}
returner.setByteCount();
returner.setPage(boxSet[index].getPage());
}
return returner;
}
int ParamWarehouse::getBoxType(int index)
{
return boxSet[index].getType();
}
void ParamWarehouse::setBox(ParameterBox newBox, int index)
{
boxSet[index].overwriteBox(newBox);
}
bool ParamWarehouse::getWriteQuery(int boxt, int cardt)
{
return writeCheckList[boxt][cardt];
}
void ParamWarehouse::setWriteQuery(int boxt, int cardt)
{
writeCheckList[boxt][cardt] = false;
}
int ParamWarehouse::getBoxSize(int index)
{
return boxSet[index].getCount();
}
MotorParameter ParamWarehouse::getParameter(int boxt, int cardt)
{
return boxSet[boxt].getMotorParameter(cardt);
}
void ParamWarehouse::upTransient(int boxToken, int cardCount, QString ftransient)
{
QString tValue;
MotorParameter tParam;
tParam = boxSet[boxToken].getMotorParameter(cardCount);
tValue = tParam.getValue();
if (tValue != ftransient){
boxSet[boxToken].upTransient(cardCount, ftransient);
writeCheckList[boxToken][cardCount] = true;
}
}
void ParamWarehouse::toggleBinaryTransient(int boxToken, int cardCount)
{
MotorParameter tempParam = boxSet[boxToken].getMotorParameter(cardCount);
QString oldValue = tempParam.getValue();
if (oldValue == "0"){
QString newTransient = "1";
boxSet[boxToken].upTransient(cardCount, newTransient);
qDebug() << "new transient: " << newTransient;
}
else if (oldValue == "1"){
QString newTransient = "0";
boxSet[boxToken].upTransient(cardCount, newTransient);
qDebug() << "new transient: " << newTransient;
}
else{
MotorParameter temp2 = boxSet[boxToken].getMotorParameter(cardCount);
temp2.setTransient("0");
temp2.setValue("0");
boxSet[boxToken].setMotorParameter(temp2, cardCount);
qDebug() << "button value/transient both reset";
}
writeCheckList[boxToken][cardCount] = true;
}
void ParamWarehouse::flushBinaryTransients()
{
//qDebug() << "flushBinaryTransients(): in; setSize: " << setSize;
for (int i = 0; i < setSize; i++)
{
if (boxSet[i].resetBinaries()){
//qDebug() << "reset box#" << i;
}
else{
//qDebug() << "did not reset box#" << i;
}
}
}
int ParamWarehouse::loadTabFile(QString fileName, QString title, int ptype)
{
QFile file(fileName);
QString fileError;
static int pageCount = 0;
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
{
//error code - failed to open file
fileError = file.errorString();
qDebug() << fileError;
return -1;
}
//data containers to hold intake data
QString inLine;
QList<QString> lines;
QList<QStringList> cutLines;
//read 'file' as a stream of bytes
QTextStream in(&file);
//swallow entire file and close file
while (!in.atEnd())
{
inLine = in.readLine();
lines.append(inLine);
}
file.close();
qDebug() << "loadTabFile(): lineCount: " << lines.count();
//validate linecount greater than 0
if (!lines.count())
{
//error code - file validation
return 1;
}
//create MotorParameter arrays
MotorParameter **unordList = new MotorParameter*[lines.count() - 1];
int unordIndex = 0;
MotorParameter **ordList = new MotorParameter*[lines.count() - 1];
int ordIndex = 0;
unsigned lowestAddr = 0xFF;
int lowIndex = 0;
int checkList[lines.count()];
for (int i = 0; i < lines.count(); i++)
{
checkList[i] = 0;
}
//split lines by comma
for (int i = 0; i < lines.count(); i++)
{
cutLines.append(lines[i].split(','));
}
//create an unordered linked list of motor parameters
QString fname;
int fsize;
int ffactor;
unsigned char faddr;
QString fdesc;
for (int j = 1; j < lines.count(); j++)
{
//scrub whitespaces from the QStrings
/*for (int k = 1; k < 5; k++)
{
for (int l = 0; l < cutLines[j][k].size(); l++)
{
if (cutLines[j][k][l] == ' ')
{
cutLines[j][k].remove(l, 1);
l -= 1;
}
}
}*/
if (cutLines[j][0][0] == ' ')
cutLines[j][0].remove(0, 1);
if (cutLines[j][4][0] == ' ')
cutLines[j][4].remove(0, 1);
//Extract data into distinct variables
//-Name
fname = cutLines[j][0];
//-Size
fsize = intFromQStr(cutLines[j][1]);
//-Factor
ffactor = intFromQStr(cutLines[j][2]);
//-Address
faddr = (unsigned char) intFromQStr(cutLines[j][3]);
//-Description
fdesc = cutLines[j][4];
unordList[unordIndex] = new MotorParameter(fname, fsize,
ffactor, faddr, fdesc);
unordIndex += 1;
}
qDebug() << "created unordList";
//sort list
for (int i = 0; i < unordIndex; i++)
{
for (int j = 0; j < unordIndex; j++)
{
if (checkList[j] == 0){
if (lowestAddr >= unordList[j]->getAddr()){
lowestAddr = unordList[j]->getAddr();
lowIndex = j;
}
}
}
ordList[i] = new MotorParameter(unordList[lowIndex]->getName(),
unordList[lowIndex]->getSize(),
unordList[lowIndex]->getFactor(),
unordList[lowIndex]->getAddr(),
unordList[lowIndex]->getDescription());
checkList[lowIndex] = 1;
lowestAddr = 0xFF;
}
qDebug() << "Created ord list";
MotorParameter *tmptr = new MotorParameter[unordIndex];
qDebug() << "created tmptr array";
for (int i = 0; i < unordIndex; i++)
{
tmptr[i].copyParam(ordList[i]);
}
qDebug() << "populated tmptr array";
for (int i = 0; i < lines.count(); i++)
{
checkList[i] = 0;
}
qDebug() << "set checkList to all zero";
int range = 1;
int lineCount = lines.count();
for (int j = 0; j < unordIndex - 1; j++)
{
checkList[j + 1] = range;
int lb = (int) ordList[j]->getAddr();
int ub = (int) ordList[j + 1]->getAddr();
if ((lb + ordList[j]->getSize()) == ub)
{
}
else
{
range += 1;
}
}
qDebug() << "done range magic";
if (lineCount > 2){
int lb = (int) ordList[unordIndex - 2]->getAddr();
int ub = (int) ordList[unordIndex - 1]->getAddr();
qDebug() << "done more range magic";
if ((lb + ordList[unordIndex - 2]->getSize()) == ub)
{
checkList[unordIndex] = checkList[unordIndex - 1];
}
else
{
checkList[unordIndex] = checkList[unordIndex - 1] + 1;
}
}
else{
checkList[1] = 1;
}
int boxSize[range];
for (int i = 0; i < range; i++)
{
boxSize[i] = 0;
}
for (int i = 1; i < lines.count(); i++)
{
boxSize[checkList[i] - 1] += 1;
}
int index = 0;
ParameterBox* boxedSet;
boxedSet = new ParameterBox[range];
for (int i = 0; i < range; i++)
{
for (int j = 1; j < lines.count(); j++)
{
if (checkList[j] == i + 1)
{
index = j - 1;
break;
}
}
boxedSet[i].setUp(boxSize[i], ordList[index]->getAddr(), i + setSize, ptype);
boxedSet[i].setTitle(title);
MotorParameter temper;
for (int k = 0; k < boxSize[i]; k++)
{
temper.copyParam(ordList[index + k]);
boxedSet[i].setMotorParameter(temper, k);
}
boxedSet[i].setByteCount();
boxedSet[i].setPage(pageCount);
}
appendSet(boxedSet, range);
delete boxedSet;
qDebug() << "setSize: " << setSize;
pageCount += 1;
return range;
}
int ParamWarehouse::loadSetupFile(QString fileName)
{
fileName.remove(0, 8);
QFile filePrime(fileName);
QString fileError;
qDebug() << "file path:";
qDebug() << fileName;
if (!filePrime.open(QIODevice::ReadOnly | QIODevice::Text))
{
//error code - failed to open file
fileError = filePrime.errorString();
qDebug() << fileError;
return -1;
}
//data containers to hold intake data
QString inLine;
QList<QString> lines;
QList<QStringList> cutLines;
//read 'file' as a stream of bytes
QTextStream in(&filePrime);
//swallow entire file and close file
while (!in.atEnd())
{
inLine = in.readLine();
lines.append(inLine);
}
filePrime.close();
//validate linecount greater than 0
if (!lines.count())
{
//error code - file validation
return -1;
}
//split lines by comma
for (int i = 0; i < lines.count(); i++)
{
cutLines.append(lines[i].split(','));
}
//validate inputs
if (!(cutLines[0][0] == "title"))
{
if (!(cutLines[0][1] == "type"))
{
if (!(cutLines[0][2] == "path"))
{
//exit due to validation error
qDebug() << "validation error in " << fileName;
return -1;
}
}
}
int returner = 0;
for (int i = 1; i < lines.count(); i++){
QString tabTitle = cutLines[i][0];
int pollType = intFromQStr(cutLines[i][1]);
QString listPath = cutLines[i][2];
qDebug() << "ptype: " << pollType;
int stopper = fileName.size() - 1;
while (fileName[stopper] != '/')
{
stopper -= 1;
}
//extract parameter list filepath
QString secondaryPath = fileName;
secondaryPath.remove(stopper + 1, fileName.size() - stopper - 1);
secondaryPath.append(listPath);
returner += loadTabFile(secondaryPath, tabTitle, pollType);
}
return returner;
}
int ParamWarehouse::appendSet(ParameterBox *newload, int range)
{
if (setSize == 0)
{
boxSet = new ParameterBox[range];
writeCheckList = new bool*[range];
for (int i = 0; i < range; i++)
{
boxSet[i].copyBox(newload[i]);
writeCheckList[i] = new bool [boxSet[i].getCount()];
for (int writer = 0; writer < boxSet[i].getCount(); writer++)
{
writeCheckList[i][writer] = false;
}
}
}
else
{
ParameterBox* temper = new ParameterBox[setSize];
bool** tempList = new bool*[setSize];
for (int i = 0; i < setSize; i++)
{
temper[i].copyBox(boxSet[i]);
tempList[i] = new bool[temper[i].getCount()];
for (int writer = 0; writer < temper[i].getCount(); writer++)
{
tempList[i][writer] = writeCheckList[i][writer];
}
delete writeCheckList[i];
}
delete boxSet;
delete writeCheckList;
boxSet = new ParameterBox[range + setSize];
writeCheckList = new bool*[range + setSize];
for (int j = 0; j < setSize + range; j++)
{
if (j < setSize)
{
boxSet[j].copyBox(temper[j]);
writeCheckList[j] = new bool[boxSet[j].getCount()];
for (int writer = 0; writer < boxSet[j].getCount(); writer++)
{
writeCheckList[j][writer] = tempList[j][writer];
}
delete tempList[j];
}
else
{
boxSet[j].copyBox(newload[j - setSize]);
writeCheckList[j] = new bool[boxSet[j].getCount()];
for (int writer = 0; writer < boxSet[j].getCount(); writer++)
{
writeCheckList[j][writer] = false;
}
}
}
delete temper;
delete tempList;
}
setSize += range;
//print boxSet
/*for (int i = 0; i < setSize; i++)
{
boxSet[i].printContents();
}*/
return range;
}
void ParamWarehouse::cleanWarehouse()
{
delete[] boxSet;
for (int i= 0; i < setSize; i++){
delete [] writeCheckList[i];
}
delete[] writeCheckList;
setSize = 0;
}