-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathuploadprojectmodel.cpp
259 lines (231 loc) · 8.58 KB
/
uploadprojectmodel.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
/***************************************************************************
* Copyright 2007 Niko Sams <[email protected]> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "uploadprojectmodel.h"
#include <kconfiggroup.h>
#include <kfileitem.h>
#include <QDir>
#include "kdevuploaddebug.h"
#include <interfaces/iproject.h>
#include <util/path.h>
#include <project/projectmodel.h>
UploadProjectModel::UploadProjectModel(KDevelop::IProject* project, QObject *parent)
: QSortFilterProxyModel(parent), m_project(project), m_rootItem(nullptr)
{
}
UploadProjectModel::~UploadProjectModel()
{
}
bool UploadProjectModel::filterAcceptsRow(int sourceRow, const QModelIndex & sourceParent) const
{
QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent);
KDevelop::ProjectBaseItem* item = projectModel()->itemFromIndex(index);
if (!item) return false;
if (item->project() != m_project) return false;
if (!m_rootItem) return true;
//is source a child of rootItem?
QModelIndex i = index;
while(i.isValid()) {
if (m_rootItem->index() == i) return true;
i = i.parent();
}
//is source a parent of rootItem?
i = m_rootItem->index();
while (i.isValid()) {
if (index == i) return true;
i = i.parent();
}
return false;
}
Qt::ItemFlags UploadProjectModel::flags(const QModelIndex & index) const
{
Qt::ItemFlags ret = QSortFilterProxyModel::flags(index);
ret |= Qt::ItemIsUserCheckable;
ret &= ~Qt::ItemIsEditable;
return ret;
}
QVariant UploadProjectModel::data(const QModelIndex & indx, int role) const
{
if (indx.isValid() && role == Qt::CheckStateRole) {
KDevelop::ProjectBaseItem* i = item(indx);
if (i->file() && m_profileConfigGroup.isValid()) {
if (m_checkStates.contains(indx)) {
return m_checkStates.value(indx);
} else {
qCDebug(KDEVUPLOAD) << "project folder" << m_project->path().path() << "file" << i << i->file();
qCDebug(KDEVUPLOAD) << "file url" << i->file()->path().path();
QString url = m_project->path().relativePath(i->file()->path());
qCDebug(KDEVUPLOAD) << "resulting url" << url;
QDateTime uploadTime(m_profileConfigGroup.readEntry(url, QDateTime()));
if (uploadTime.isValid()) {
KFileItem fileItem(i->file()->path().toUrl());
QDateTime modTime = fileItem.time(KFileItem::ModificationTime);
if (modTime > uploadTime) {
return Qt::Checked;
} else {
return Qt::Unchecked;
}
} else {
return Qt::Checked;
}
}
} else if (i->folder() && m_profileConfigGroup.isValid()) {
if (!rowCount(indx)) {
//empty folder - should be uploaded too
if (m_checkStates.contains(indx)) {
return m_checkStates.value(indx);
} else {
//don't check for ModificationTime as we do for files
QString url = m_project->path().relativePath(i->folder()->path());
QDateTime uploadTime(m_profileConfigGroup.readEntry(url, QDateTime()));
if (uploadTime.isValid()) {
return Qt::Unchecked;
} else {
return Qt::Checked;
}
}
}
bool allChecked = true;
bool noneChecked = true;
for (int j = 0; j < rowCount(indx); j++) {
Qt::CheckState s = static_cast<Qt::CheckState>(data(index(j, 0, indx), role).toInt());
if (s == Qt::Checked) {
noneChecked = false;
} else if (s == Qt::Unchecked) {
allChecked = false;
} else {
return Qt::PartiallyChecked;
}
}
if (allChecked) {
return Qt::Checked;
} else if (noneChecked) {
return Qt::Unchecked;
}
return Qt::PartiallyChecked;
} else {
return QVariant();
}
}
return QSortFilterProxyModel::data(indx, role);
}
bool UploadProjectModel::setData ( const QModelIndex & indx, const QVariant & value, int role)
{
if (indx.isValid() && role == Qt::CheckStateRole) {
KDevelop::ProjectBaseItem* i = item(indx);
if (i->file()) {
Qt::CheckState s = static_cast<Qt::CheckState>(value.toInt());
m_checkStates.insert(indx, s);
emit dataChanged(indx, indx);
return true;
} else if (i->folder()) {
if (!rowCount(indx)) {
//empty folder - should be uploaded too
Qt::CheckState s = static_cast<Qt::CheckState>(value.toInt());
m_checkStates.insert(indx, s);
emit dataChanged(indx, indx);
} else {
//recursive check/uncheck
QModelIndex i = indx;
while((i = nextRecursionIndex(i, indx)).isValid()) {
setData(i, value, role);
}
}
emit dataChanged(indx, indx);
return true;
}
}
return QSortFilterProxyModel::setData(indx, value, role);
}
void UploadProjectModel::setProfileConfigGroup(const KConfigGroup& group)
{
beginResetModel();
m_profileConfigGroup = group;
m_checkStates.clear();
endResetModel();
}
KConfigGroup UploadProjectModel::profileConfigGroup() const
{
return m_profileConfigGroup;
}
KDevelop::ProjectModel* UploadProjectModel::projectModel() const
{
return qobject_cast<KDevelop::ProjectModel*>(sourceModel());
}
KDevelop::ProjectBaseItem* UploadProjectModel::item(const QModelIndex& index) const
{
return projectModel()->itemFromIndex(mapToSource(index));
}
QModelIndex UploadProjectModel::nextRecursionIndex(const QModelIndex& current, const QModelIndex& root) const
{
QModelIndex ret;
if (rowCount(current) > 0) {
//firstChild
return index(0, 0, current);
} else if (current != root && current.isValid() &&
current.row()+1 < rowCount(current.parent())) {
//nextSibling
return index(current.row()+1, 0, current.parent());
}
QModelIndex i = current;
while (i.parent() != root && i.isValid() && i.parent().isValid()) {
if (i.parent().row()+1 < rowCount(i.parent().parent())) {
//parent+.nextSibling
return index(i.parent().row()+1, 0, i.parent().parent());
}
i = i.parent();
}
//finished
return QModelIndex();
}
void UploadProjectModel::setRootItem(KDevelop::ProjectBaseItem* item)
{
beginResetModel();
m_rootItem = item;
endResetModel();
}
QString UploadProjectModel::currentProfileName()
{
return m_profileConfigGroup.readEntry("name", QString());
}
QUrl UploadProjectModel::currentProfileUrl()
{
return m_profileConfigGroup.readEntry("url", QUrl());
}
QUrl UploadProjectModel::currentProfileLocalUrl()
{
return m_profileConfigGroup.readEntry("localUrl", QUrl());
}
void UploadProjectModel::checkAll()
{
setData(index(0, 0), Qt::Checked, Qt::CheckStateRole);
}
void UploadProjectModel::checkModified()
{
QMapIterator<QModelIndex, Qt::CheckState> i(m_checkStates);
m_checkStates.clear();
while (i.hasNext()) {
i.next();
emit dataChanged(i.key(), i.key());
}
}
void UploadProjectModel::checkInvert()
{
QModelIndex index;
while((index = nextRecursionIndex(index)).isValid()) {
KDevelop::ProjectBaseItem* i = item(index);
if (!(i->folder() && rowCount(index) > 0)) {
//invert files and empty folders
Qt::CheckState v = static_cast<Qt::CheckState>(data(index, Qt::CheckStateRole).toInt());
if (v == Qt::Unchecked) v = Qt::Checked; else v = Qt::Unchecked;
setData(index, v, Qt::CheckStateRole);
}
}
}
// kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on