-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtagmanager.cpp
265 lines (191 loc) · 4.69 KB
/
tagmanager.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
//#define ENABLE_DEBUGMSG
/*
* Copyright (C) 2018 Johan Henriksson.
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD license. See the LICENSE file for details.
*/
#include "tagmanager.h"
#include "tagscanner.h"
#include "mainwindow.h"
#include "log.h"
#include "util.h"
ScannerWorker::ScannerWorker()
: m_isIdle(true)
{
#ifndef NDEBUG
m_dbgMainThread = QThread::currentThreadId ();
#endif
m_quit = false;
}
void ScannerWorker::requestQuit()
{
m_quit = true;
m_wait.wakeAll();
}
void ScannerWorker::abort()
{
QMutexLocker locker(&m_mutex);
m_workQueue.clear();
}
bool ScannerWorker::isIdle()
{
QMutexLocker locker(&m_mutex);
return m_isIdle;
}
void ScannerWorker::run()
{
assert(m_dbgMainThread != QThread::currentThreadId ());
m_cfg.load();
m_scanner.init(&m_cfg);
while(m_quit == false)
{
m_mutex.lock();
m_wait.wait(&m_mutex);
while(!m_workQueue.isEmpty())
{
m_isIdle = false;
QString filePath = m_workQueue.takeFirst();
m_mutex.unlock();
scan(filePath);
m_mutex.lock();
}
m_isIdle = true;
m_mutex.unlock();
m_doneCond.wakeAll();
}
}
void ScannerWorker::waitAll()
{
m_mutex.lock();
while(!m_workQueue.isEmpty() || m_isIdle == false)
{
m_doneCond.wait(&m_mutex);
}
m_mutex.unlock();
}
void ScannerWorker::queueScan(QString filePath)
{
m_mutex.lock();
m_isIdle = false;
m_workQueue.append(filePath);
m_mutex.unlock();
m_wait.wakeAll();
}
void ScannerWorker::scan(QString filePath)
{
QList<Tag> *taglist = new QList<Tag>;
assert(m_dbgMainThread != QThread::currentThreadId ());
m_scanner.scan(filePath, taglist);
emit onScanDone(filePath, taglist);
}
TagManager::TagManager()
{
#ifndef NDEBUG
m_dbgMainThread = QThread::currentThreadId ();
#endif
m_cfg.load();
m_worker.start();
connect(&m_worker, SIGNAL(onScanDone(QString, QList<Tag>* )), this, SLOT(onScanDone(QString, QList<Tag>* )));
m_tagScanner.init(&m_cfg);
}
TagManager::~TagManager()
{
m_worker.requestQuit();
m_worker.wait();
foreach (ScannerResult* info, m_db)
{
delete info;
}
}
void TagManager::waitAll()
{
m_worker.waitAll();
}
void TagManager::onScanDone(QString filePath, QList<Tag> *tags)
{
assert(m_dbgMainThread == QThread::currentThreadId ());
ScannerResult *info = new ScannerResult;
info->m_filePath = filePath;
info->m_tagList = *tags;
if(m_db.contains(filePath))
{
ScannerResult *oldInfo = m_db[filePath];
delete oldInfo;
}
m_db[filePath] = info;
if(m_worker.isIdle())
emit onAllScansDone();
delete tags;
}
/**
* @brief Tags a scan to be made later (in a seperate thread).
*/
int TagManager::queueScan(QStringList filePathList)
{
bool queuedAny = false;
assert(m_dbgMainThread == QThread::currentThreadId ());
for(int i = 0;i < filePathList.size();i++)
{
QString filePath = filePathList[i];
if(!m_db.contains(filePath))
{
m_worker.queueScan(filePath);
queuedAny = true;
}
}
if(!queuedAny)
emit onAllScansDone();
return 0;
}
void TagManager::scan(QString filePath, QList<Tag> *tagList)
{
if(!m_db.contains(filePath))
{
ScannerResult *res = new ScannerResult;
res->m_filePath = filePath;
m_tagScanner.scan(res->m_filePath, &res->m_tagList);
m_db[filePath] = res;
}
*tagList = m_db[filePath]->m_tagList;
}
void TagManager::abort()
{
m_worker.abort();
}
void TagManager::getTags(QString filePath, QList<Tag> *tagList)
{
if(m_db.contains(filePath))
{
*tagList = m_db[filePath]->m_tagList;
}
}
/**
* @brief Lookup tags with a specific name.
* @param name The name of the tag (Eg: "main" or "Class::myFunc").
* @return tagList The found tags.
*/
void TagManager::lookupTag(QString name, QList<Tag> *tagList)
{
debugMsg("%s(name:'%s')", __func__, qPrintable(name));
QString funcName;
QString className;
if(name.contains("::"))
{
int divPos = name.indexOf("::");
funcName = name.mid(divPos+2);
className = name.left(divPos);
}
else
funcName = name;
foreach (ScannerResult* info, m_db)
{
for(int j = 0;j < info->m_tagList.size();j++)
{
Tag &tag = info->m_tagList[j];
if(tag.getName() == funcName && className == tag.getClassName())
tagList->append(tag);
}
}
}