-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommitmodel.cpp
92 lines (76 loc) · 2.07 KB
/
commitmodel.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
#include "commit.h"
#include "commitdao.h"
#include "commitmodel.h"
CommitModel::CommitModel(QObject *parent)
: QAbstractListModel(parent)
{
}
void CommitModel::reset(CommitDao *commitDao)
{
beginResetModel();
m_commits.clear();
for (const QString &hash : commitDao->getCommitHashList())
m_commits.append(new Commit(commitDao, hash, this));
endResetModel();
}
int CommitModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return m_commits.size();
}
QVariant CommitModel::data(const QModelIndex &index, int role) const
{
if (!isIndexValid(index))
return QVariant();
Commit *commit = m_commits[index.row()];
switch (role) {
case Roles::HashRole:
return commit->hash();
case Roles::SummaryRole:
case Qt::DisplayRole:
return commit->summary();
case Roles::AuthorNameRole:
return commit->authorName();
case Roles::AuthorEmailRole:
return commit->authorEmail();
case Roles::TimeRole:
return commit->time();
default:
return QVariant();
}
}
QHash<int, QByteArray> CommitModel::roleNames() const
{
QHash<int, QByteArray> roles;
roles[Roles::HashRole] = "hash";
roles[Roles::SummaryRole] = "summary";
roles[Roles::AuthorNameRole] = "authorName";
roles[Roles::AuthorEmailRole] = "authorEmail";
roles[Roles::TimeRole] = "time";
return roles;
}
bool CommitModel::isIndexValid(const QModelIndex &index) const
{
return index.row() >= 0 && index.row() < rowCount();
}
Commit *CommitModel::getCommit(const QString &hash) const
{
for (Commit *commit : m_commits) {
if (commit->hash() == hash)
return commit;
}
return nullptr;
}
QVariantMap CommitModel::get(const int row) const
{
if (row < 0 || row >= rowCount())
return QVariantMap();
QVariantMap result;
QModelIndex modelIndex = index(row, 0);
QHash<int, QByteArray> names = roleNames();
for (int key : names.keys()) {
QVariant d = data(modelIndex, key);
result[names[key]] = d;
}
return result;
}