-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtreemodel.cc
609 lines (529 loc) · 15.1 KB
/
treemodel.cc
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
#include "treemodel.hpp"
#if defined(Q_OS_UNIX)
#include <execinfo.h>
#include <signal.h>
#include <stdio.h>
#endif
#define CHECK_INDEX(index)
//
// TreeItem
//
TreeItem::TreeItem() = default;
TreeItem::~TreeItem()
{
QTC_CHECK(m_parent == nullptr);
QTC_CHECK(m_model == nullptr);
removeChildren();
}
auto TreeItem::childAt(int pos) const -> TreeItem *
{
QTC_ASSERT(pos >= 0, return nullptr);
return pos < childCount() ? *(begin() + pos) : nullptr;
}
auto TreeItem::indexOf(const TreeItem *item) const -> int
{
auto it = std::find(begin(), end(), item);
return it == end() ? -1 : it - begin();
}
auto TreeItem::data(int column, int role) const -> QVariant
{
Q_UNUSED(column)
Q_UNUSED(role)
return {};
}
auto TreeItem::setData(int column, const QVariant &data, int role) -> bool
{
Q_UNUSED(column)
Q_UNUSED(data)
Q_UNUSED(role)
return false;
}
auto TreeItem::flags(int column) const -> Qt::ItemFlags
{
Q_UNUSED(column)
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
}
auto TreeItem::hasChildren() const -> bool
{
return canFetchMore() || childCount() > 0;
}
auto TreeItem::canFetchMore() const -> bool
{
return false;
}
void TreeItem::prependChild(TreeItem *item)
{
insertChild(0, item);
}
void TreeItem::appendChild(TreeItem *item)
{
insertChild(childCount(), item);
}
void TreeItem::insertChild(int pos, TreeItem *item)
{
QTC_CHECK(!item->model());
QTC_CHECK(!item->parent());
QTC_ASSERT(0 <= pos && pos <= childCount(), return ); // '<=' is intentional.
if (m_model) {
QModelIndex idx = index();
m_model->beginInsertRows(idx, pos, pos);
item->m_parent = this;
item->propagateModel(m_model);
m_children.insert(m_children.begin() + pos, item);
m_model->endInsertRows();
} else {
item->m_parent = this;
m_children.insert(m_children.begin() + pos, item);
}
}
void TreeItem::insertOrderedChild(TreeItem *item,
const std::function<bool(const TreeItem *, const TreeItem *)> &cmp)
{
auto where = std::lower_bound(begin(), end(), item, cmp);
insertChild(int(where - begin()), item);
}
void TreeItem::removeChildAt(int pos)
{
QTC_ASSERT(0 <= pos && pos < m_children.count(), return );
if (m_model) {
QModelIndex idx = index();
m_model->beginRemoveRows(idx, pos, pos);
removeItemAt(pos);
m_model->endRemoveRows();
} else {
removeItemAt(pos);
}
}
void TreeItem::removeChildren()
{
if (childCount() == 0)
return;
if (m_model) {
QModelIndex idx = index();
m_model->beginRemoveRows(idx, 0, childCount() - 1);
clear();
m_model->endRemoveRows();
} else {
clear();
}
}
void TreeItem::sortChildren(const std::function<bool(const TreeItem *, const TreeItem *)> &cmp)
{
if (m_model) {
if (const int n = childCount()) {
QVector<TreeItem *> tmp = m_children;
std::sort(tmp.begin(), tmp.end(), cmp);
if (tmp == m_children) {
// Nothing changed.
} else {
QModelIndex idx = index();
m_model->beginRemoveRows(idx, 0, n - 1);
m_children.clear();
m_model->endRemoveRows();
m_model->beginInsertRows(idx, 0, n - 1);
tmp.swap(m_children);
m_model->endInsertRows();
}
}
} else {
std::sort(m_children.begin(), m_children.end(), cmp);
}
}
void TreeItem::update()
{
if (m_model) {
QModelIndex idx = index();
emit m_model->dataChanged(idx.sibling(idx.row(), 0),
idx.sibling(idx.row(), m_model->m_columnCount - 1));
}
}
void TreeItem::updateAll()
{
if (m_model) {
QModelIndex idx = index();
emit m_model->dataChanged(idx, idx.sibling(idx.row(), m_model->m_columnCount - 1));
for (TreeItem *item : *this)
item->updateAll();
}
}
void TreeItem::updateColumn(int column)
{
if (m_model) {
QModelIndex idx = index();
emit m_model->dataChanged(idx.sibling(idx.row(), column), idx.sibling(idx.row(), column));
}
}
auto TreeItem::firstChild() const -> TreeItem *
{
return childCount() == 0 ? nullptr : *begin();
}
auto TreeItem::lastChild() const -> TreeItem *
{
return childCount() == 0 ? nullptr : *(end() - 1);
}
auto TreeItem::level() const -> int
{
int l = 0;
for (TreeItem *item = this->parent(); item; item = item->parent())
++l;
return l;
}
auto TreeItem::indexInParent() const -> int
{
return m_parent ? m_parent->indexOf(this) : -1;
}
auto TreeItem::index() const -> QModelIndex
{
QTC_ASSERT(m_model, return QModelIndex());
return m_model->indexForItem(this);
}
auto TreeItem::model() const -> QAbstractItemModel *
{
return m_model;
}
void TreeItem::forAllChildren(const std::function<void(TreeItem *)> &pred) const
{
for (TreeItem *item : *this) {
pred(item);
item->forAllChildren(pred);
}
}
void TreeItem::forSelectedChildren(const std::function<bool(TreeItem *)> &pred) const
{
for (TreeItem *item : *this) {
if (pred(item))
item->forSelectedChildren(pred);
}
}
void TreeItem::forChildrenAtLevel(int level, const std::function<void(TreeItem *)> &pred) const
{
QTC_ASSERT(level > 0, return );
if (level == 1) {
for (TreeItem *item : *this)
pred(item);
} else {
for (TreeItem *item : *this)
item->forChildrenAtLevel(level - 1, pred);
}
}
auto TreeItem::findChildAtLevel(int level, const std::function<bool(TreeItem *)> &pred) const -> TreeItem *
{
QTC_ASSERT(level > 0, return nullptr);
if (level == 1) {
for (TreeItem *item : *this)
if (pred(item))
return item;
} else {
for (TreeItem *item : *this) {
if (auto found = item->findChildAtLevel(level - 1, pred))
return found;
}
}
return nullptr;
}
auto TreeItem::findAnyChild(const std::function<bool(TreeItem *)> &pred) const -> TreeItem *
{
for (TreeItem *item : *this) {
if (pred(item))
return item;
if (TreeItem *found = item->findAnyChild(pred))
return found;
}
return nullptr;
}
auto TreeItem::reverseFindAnyChild(const std::function<bool(TreeItem *)> &pred) const -> TreeItem *
{
auto end = m_children.rend();
for (auto it = m_children.rbegin(); it != end; ++it) {
if (TreeItem *found = (*it)->reverseFindAnyChild(pred))
return found;
if (pred(*it))
return *it;
}
return nullptr;
}
void TreeItem::clear()
{
while (childCount() != 0) {
TreeItem *item = m_children.takeLast();
item->m_model = nullptr;
item->m_parent = nullptr;
delete item;
}
}
void TreeItem::removeItemAt(int pos)
{
TreeItem *item = m_children.at(pos);
item->m_model = nullptr;
item->m_parent = nullptr;
delete item;
m_children.removeAt(pos);
}
void TreeItem::expand()
{
QTC_ASSERT(m_model, return );
emit m_model->requestExpansion(index());
}
void TreeItem::collapse()
{
QTC_ASSERT(m_model, return );
emit m_model->requestCollapse(index());
}
void TreeItem::propagateModel(BaseTreeModel *m)
{
QTC_ASSERT(m, return );
QTC_ASSERT(m_model == nullptr || m_model == m, return );
if (m && !m_model) {
m_model = m;
for (TreeItem *item : *this)
item->propagateModel(m);
}
}
/*!
\class Utils::TreeModel
\brief The TreeModel class is a convienience base class for models
to use in a QTreeView.
*/
BaseTreeModel::BaseTreeModel(QObject *parent)
: QAbstractItemModel(parent)
, m_root(new TreeItem)
{
m_columnCount = 1;
m_root->m_model = this;
#if USE_MODEL_TEST
new ModelTest(this, this);
#endif
}
BaseTreeModel::BaseTreeModel(TreeItem *root, QObject *parent)
: QAbstractItemModel(parent)
, m_root(root)
{
m_columnCount = 1;
m_root->propagateModel(this);
}
BaseTreeModel::~BaseTreeModel()
{
QTC_ASSERT(m_root, return );
QTC_ASSERT(m_root->m_parent == nullptr, return );
QTC_ASSERT(m_root->m_model == this, return );
m_root->m_model = nullptr;
delete m_root;
}
auto BaseTreeModel::parent(const QModelIndex &idx) const -> QModelIndex
{
CHECK_INDEX(idx);
if (!idx.isValid())
return {};
const TreeItem *item = itemForIndex(idx);
QTC_ASSERT(item, return QModelIndex());
TreeItem *parent = item->parent();
if (!parent || parent == m_root)
return {};
const TreeItem *grandparent = parent->parent();
if (!grandparent)
return {};
// This is on the performance-critical path for ItemViewFind.
const int i = grandparent->m_children.indexOf(parent);
return createIndex(i, 0, static_cast<void *>(parent));
}
auto BaseTreeModel::sibling(int row, int column, const QModelIndex &idx) const -> QModelIndex
{
const TreeItem *item = itemForIndex(idx);
QTC_ASSERT(item, return QModelIndex());
QModelIndex result;
if (TreeItem *parent = item->parent()) {
if (TreeItem *sibl = parent->childAt(row))
result = createIndex(row, column, static_cast<void *>(sibl));
}
return result;
}
auto BaseTreeModel::rowCount(const QModelIndex &idx) const -> int
{
CHECK_INDEX(idx);
if (!idx.isValid())
return m_root->childCount();
if (idx.column() > 0)
return 0;
const TreeItem *item = itemForIndex(idx);
return item ? item->childCount() : 0;
}
auto BaseTreeModel::columnCount(const QModelIndex &idx) const -> int
{
CHECK_INDEX(idx);
if (idx.column() > 0)
return 0;
return m_columnCount;
}
auto BaseTreeModel::setData(const QModelIndex &idx, const QVariant &data, int role) -> bool
{
TreeItem *item = itemForIndex(idx);
bool res = item ? item->setData(idx.column(), data, role) : false;
if (res) {
emit dataChanged(idx, idx);
}
return res;
}
auto BaseTreeModel::data(const QModelIndex &idx, int role) const -> QVariant
{
TreeItem *item = itemForIndex(idx);
return item ? item->data(idx.column(), role) : QVariant();
}
auto BaseTreeModel::headerData(int section, Qt::Orientation orientation, int role) const -> QVariant
{
if (orientation == Qt::Horizontal && role == Qt::DisplayRole && section < m_header.size())
return m_header.at(section);
if (role == Qt::ToolTipRole && section < m_headerToolTip.size())
return m_headerToolTip.at(section);
return {};
}
auto BaseTreeModel::hasChildren(const QModelIndex &idx) const -> bool
{
if (idx.column() > 0)
return false;
TreeItem *item = itemForIndex(idx);
return !item || item->hasChildren();
}
auto BaseTreeModel::flags(const QModelIndex &idx) const -> Qt::ItemFlags
{
if (!idx.isValid())
return {};
TreeItem *item = itemForIndex(idx);
return item ? item->flags(idx.column()) : (Qt::ItemIsEnabled | Qt::ItemIsSelectable);
}
auto BaseTreeModel::canFetchMore(const QModelIndex &idx) const -> bool
{
if (!idx.isValid())
return false;
TreeItem *item = itemForIndex(idx);
return item ? item->canFetchMore() : false;
}
void BaseTreeModel::fetchMore(const QModelIndex &idx)
{
if (!idx.isValid())
return;
TreeItem *item = itemForIndex(idx);
if (item)
item->fetchMore();
}
auto BaseTreeModel::rootItem() const -> TreeItem *
{
return m_root;
}
void BaseTreeModel::setRootItem(TreeItem *item)
{
QTC_ASSERT(item, return );
QTC_ASSERT(item->m_model == nullptr, return );
QTC_ASSERT(item->m_parent == nullptr, return );
QTC_ASSERT(item != m_root, return );
QTC_CHECK(m_root);
beginResetModel();
if (m_root) {
QTC_CHECK(m_root->m_parent == nullptr);
QTC_CHECK(m_root->m_model == this);
// needs to be done explicitly before setting the model to 0, otherwise it might lead to a
// crash inside a view or proxy model, especially if there are selected items
m_root->removeChildren();
m_root->m_model = nullptr;
delete m_root;
}
m_root = item;
item->propagateModel(this);
endResetModel();
}
void BaseTreeModel::setHeader(const QStringList &displays)
{
m_header = displays;
m_columnCount = displays.size();
}
void BaseTreeModel::setHeaderToolTip(const QStringList &tips)
{
m_headerToolTip = tips;
}
auto BaseTreeModel::index(int row, int column, const QModelIndex &parent) const -> QModelIndex
{
CHECK_INDEX(parent);
if (!hasIndex(row, column, parent))
return {};
TreeItem *item = itemForIndex(parent);
QTC_ASSERT(item, return QModelIndex());
if (row >= item->childCount())
return {};
return createIndex(row, column, static_cast<void *>(item->childAt(row)));
}
auto BaseTreeModel::itemForIndex(const QModelIndex &idx) const -> TreeItem *
{
CHECK_INDEX(idx);
TreeItem *item = idx.isValid() ? static_cast<TreeItem *>(idx.internalPointer()) : m_root;
QTC_ASSERT(item, return nullptr);
QTC_ASSERT(item->m_model == static_cast<const BaseTreeModel *>(this), return nullptr);
return item;
}
auto BaseTreeModel::indexForItem(const TreeItem *item) const -> QModelIndex
{
QTC_ASSERT(item, return QModelIndex());
if (item == m_root)
return {};
TreeItem *p = item->parent();
QTC_ASSERT(p, return QModelIndex());
auto mitem = const_cast<TreeItem *>(item);
int row = p->indexOf(mitem);
return createIndex(row, 0, mitem);
}
/*!
Destroys all items in them model except the invisible root item.
*/
void BaseTreeModel::clear()
{
if (m_root)
m_root->removeChildren();
}
/*!
Removes the specified item from the model.
\note The item is not destroyed, ownership is effectively passed to the caller.
*/
auto BaseTreeModel::takeItem(TreeItem *item) -> TreeItem *
{
#if USE_MODEL_TEST
(void) new ModelTest(this, this);
#endif
QTC_ASSERT(item, return item);
TreeItem *parent = item->parent();
QTC_ASSERT(parent, return item);
int pos = parent->indexOf(item);
QTC_ASSERT(pos != -1, return item);
QModelIndex idx = indexForItem(parent);
beginRemoveRows(idx, pos, pos);
item->m_parent = nullptr;
item->m_model = nullptr;
parent->m_children.removeAt(pos);
endRemoveRows();
return item;
}
void BaseTreeModel::destroyItem(TreeItem *item)
{
delete takeItem(item);
}
void Utils::writeAssertLocation(const char *msg)
{
static bool goBoom = qEnvironmentVariableIsSet("QTC_FATAL_ASSERTS");
if (goBoom)
qFatal("SOFT ASSERT made fatal: %s", msg);
else
qDebug("SOFT ASSERT: %s", msg);
static int maxdepth = qEnvironmentVariableIntValue("QTC_BACKTRACE_MAXDEPTH");
if (maxdepth != 0)
dumpBacktrace(maxdepth);
}
void Utils::dumpBacktrace(int maxdepth)
{
if (maxdepth == -1)
maxdepth = 1000;
#if defined(Q_OS_UNIX)
void *bt[1000] = {nullptr};
int size = backtrace(bt, sizeof(bt) / sizeof(bt[0]));
char **lines = backtrace_symbols(bt, size);
for (int i = 0; i < size; ++i)
qDebug() << "0x" + QByteArray::number(quintptr(bt[i]), 16) << lines[i];
free(lines);
#endif
}