-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataModel.cpp
More file actions
249 lines (201 loc) · 6.36 KB
/
Copy pathDataModel.cpp
File metadata and controls
249 lines (201 loc) · 6.36 KB
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
// Copyright 2024
// Author: Paul Soelder <p.soelder@mailbox.org>
#include "./DataModel.h"
// ____________________________________________________________________________
BalanceParameters::BalanceParameters() {
// Nothing to do.
isValid_ = false;
timeframe_ = 0;
startTime_ = 0;
stopTime_ = 0;
numRows_ = 0;
}
// ____________________________________________________________________________
BalanceParameters::BalanceParameters(
const std::shared_ptr<std::unordered_map<std::string, std::vector<float>>>
&data) {
rawData_ = data;
validateData();
if (isValid_) {
preprocess();
calculateParameters();
}
}
// ____________________________________________________________________________
void BalanceParameters::update(
const std::shared_ptr<std::unordered_map<std::string, std::vector<float>>>
&data) {
rawData_ = data;
validateData();
if (isValid_) {
preprocess();
calculateParameters();
}
}
// ____________________________________________________________________________
void BalanceParameters::validateData() {
// Data is empty.
if (rawData_->size() == 0) {
timeframe_ = 0;
startTime_ = 0;
stopTime_ = 0;
numRows_ = 0;
meanForceX_ = 0;
meanForceY_ = 0;
isValid_ = false;
return;
}
// Check if there are at least the columns for time and force in x and y
// direction (add more checks if other parameters are calculated).
if (rawData_->count("abs time (s)") == 0 || rawData_->count("Fx") == 0 ||
rawData_->count("Fy") == 0) {
timeframe_ = 0;
startTime_ = 0;
stopTime_ = 0;
numRows_ = 0;
meanForceX_ = 0;
meanForceY_ = 0;
isValid_ = false;
return;
}
// Check if columns have the same length.
if ((*rawData_)["Fx"].size() != (*rawData_)["Fy"].size() ||
(*rawData_)["Fx"].size() != (*rawData_)["abs time (s)"].size()) {
timeframe_ = 0;
startTime_ = 0;
stopTime_ = 0;
numRows_ = 0;
meanForceX_ = 0;
meanForceY_ = 0;
isValid_ = false;
return;
}
isValid_ = true;
numRows_ = (*rawData_)["abs time (s)"].size();
startTime_ = (*rawData_)["abs time (s)"].front();
stopTime_ = (*rawData_)["abs time (s)"].back();
timeframe_ = stopTime_ - startTime_;
}
// ____________________________________________________________________________
void BalanceParameters::preprocess() {
// to be implemented if necessary
data_ = rawData_;
}
// ____________________________________________________________________________
void BalanceParameters::calculateParameters() {
calculateMeanForceX();
calculateMeanForceY();
// ...
}
// ____________________________________________________________________________
void BalanceParameters::calculateMeanForceX() {
if ((*data_)["Fx"].size() == 0) {
meanForceX_ = 0;
return;
}
meanForceX_ = std::reduce((*data_)["Fx"].begin(), (*data_)["Fx"].end()) /
static_cast<float>((*data_)["Fx"].size());
}
// ____________________________________________________________________________
void BalanceParameters::calculateMeanForceY() {
if ((*data_)["Fy"].size() == 0) {
meanForceY_ = 0;
return;
}
meanForceY_ = std::reduce((*data_)["Fy"].begin(), (*data_)["Fy"].end()) /
static_cast<float>((*data_)["Fy"].size());
}
// ____________________________________________________________________________
DataModel::DataModel() : running_(false) {
fileName_ = "";
configTimeframe_ = 0;
startTime_ = 0;
stopTime_ = 0;
timeframe_ = 0;
firstRow_ = 0;
lastRow_ = 0;
numRows_ = 0;
// Set up a timer for regular reprocessing.
// Current implementation is for playback of pre-existing CSV files,
// in a later stage we will switch to live view -> timers need to be
// adjusted.
processingTimer_.setInterval(PLAYBACK_DELAY_MS);
QObject::connect(&processingTimer_, &QTimer::timeout, this,
&DataModel::process);
}
// ____________________________________________________________________________
void DataModel::onStartProcessing(const std::string &fileName,
const float timeframe) {
// Should not happen.
if (running_)
return;
configTimeframe_ = timeframe;
// New file configured.
if (fileName != fileName_) {
fileName_ = fileName;
kistlerFile_ = KistlerCSVFile(fileName_);
}
// Invalid file...
if (!kistlerFile_.isValid()) {
emit invalidFileSignal();
running_ = false;
return;
}
// ...or all good.
running_ = true;
if (!processingTimer_.isActive())
processingTimer_.start();
}
// ____________________________________________________________________________
void DataModel::onStopProcessing() {
// Should not happen.
if (!running_)
return;
if (processingTimer_.isActive())
processingTimer_.stop();
running_ = false;
}
// ____________________________________________________________________________
void DataModel::process() {
// Determine number of rows we need to read with sampling rate and the
// configured timeframe.
// (sampling rate is guaranteed to be != 0)
// +1 because with 1kHz sampling two rows are 1ms apart, so you need two of
// them to span 1ms.
size_t attemptedNumRows =
configTimeframe_ * kistlerFile_.getSamplingRate() + 1;
try {
auto data =
kistlerFile_.getData(firstRow_, firstRow_ + attemptedNumRows - 1);
if (data->at("abs time (s)").size() != 0) {
balanceParameters_.update(data);
// Period is 1 / sampling rate, * 1000 to get it in miliseconds.
firstRow_ =
firstRow_ + PLAYBACK_DELAY_MS / kistlerFile_.getSamplingRate() * 1000;
lastRow_ = firstRow_ + data->at("abs time (s)").size();
numRows_ = data->at("abs time (s)").size();
startTime_ = balanceParameters_.getStartTime();
stopTime_ = balanceParameters_.getStopTime();
timeframe_ = balanceParameters_.getTimeframe();
}
emit dataUpdated(&balanceParameters_);
// Check if we reached EOF.
if (data->at("abs time (s)").size() < attemptedNumRows) {
qDebug() << "DataModel::process(): reached EOF";
emit reachedEOF();
}
} catch (CorruptKistlerFileException &e) {
qWarning() << e.what();
emit corruptFileSignal();
}
}
// ____________________________________________________________________________
void DataModel::onResetModel() {
onStopProcessing();
startTime_ = 0;
stopTime_ = 0;
timeframe_ = 0;
firstRow_ = 0;
lastRow_ = 0;
numRows_ = 0;
}