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
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
|
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Denis Mingulov.
**
** Contact: Nokia Corporation (info@qt.nokia.com)
**
**
** GNU Lesser General Public License Usage
**
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**************************************************************************/
#include "classviewparser.h"
#include "classviewconstants.h"
#include "classviewutils.h"
// cplusplus shared library. the same folder (cplusplus)
#include <Symbol.h>
#include <Symbols.h>
#include <Scope.h>
#include <Name.h>
// other
#include <cplusplus/ModelManagerInterface.h>
#include <cplusplus/Overview.h>
#include <cplusplus/Icons.h>
#include <projectexplorer/projectexplorer.h>
#include <projectexplorer/session.h>
#include <projectexplorer/project.h>
#include <projectexplorer/projectnodes.h>
#include <coreplugin/ifile.h>
#include <utils/qtcassert.h>
#include <QtGui/QStandardItem>
#include <QtCore/QDebug>
#include <QtCore/QHash>
#include <QtCore/QSet>
#include <QtCore/QTimer>
#include <QtCore/QReadWriteLock>
#include <QtCore/QReadLocker>
#include <QtCore/QWriteLocker>
enum { debug = false };
namespace ClassView {
namespace Internal {
// ----------------------------- ParserPrivate ---------------------------------
/*!
\struct ParserPrivate
\brief Private class data for \a Parser
\sa Parser
*/
struct ParserPrivate
{
//! Constructor
ParserPrivate() : flatMode(false) {}
//! Get document from documentList
CPlusPlus::Document::Ptr document(const QString &fileName) const;
CPlusPlus::Overview overview;
//! timer
QPointer<QTimer> timer;
// documents
//! Documents read write lock
QReadWriteLock docLocker;
//! Current document list
QHash<QString, CPlusPlus::Document::Ptr> documentList;
//! Parsed documents' revision - to speed up computations
QHash<QString, unsigned> cachedDocTreesRevision;
//! Parsed documents - to speed up computations
QHash<QString, ParserTreeItem::ConstPtr> cachedDocTrees;
// project trees
//! Projects read write lock
QReadWriteLock prjLocker;
//! Parsed projects' revision - to speed up computations
QHash<QString, unsigned> cachedPrjTreesRevision;
//! Merged trees for projects. Not const - projects might be substracted/added
QHash<QString, ParserTreeItem::Ptr> cachedPrjTrees;
//! Cached file lists for projects (non-flat mode)
QHash<QString, QStringList> cachedPrjFileLists;
// other
//! List for files which has to be parsed
QSet<QString> fileList;
//! Root item read write lock
QReadWriteLock rootItemLocker;
//! Parsed root item
ParserTreeItem::ConstPtr rootItem;
//! Flat mode
bool flatMode;
};
CPlusPlus::Document::Ptr ParserPrivate::document(const QString &fileName) const
{
if (!documentList.contains(fileName))
return CPlusPlus::Document::Ptr();
return documentList[fileName];
}
// ----------------------------- Parser ---------------------------------
Parser::Parser(QObject *parent)
: QObject(parent),
d_ptr(new ParserPrivate())
{
d_ptr->timer = new QTimer(this);
d_ptr->timer->setSingleShot(true);
// connect signal/slots
// internal data reset
connect(this, SIGNAL(resetDataDone()), SLOT(onResetDataDone()), Qt::QueuedConnection);
// timer for emitting changes
connect(d_ptr->timer, SIGNAL(timeout()), SLOT(requestCurrentState()), Qt::QueuedConnection);
}
Parser::~Parser()
{
}
bool Parser::canFetchMore(QStandardItem *item) const
{
ParserTreeItem::ConstPtr ptr = findItemByRoot(item);
if (ptr.isNull())
return false;
return ptr->canFetchMore(item);
}
void Parser::fetchMore(QStandardItem *item, bool skipRoot) const
{
ParserTreeItem::ConstPtr ptr = findItemByRoot(item, skipRoot);
if (ptr.isNull())
return;
ptr->fetchMore(item);
}
void Parser::setFlatMode(bool flatMode)
{
if (flatMode == d_ptr->flatMode)
return;
// change internal
d_ptr->flatMode = flatMode;
// regenerate and resend current tree
emitCurrentTree();
}
ParserTreeItem::ConstPtr Parser::findItemByRoot(const QStandardItem *item, bool skipRoot) const
{
if (!item)
return ParserTreeItem::ConstPtr();
// go item by item to the root
QList<const QStandardItem *> uiList;
const QStandardItem *cur = item;
while(cur) {
uiList.append(cur);
cur = cur->parent();
}
if (skipRoot && uiList.count() > 0)
uiList.removeLast();
QReadLocker locker(&d_ptr->rootItemLocker);
// using internal root - search correct item
ParserTreeItem::ConstPtr internal = d_ptr->rootItem;
while(uiList.count() > 0) {
cur = uiList.last();
uiList.removeLast();
const SymbolInformation &inf = Utils::symbolInformationFromItem(cur);
internal = internal->child(inf);
if (internal.isNull())
break;
}
return internal;
}
ParserTreeItem::ConstPtr Parser::parse()
{
QTime time;
if (debug)
time.start();
ParserTreeItem::Ptr rootItem(new ParserTreeItem());
// check all projects
QList<ProjectExplorer::Project *> projects = getProjectList();
foreach(const ProjectExplorer::Project *prj, projects) {
if (!prj)
continue;
ParserTreeItem::Ptr item;
if (!d_ptr->flatMode)
item = ParserTreeItem::Ptr(new ParserTreeItem());
QString prjName(prj->displayName());
QString prjType(prjName);
if (prj->file())
prjType = prj->file()->fileName();
SymbolInformation inf(prjName, prjType);
QStringList projectList = addProjectNode(item, prj->rootProjectNode());
if (d_ptr->flatMode) {
// use prj path (prjType) as a project id
// addProject(item, prj->files(ProjectExplorer::Project::ExcludeGeneratedFiles), prjType);
//! \todo return back, works too long
ParserTreeItem::Ptr flatItem = createFlatTree(projectList);
item.swap(flatItem);
}
item->setIcon(prj->rootProjectNode()->icon());
rootItem->appendChild(item, inf);
}
if (debug)
qDebug() << "Class View:" << QDateTime::currentDateTime().toString()
<< "Parsed in " << time.elapsed() << "msecs.";
return rootItem;
}
void Parser::addProject(const ParserTreeItem::Ptr &item, const QStringList &fileList,
const QString &projectId)
{
// recalculate cache tree if needed
ParserTreeItem::Ptr prj(getCachedOrParseProjectTree(fileList, projectId));
if (item.isNull())
return;
// if there is an item - copy project tree to that item
item->copy(prj);
}
void Parser::addSymbol(const ParserTreeItem::Ptr &item, const CPlusPlus::Symbol *symbol)
{
if (item.isNull() || !symbol)
return;
// easy solution - lets add any scoped symbol and
// any symbol which does not contain :: in the name
// if (symbol->isDeclaration())
// return;
//! \todo collect statistics and reorder to optimize
if (symbol->isForwardClassDeclaration()
|| symbol->isExtern()
|| symbol->isFriend()
|| symbol->isGenerated()
|| symbol->isUsingNamespaceDirective()
|| symbol->isUsingDeclaration()
)
return;
// skip static local functions
// if ((!symbol->scope() || symbol->scope()->isClass())
// && symbol->isStatic() && symbol->isFunction())
// return;
const CPlusPlus::Name *symbolName = symbol->name();
if (symbolName && symbolName->isQualifiedNameId())
return;
QString name = d_ptr->overview.prettyName(symbol->name()).trimmed();
QString type = d_ptr->overview.prettyType(symbol->type()).trimmed();
int iconType = CPlusPlus::Icons::iconTypeForSymbol(symbol);
SymbolInformation information(name, type, iconType);
ParserTreeItem::Ptr itemAdd;
// If next line will be removed, 5% speed up for the initial parsing.
// But there might be a problem for some files ???
// Better to improve qHash timing
itemAdd = item->child(information);
if (itemAdd.isNull())
itemAdd = ParserTreeItem::Ptr(new ParserTreeItem());
// locations are 1-based in Symbol, start with 0 for the editor
SymbolLocation location(symbol->fileName(), symbol->line(), symbol->column() - 1);
itemAdd->addSymbolLocation(location);
// prevent showing a content of the functions
if (!symbol->isFunction()) {
const CPlusPlus::Scope *scope = symbol->asScope();
if (scope) {
CPlusPlus::Scope::iterator cur = scope->firstMember();
while (cur != scope->lastMember()) {
const CPlusPlus::Symbol *curSymbol = *cur;
++cur;
if (!curSymbol)
continue;
// if (!symbol->isClass() && curSymbol->isStatic() && curSymbol->isFunction())
// return;
addSymbol(itemAdd, curSymbol);
}
}
}
bool appendChild = true;
// if item is empty and has not to be added
if (symbol->isNamespace() && itemAdd->childCount() == 0)
appendChild = false;
if (appendChild)
item->appendChild(itemAdd, information);
}
ParserTreeItem::Ptr Parser::createFlatTree(const QStringList &projectList)
{
QReadLocker locker(&d_ptr->prjLocker);
ParserTreeItem::Ptr item(new ParserTreeItem());
foreach(const QString &project, projectList) {
if (!d_ptr->cachedPrjTrees.contains(project))
continue;
ParserTreeItem::ConstPtr list = d_ptr->cachedPrjTrees[project];
item->add(list);
}
return item;
}
ParserTreeItem::Ptr Parser::getParseProjectTree(const QStringList &fileList,
const QString &projectId)
{
//! \todo Way to optimize - for documentUpdate - use old cached project and subtract
//! changed files only (old edition), and add curent editions
ParserTreeItem::Ptr item(new ParserTreeItem());
unsigned revision = 0;
foreach(const QString &file, fileList) {
// ? locker for document?..
const CPlusPlus::Document::Ptr &doc = d_ptr->document(file);
if (doc.isNull())
continue;
revision += doc->revision();
ParserTreeItem::ConstPtr list = getCachedOrParseDocumentTree(doc);
if (list.isNull())
continue;
// add list to out document
item->add(list);
}
// update the cache
if (!projectId.isEmpty()) {
QWriteLocker locker(&d_ptr->prjLocker);
d_ptr->cachedPrjTrees[projectId] = item;
d_ptr->cachedPrjTreesRevision[projectId] = revision;
}
return item;
}
ParserTreeItem::Ptr Parser::getCachedOrParseProjectTree(const QStringList &fileList,
const QString &projectId)
{
d_ptr->prjLocker.lockForRead();
// calculate current revision
if (!projectId.isEmpty() && d_ptr->cachedPrjTrees.contains(projectId)) {
// calculate project's revision
unsigned revision = 0;
foreach(const QString &file, fileList) {
const CPlusPlus::Document::Ptr &doc = d_ptr->document(file);
if (doc.isNull())
continue;
revision += doc->revision();
}
// if even revision is the same, return cached project
if (revision == d_ptr->cachedPrjTreesRevision[projectId]) {
d_ptr->prjLocker.unlock();
return d_ptr->cachedPrjTrees[projectId];
}
}
d_ptr->prjLocker.unlock();
return getParseProjectTree(fileList, projectId);
}
ParserTreeItem::ConstPtr Parser::getParseDocumentTree(const CPlusPlus::Document::Ptr &doc)
{
if (doc.isNull())
return ParserTreeItem::ConstPtr();
const QString &fileName = doc->fileName();
if (!d_ptr->fileList.contains(fileName))
return ParserTreeItem::ConstPtr();
ParserTreeItem::Ptr itemPtr(new ParserTreeItem());
unsigned total = doc->globalSymbolCount();
for (unsigned i = 0; i < total; i++)
addSymbol(itemPtr, doc->globalSymbolAt(i));
QWriteLocker locker(&d_ptr->docLocker);
d_ptr->cachedDocTrees[fileName] = itemPtr;
d_ptr->cachedDocTreesRevision[fileName] = doc->revision();
d_ptr->documentList[fileName] = doc;
return itemPtr;
}
ParserTreeItem::ConstPtr Parser::getCachedOrParseDocumentTree(const CPlusPlus::Document::Ptr &doc)
{
if (doc.isNull())
return ParserTreeItem::ConstPtr();
const QString &fileName = doc->fileName();
d_ptr->docLocker.lockForRead();
if (d_ptr->cachedDocTrees.contains(fileName)
&& d_ptr->cachedDocTreesRevision.contains(fileName)
&& d_ptr->cachedDocTreesRevision[fileName] == doc->revision()) {
d_ptr->docLocker.unlock();
return d_ptr->cachedDocTrees[fileName];
} else {
d_ptr->docLocker.unlock();
return getParseDocumentTree(doc);
}
}
void Parser::parseDocument(const CPlusPlus::Document::Ptr &doc)
{
if (doc.isNull())
return;
const QString &name = doc->fileName();
// if it is external file (not in any of our projects)
if (!d_ptr->fileList.contains(name))
return;
getParseDocumentTree(doc);
QTC_ASSERT(d_ptr->timer, return);
if (!d_ptr->timer->isActive())
d_ptr->timer->start(Constants::CLASSVIEW_EDITINGTREEUPDATE_DELAY);
return;
}
void Parser::clearCacheAll()
{
d_ptr->docLocker.lockForWrite();
d_ptr->cachedDocTrees.clear();
d_ptr->cachedDocTreesRevision.clear();
d_ptr->documentList.clear();
d_ptr->docLocker.unlock();
clearCache();
}
void Parser::clearCache()
{
QWriteLocker locker(&d_ptr->prjLocker);
// remove cached trees
d_ptr->cachedPrjFileLists.clear();
//! \todo where better to clear project's trees?
//! When file is add/removed from a particular project?..
d_ptr->cachedPrjTrees.clear();
d_ptr->cachedPrjTreesRevision.clear();
}
void Parser::setFileList(const QStringList &fileList)
{
d_ptr->fileList.clear();
d_ptr->fileList = QSet<QString>::fromList(fileList);
}
void Parser::removeFiles(const QStringList &fileList)
{
if (fileList.count() == 0)
return;
QWriteLocker lockerPrj(&d_ptr->prjLocker);
QWriteLocker lockerDoc(&d_ptr->docLocker);
foreach(const QString &name, fileList) {
d_ptr->fileList.remove(name);
d_ptr->cachedDocTrees.remove(name);
d_ptr->cachedDocTreesRevision.remove(name);
d_ptr->documentList.remove(name);
d_ptr->cachedPrjTrees.remove(name);
d_ptr->cachedPrjFileLists.clear();
}
emit filesAreRemoved();
}
void Parser::resetData(const CPlusPlus::Snapshot &snapshot)
{
// clear internal cache
clearCache();
d_ptr->docLocker.lockForWrite();
// copy snapshot's documents
CPlusPlus::Snapshot::const_iterator cur = snapshot.begin();
CPlusPlus::Snapshot::const_iterator end = snapshot.end();
for(; cur != end; cur++)
d_ptr->documentList[cur.key()] = cur.value();
d_ptr->docLocker.unlock();
// recalculate file list
QStringList fileList;
// check all projects
QList<ProjectExplorer::Project *> projects = getProjectList();
foreach(const ProjectExplorer::Project *prj, projects) {
if (prj)
fileList += prj->files(ProjectExplorer::Project::ExcludeGeneratedFiles);
}
setFileList(fileList);
emit resetDataDone();
}
void Parser::resetDataToCurrentState()
{
// get latest data
CPlusPlus::CppModelManagerInterface *codeModel = CPlusPlus::CppModelManagerInterface::instance();
if (codeModel)
resetData(codeModel->snapshot());
}
void Parser::onResetDataDone()
{
// internal data is reset, update a tree and send it back
emitCurrentTree();
}
void Parser::requestCurrentState()
{
emitCurrentTree();
}
void Parser::emitCurrentTree()
{
// stop timer if it is active right now
d_ptr->timer->stop();
d_ptr->rootItemLocker.lockForWrite();
d_ptr->rootItem = parse();
d_ptr->rootItemLocker.unlock();
// convert
QSharedPointer<QStandardItem> std(new QStandardItem());
d_ptr->rootItem->convertTo(std.data());
emit treeDataUpdate(std);
}
QStringList Parser::projectNodeFileList(const ProjectExplorer::FolderNode *node) const
{
QStringList list;
if (!node)
return list;
QList<ProjectExplorer::FileNode *> fileNodes = node->fileNodes();
QList<ProjectExplorer::FolderNode *> subFolderNodes = node->subFolderNodes();
foreach(const ProjectExplorer::FileNode *file, fileNodes) {
if (file->isGenerated())
continue;
list << file->path();
}
foreach(const ProjectExplorer::FolderNode *folder, subFolderNodes) {
if (folder->nodeType() != ProjectExplorer::FolderNodeType)
continue;
list << projectNodeFileList(folder);
}
return list;
}
QStringList Parser::addProjectNode(const ParserTreeItem::Ptr &item,
const ProjectExplorer::ProjectNode *node)
{
QStringList projectList;
if (!node)
return projectList;
const QString &nodePath = node->path();
// our own files
QStringList fileList;
// try to improve parsing speed by internal cache
if (d_ptr->cachedPrjFileLists.contains(nodePath)) {
fileList = d_ptr->cachedPrjFileLists[nodePath];
} else {
fileList = projectNodeFileList(node);
d_ptr->cachedPrjFileLists[nodePath] = fileList;
}
if (fileList.count() > 0) {
addProject(item, fileList, node->path());
projectList << node->path();
}
// subnodes
QList<ProjectExplorer::ProjectNode *> projectNodes = node->subProjectNodes();
foreach(const ProjectExplorer::ProjectNode *project, projectNodes) {
ParserTreeItem::Ptr itemPrj(new ParserTreeItem());
SymbolInformation information(project->displayName(), project->path());
projectList += addProjectNode(itemPrj, project);
itemPrj->setIcon(project->icon());
// append child if item is not null and there is at least 1 child
if (!item.isNull() && itemPrj->childCount() > 0)
item->appendChild(itemPrj, information);
}
return projectList;
}
QList<ProjectExplorer::Project *> Parser::getProjectList() const
{
QList<ProjectExplorer::Project *> list;
// check all projects
ProjectExplorer::SessionManager *sessionManager
= ProjectExplorer::ProjectExplorerPlugin::instance()->session();
QTC_ASSERT(sessionManager, return list);
list = sessionManager->projects();
return list;
}
} // namespace Internal
} // namespace ClassView
|