Parent: [74434a] (diff)

Child: [851384] (diff)

Download this file

idxthread.cpp    58 lines (45 with data), 938 Bytes

 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
#include <stdio.h>
#include <unistd.h>
#include <qthread.h>
#include "indexer.h"
#include "debuglog.h"
#include "idxthread.h"
class IdxThread : public QThread {
virtual void run();
public:
ConfIndexer *indexer;
};
int startindexing;
int indexingdone = 1;
bool indexingstatus = false;
static int stopidxthread;
void IdxThread::run()
{
DebugLog::getdbl()->setloglevel(DEBDEB1);
for (;;) {
if (stopidxthread) {
delete indexer;
return;
}
if (startindexing) {
indexingdone = indexingstatus = 0;
fprintf(stderr, "Index thread :start index\n");
indexingstatus = indexer->index();
startindexing = 0;
indexingdone = 1;
}
msleep(100);
}
}
static IdxThread idxthread;
void start_idxthread(RclConfig *cnf)
{
ConfIndexer *ix = new ConfIndexer(cnf);
idxthread.indexer = ix;
idxthread.start();
}
void stop_idxthread()
{
stopidxthread = 1;
idxthread.wait();
}