-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathEventEditorLoader.cpp
413 lines (358 loc) · 11.9 KB
/
EventEditorLoader.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
/* FTSPlot - fast time series dataset plotter
Copyright (C) 2013 Michael Riss <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
#include <QDebug>
#include <QFile>
#include <QTime>
#include <QDir>
#include "EventEditorLoader.h"
#if defined(BENCHMARK) && defined(COUNT_TILES)
#include "benchmarks/benchmarkHelper.h"
#endif
#define MAX(a,b) a<b?b:a
#define MIN(a,b) a<b?a:b
using namespace FTSPlot;
EventEditorLoader::EventEditorLoader ( QGLWidget* parent )
{
glwidget = parent;
myGLwidget = new QGLWidget( glwidget->format(), NULL, glwidget );
if ( myGLwidget->format() != glwidget->format() )
{
qDebug() << "EventEditorLoader: Cannot get the same GL context format as main widget. Exiting!";
exit(1);
}
glwidget->makeCurrent();
//myGLwidget->makeCurrent();
// We also have to initialize this OpenGL Context to use alpha blending for example
glClearColor ( 1.0, 1.0, 1.0, 1.0 );
glShadeModel ( GL_FLAT );
glEnable ( GL_LINE_SMOOTH );
glEnable ( GL_BLEND );
glBlendFunc ( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
glHint ( GL_LINE_SMOOTH_HINT, GL_DONT_CARE );
glLineWidth ( 1.0 );
displayLists[0] = glGenLists ( 1 );
displayLists[1] = glGenLists ( 1 );
if ( displayLists[0] == 0 || displayLists[1] == 0 )
{
qDebug() << "Error: Cannot reserve display list. Exiting.";
exit ( 1 );
}
useList = 0;
genList = 1;
eventLoopTestCounter0 = 0;
eventLoopTestCounter1 = 0;
connect ( this, SIGNAL ( checkEventLoopSignal ( int ) ), this, SLOT ( checkEventLoop ( int ) ) );
moveToThread ( this );
start();
}
EventEditorLoader::~EventEditorLoader()
{
quit();
wait();
// delete displaylists
//glwidget->makeCurrent();
myGLwidget->makeCurrent();
glDeleteLists ( displayLists[1], 1 );
glDeleteLists ( displayLists[0], 1 );
myGLwidget->doneCurrent();
delete( myGLwidget );
}
void EventEditorLoader::paintGL()
{
glColor3f ( red, green, blue );
glCallList ( displayLists[useList] );
}
void EventEditorLoader::genDisplayList ( qint64 reqXdataBegin, qint64 reqXdataEnd, int reqDispPower, QString baseDirName, double ymin, double ymax )
{
quint64 XdataBegin;
quint64 XdataEnd;
if ( reqXdataBegin < 0 )
{
XdataBegin = 0;
}
else
{
XdataBegin = reqXdataBegin;
}
if ( reqXdataEnd < 0 )
{
XdataEnd = 0;
}
else
{
XdataEnd = reqXdataEnd;
}
#ifdef COUNT_TILES
vertexCount = 0;
lineCount = 0;
#endif // COUNT_TILES
myGLwidget->makeCurrent();
// call recursive function
glNewList ( displayLists[genList], GL_COMPILE );
if ( !baseDirName.isEmpty() )
{
glBegin ( GL_LINES );
getRecursiveEvents ( XdataBegin, XdataEnd, baseDirName, 0, TOTALHEIGHT, reqDispPower, reqXdataBegin, ymin, ymax );
glEnd();
}
glEndList();
glFlush();
#if defined(COUNT_TILES) && !defined(BENCHMARK)
qDebug() << "EventEditorLoader: generated" << vertexCount << "vertexes and" << lineCount << "lines.";
#endif
#if defined(BENCHMARK) && defined(COUNT_TILES)
benchmarkHelper::vertexCount = vertexCount;
benchmarkHelper::lineCount = lineCount;
benchmarkHelper::quadCount = 0;
#endif
emit notifyListUpdate();
}
void EventEditorLoader::getRecursiveEvents ( quint64 beginIdx, quint64 endIdx, QString path, quint64 pathValue, int height, int reqDispPower, qint64 reqXdataBegin, double ymin, double ymax )
{
// height == 0 => read blockfile
if ( height == 0 )
{
QFile blockFile ( path );
if ( !blockFile.open ( QIODevice::ReadOnly ) )
{
qDebug() << "Cannot open" << blockFile.fileName();
return;
}
// map file
quint64* blockData = ( quint64* ) blockFile.map ( 0, blockFile.size() );
if ( blockData == NULL )
{
qDebug() << "Cannot map" << blockFile.fileName();
return;
}
// read and copy all values between beginIdx and endIdx to displayList
qint64 oldValue = -1;
qint64 maxblockFileIdx = blockFile.size() / sizeof( quint64 );
for ( int i = 0; i < maxblockFileIdx; i++ )
{
if ( endIdx < blockData[i] )
{
break;
}
if ( beginIdx <= blockData[i] )
{
qint64 newValue = ( blockData[i] - reqXdataBegin ) >> reqDispPower;
if ( newValue != oldValue )
{
double xcoord = newValue;
glVertex2d ( xcoord, ymin );
glVertex2d ( xcoord, ymax );
#ifdef COUNT_TILES
vertexCount += 2;
lineCount++;
#endif // COUNT_TILES
oldValue = newValue;
}
}
}
// unmap and close file
blockFile.unmap ( ( uchar* ) blockData );
blockFile.close();
}
// height == 1 => either node file or recurse into block files
else if ( height == 1 )
{
if ( reqDispPower >= height2NodePower( height ) )
{
// use node file
QFile nodeFile( path + ".node" );
if ( !nodeFile.open( QIODevice::ReadOnly ) )
{
qDebug() << "Cannot open" << nodeFile.fileName();
return;
}
// map cache file
quint64* nodeData = ( quint64* ) nodeFile.map ( 0, nodeFile.size() );
if ( nodeData == NULL )
{
qDebug() << "Cannot map" << nodeFile.fileName();
return;
}
// read cache file
qint64 oldValue = -1;
qint64 maxNodeFileIdx = nodeFile.size() / sizeof ( quint64 );
for ( int i = 0; i < maxNodeFileIdx; i++ )
{
// add values within limits to display list
if ( endIdx < nodeData[i] )
{
break;
}
if ( beginIdx <= nodeData[i] )
{
qint64 newValue = ( nodeData[i] - reqXdataBegin ) >> reqDispPower;
if ( newValue != oldValue )
{
double xcoord = newValue;
glVertex2d ( xcoord, ymin );
glVertex2d ( xcoord, ymax );
#ifdef COUNT_TILES
vertexCount += 2;
lineCount++;
#endif // COUNT_TILES
oldValue = newValue;
}
}
}
}
else
{
// recurse down to block files
QDir currentDir ( path );
currentDir.setNameFilters( QStringList( QString( "*.block" ) ) );
QStringList blockFileList = currentDir.entryList ( QDir::Files | QDir::NoDotAndDotDot, QDir::Name );
for ( int i = 0; i < blockFileList.size(); i++ )
{
QString coreName = blockFileList[i];
coreName.chop( 6 );
quint64 sliceValueBegin = dirName2sliceMin( coreName, height-1, pathValue );
quint64 sliceValueEnd = dirName2sliceMax( coreName, height-1, pathValue );
if ( sliceValueBegin > endIdx )
{
break;
}
if ( beginIdx <= sliceValueEnd )
{
getRecursiveEvents ( beginIdx, endIdx, path + "/" + blockFileList[i], sliceValueBegin, height-1, reqDispPower, reqXdataBegin, ymin, ymax );
}
}
}
}
// height > 1 => either node file or recurse into dirs
else
{
if ( reqDispPower >= height2NodePower( height ) )
{
// use node file
QFile nodeFile( path + ".node" );
if ( !nodeFile.open( QIODevice::ReadOnly ) )
{
qDebug() << "Cannot open" << nodeFile.fileName();
return;
}
// map cache file
quint64* nodeData = ( quint64* ) nodeFile.map ( 0, nodeFile.size() );
if ( nodeData == NULL )
{
qDebug() << "Cannot map" << nodeFile.fileName();
return;
}
// read cache file
qint64 oldValue = -1;
qint64 maxNodeFileIdx = nodeFile.size() / sizeof ( quint64 );
for ( int i = 0; i < maxNodeFileIdx; i++ )
{
// add values within limits to display list
if ( endIdx < nodeData[i] )
{
break;
}
if ( beginIdx <= nodeData[i] )
{
qint64 newValue = ( nodeData[i] - reqXdataBegin ) >> reqDispPower;
if ( newValue != oldValue )
{
double xcoord = newValue;
glVertex2d ( xcoord, ymin );
glVertex2d ( xcoord, ymax );
#ifdef COUNT_TILES
vertexCount += 2;
lineCount++;
#endif // COUNT_TILES
oldValue = newValue;
}
}
}
}
else
{
// recurse into subdirs
QDir currentDir ( path );
QStringList dirNames = currentDir.entryList ( QDir::Dirs | QDir::NoDotAndDotDot, QDir::Name );
for ( int i = 0; i < dirNames.size(); i++ )
{
quint64 sliceValueBegin = dirName2sliceMin( dirNames[i], height-1, pathValue );
quint64 sliceValueEnd = dirName2sliceMax( dirNames[i], height-1, pathValue );
if ( sliceValueBegin > endIdx )
{
break;
}
if ( beginIdx <= sliceValueEnd )
{
getRecursiveEvents ( beginIdx, endIdx, path + "/" + dirNames[i], sliceValueBegin, height-1, reqDispPower, reqXdataBegin, ymin, ymax );
}
}
}
}
}
void EventEditorLoader::run()
{
myGLwidget->makeCurrent();
exec();
myGLwidget->doneCurrent();
}
void EventEditorLoader::setColor ( QColor color )
{
myColor = color;
red = myColor.redF();
green = myColor.greenF();
blue = myColor.blueF();
}
void EventEditorLoader::toggleLists()
{
if ( useList == 0 )
{
useList = 1;
genList = 0;
}
else
{
useList = 0;
genList = 1;
}
}
void EventEditorLoader::eventLoopAlive()
{
int myTicket = ++eventLoopTestCounter0;
emit checkEventLoopSignal ( myTicket );
lock.lock();
while ( eventLoopTestCounter1 != myTicket )
{
waitCond.wait ( &lock );
}
lock.unlock();
}
void EventEditorLoader::checkEventLoop ( int counter )
{
lock.lock();
eventLoopTestCounter1 = counter;
waitCond.wakeAll();
lock.unlock();
}
EventEditorLoader_Suspend::EventEditorLoader_Suspend ( EventEditorLoader* lock )
{
this->lock = lock;
lock->quit();
lock->wait();
}
EventEditorLoader_Suspend::~EventEditorLoader_Suspend()
{
lock->start();
}
// kate: indent-mode cstyle; space-indent on; indent-width 0;